Reputation: 18645
Is there a way to view the difference between two binary DLL files? I have PDBs for both.
Ideally I'd like to see:
Note: this is different from this question as I am dealing with native DLLs.
Upvotes: 2
Views: 5565
Reputation: 38941
A "low tech" approach (no disassembly) would be to use DUMPBIN /ALL
(or another switch, depending on what exactly you want to know) on the DLLs and do a text compare on the result.
Upvotes: 1
Reputation: 902
If you want to compare executable files, you have a couple of alternatives:
http://www.zynamics.com/bindiff.html
http://cgi.tenablesecurity.com/tenable/patchdiff.php
Upvotes: 4