├── .gitignore ├── LICENCE ├── README.md ├── nao ├── __init__.py ├── eliminate.py └── nao.py ├── sample_bin ├── deadcode_sample2_pe32.c ├── deadcode_sample2_pe32.exe ├── deadcode_sample_elf32 └── deadcode_sample_elf32.c ├── screenshots ├── after.png ├── before.png └── plugins_menu.png └── tests ├── README.md ├── __init__.py ├── instructions.py └── test_eliminate.py /.gitignore: -------------------------------------------------------------------------------- 1 | .gdb_history 2 | *.idb 3 | *.pyc 4 | -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkmru/nao/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkmru/nao/HEAD/README.md -------------------------------------------------------------------------------- /nao/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nao/eliminate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkmru/nao/HEAD/nao/eliminate.py -------------------------------------------------------------------------------- /nao/nao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkmru/nao/HEAD/nao/nao.py -------------------------------------------------------------------------------- /sample_bin/deadcode_sample2_pe32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkmru/nao/HEAD/sample_bin/deadcode_sample2_pe32.c -------------------------------------------------------------------------------- /sample_bin/deadcode_sample2_pe32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkmru/nao/HEAD/sample_bin/deadcode_sample2_pe32.exe -------------------------------------------------------------------------------- /sample_bin/deadcode_sample_elf32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkmru/nao/HEAD/sample_bin/deadcode_sample_elf32 -------------------------------------------------------------------------------- /sample_bin/deadcode_sample_elf32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkmru/nao/HEAD/sample_bin/deadcode_sample_elf32.c -------------------------------------------------------------------------------- /screenshots/after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkmru/nao/HEAD/screenshots/after.png -------------------------------------------------------------------------------- /screenshots/before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkmru/nao/HEAD/screenshots/before.png -------------------------------------------------------------------------------- /screenshots/plugins_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkmru/nao/HEAD/screenshots/plugins_menu.png -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkmru/nao/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/instructions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkmru/nao/HEAD/tests/instructions.py -------------------------------------------------------------------------------- /tests/test_eliminate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkmru/nao/HEAD/tests/test_eliminate.py --------------------------------------------------------------------------------