``` SELECT * FROM authenticode WHERE path = ( SE...
# sql
a
Copy code
SELECT *
FROM authenticode
WHERE path = (
  SELECT substr(path, 0, 21)
  FROM processes
  WHERE path LIKE "%winlogon%"
) || "procexp.exe";
m
thanks for your supports @terracatta @alessandrogario this gives ..Windows\System32 instead of ..Windows
a
You can adjust the substr parameters (21) to cut away the System32 portion
m
it works thank you very much.