├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── ida_fuzzy.py └── screenshots ├── idafuzzy.gif ├── idafuzzy.png ├── jumpf.gif └── structdef.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ga-ryo/IDAFuzzy/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## -> 1.0.0 4 | 5 | Initial release 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ga-ryo/IDAFuzzy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ga-ryo/IDAFuzzy/HEAD/README.md -------------------------------------------------------------------------------- /ida_fuzzy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ga-ryo/IDAFuzzy/HEAD/ida_fuzzy.py -------------------------------------------------------------------------------- /screenshots/idafuzzy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ga-ryo/IDAFuzzy/HEAD/screenshots/idafuzzy.gif -------------------------------------------------------------------------------- /screenshots/idafuzzy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ga-ryo/IDAFuzzy/HEAD/screenshots/idafuzzy.png -------------------------------------------------------------------------------- /screenshots/jumpf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ga-ryo/IDAFuzzy/HEAD/screenshots/jumpf.gif -------------------------------------------------------------------------------- /screenshots/structdef.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ga-ryo/IDAFuzzy/HEAD/screenshots/structdef.gif --------------------------------------------------------------------------------