https://github.com/farzonl/binanalysistools
https://github.com/farzonl/binanalysistools
Last synced: 28 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/farzonl/binanalysistools
- Owner: farzonl
- Created: 2020-12-11T04:31:03.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-12-11T04:43:53.000Z (over 5 years ago)
- Last Synced: 2025-10-11T04:17:43.608Z (10 months ago)
- Language: Python
- Size: 1000 Bytes
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Binary Analysis Tools
# Tools
- dff
- why is it called dff?: b\c I have a `diff` alias in my `.bashrc`.
- how to use? `python dff.py bin1 bin2`
- why does this exist?
Mach-O binaries are fat binaries and need seperate diffing of sections and symbols. So an objdump section size diff will be different fron a strings diff. Elf doesn't have this problem b\c `.rodata` shows up in sections and doesn't have a seperate partition for symbols\strings.
- More Tools to be added.