Hacker News new | ask | show | jobs
by kachapopopow 258 days ago
For anyone that doesn't want to maintain a fork of chromium, just download the PDB and hook it at runtime for spoofing and/or dumping call logs. For hook itself just add your dll as a dependency in the PE structure.
1 comments

That sounds like a Windows-only approach though.
pdb's exist for all builds of google chrome.
Interesting! No PE structures though, I suppose.
PE is only used for loading the dll, same works on linux.
I thought Linux uses ELF to load dlls.
ELF and PE are functionally the same, instead of DLL's you load SharedObject as your injeciton method, but you don't need that at all since you can inject libraries in linux since it's a built-in feature.