Mixaill / FakePDB

Tool for PDB generation from IDA Pro database
Apache License 2.0
550 stars 61 forks source link

Fix PDB generation for DLLs (#12) #14

Closed p0358 closed 3 years ago

p0358 commented 3 years ago

Fixes issue #12. The behavioral difference is that the JSON filename only has the base part of the database name, without adding ".exe" or ".dll" for simplicity. That's also on par with pdb naming scheme. Hopefully that's not a big issue, but could probably be fixed by a few more lines of code if needed. This should fix the case in which the original file was in a different dir than the IDA database.

Mixaill commented 3 years ago

Thanks!