├── .gitignore ├── INSTALL.md ├── LICENSE ├── README.md ├── _config.yml ├── examples ├── ais3_crackme ├── ais3_crackme.i64 ├── callme32 ├── callme32.idb ├── callme32_crash.py ├── ex0.c ├── ex0.exe ├── ex0.idb ├── ex0.py ├── ex1 ├── ex1.c ├── ex1.i64 ├── ex1_dda.py ├── ex1_pie ├── ex1_pie.i64 ├── ex2 ├── ex2.c └── ex2.i64 ├── idangr ├── __init__.py ├── graph.py ├── gui.py ├── hook_lib_funcs.py ├── ida_debugger.py ├── init_gui.py ├── main_gui.py ├── manage.py ├── saveds │ ├── constraints │ │ ├── Decrescent.py │ │ ├── Empty.py │ │ ├── Integer Range.py │ │ └── Printable.py │ ├── findavoid │ │ ├── Empty.py │ │ └── Symbolic PC.py │ └── simprocs │ │ └── Empty.py ├── ui │ ├── Makefile │ ├── __init__.py │ ├── addmem.py │ ├── addmem.ui │ ├── connect.py │ ├── connect.ui │ ├── constraints.py │ ├── constraints.ui │ ├── designer.sh │ ├── editor.ui │ ├── execute.py │ ├── execute.ui │ ├── panel.py │ ├── panel.ui │ ├── saveds.py │ ├── saveds.ui │ ├── syntax.py │ ├── viewer.py │ └── viewer.ui └── win_vmmap.py ├── idangr_core.py ├── idangr_gui.py ├── idangr_plugin.py ├── images ├── ex1.gif └── youtube.png └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/.gitignore -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/_config.yml -------------------------------------------------------------------------------- /examples/ais3_crackme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/examples/ais3_crackme -------------------------------------------------------------------------------- /examples/ais3_crackme.i64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/examples/ais3_crackme.i64 -------------------------------------------------------------------------------- /examples/callme32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/examples/callme32 -------------------------------------------------------------------------------- /examples/callme32.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/examples/callme32.idb -------------------------------------------------------------------------------- /examples/callme32_crash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/examples/callme32_crash.py -------------------------------------------------------------------------------- /examples/ex0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/examples/ex0.c -------------------------------------------------------------------------------- /examples/ex0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/examples/ex0.exe -------------------------------------------------------------------------------- /examples/ex0.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/examples/ex0.idb -------------------------------------------------------------------------------- /examples/ex0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/examples/ex0.py -------------------------------------------------------------------------------- /examples/ex1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/examples/ex1 -------------------------------------------------------------------------------- /examples/ex1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/examples/ex1.c -------------------------------------------------------------------------------- /examples/ex1.i64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/examples/ex1.i64 -------------------------------------------------------------------------------- /examples/ex1_dda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/examples/ex1_dda.py -------------------------------------------------------------------------------- /examples/ex1_pie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/examples/ex1_pie -------------------------------------------------------------------------------- /examples/ex1_pie.i64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/examples/ex1_pie.i64 -------------------------------------------------------------------------------- /examples/ex2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/examples/ex2 -------------------------------------------------------------------------------- /examples/ex2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/examples/ex2.c -------------------------------------------------------------------------------- /examples/ex2.i64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/examples/ex2.i64 -------------------------------------------------------------------------------- /idangr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/idangr/__init__.py -------------------------------------------------------------------------------- /idangr/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/idangr/graph.py -------------------------------------------------------------------------------- /idangr/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/idangr/gui.py -------------------------------------------------------------------------------- /idangr/hook_lib_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/idangr/hook_lib_funcs.py -------------------------------------------------------------------------------- /idangr/ida_debugger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/idangr/ida_debugger.py -------------------------------------------------------------------------------- /idangr/init_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/idangr/init_gui.py -------------------------------------------------------------------------------- /idangr/main_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/idangr/main_gui.py -------------------------------------------------------------------------------- /idangr/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/idangr/manage.py -------------------------------------------------------------------------------- /idangr/saveds/constraints/Decrescent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/idangr/saveds/constraints/Decrescent.py -------------------------------------------------------------------------------- /idangr/saveds/constraints/Empty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/idangr/saveds/constraints/Empty.py -------------------------------------------------------------------------------- /idangr/saveds/constraints/Integer Range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/idangr/saveds/constraints/Integer Range.py -------------------------------------------------------------------------------- /idangr/saveds/constraints/Printable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/idangr/saveds/constraints/Printable.py -------------------------------------------------------------------------------- /idangr/saveds/findavoid/Empty.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /idangr/saveds/findavoid/Symbolic PC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/idangr/saveds/findavoid/Symbolic PC.py -------------------------------------------------------------------------------- /idangr/saveds/simprocs/Empty.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /idangr/ui/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/idangr/ui/Makefile -------------------------------------------------------------------------------- /idangr/ui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/idangr/ui/__init__.py -------------------------------------------------------------------------------- /idangr/ui/addmem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/idangr/ui/addmem.py -------------------------------------------------------------------------------- /idangr/ui/addmem.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/idangr/ui/addmem.ui -------------------------------------------------------------------------------- /idangr/ui/connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/idangr/ui/connect.py -------------------------------------------------------------------------------- /idangr/ui/connect.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/idangr/ui/connect.ui -------------------------------------------------------------------------------- /idangr/ui/constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/idangr/ui/constraints.py -------------------------------------------------------------------------------- /idangr/ui/constraints.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/idangr/ui/constraints.ui -------------------------------------------------------------------------------- /idangr/ui/designer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/idangr/ui/designer.sh -------------------------------------------------------------------------------- /idangr/ui/editor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/idangr/ui/editor.ui -------------------------------------------------------------------------------- /idangr/ui/execute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/idangr/ui/execute.py -------------------------------------------------------------------------------- /idangr/ui/execute.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/idangr/ui/execute.ui -------------------------------------------------------------------------------- /idangr/ui/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/idangr/ui/panel.py -------------------------------------------------------------------------------- /idangr/ui/panel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/idangr/ui/panel.ui -------------------------------------------------------------------------------- /idangr/ui/saveds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/idangr/ui/saveds.py -------------------------------------------------------------------------------- /idangr/ui/saveds.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/idangr/ui/saveds.ui -------------------------------------------------------------------------------- /idangr/ui/syntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/idangr/ui/syntax.py -------------------------------------------------------------------------------- /idangr/ui/viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/idangr/ui/viewer.py -------------------------------------------------------------------------------- /idangr/ui/viewer.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/idangr/ui/viewer.ui -------------------------------------------------------------------------------- /idangr/win_vmmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/idangr/win_vmmap.py -------------------------------------------------------------------------------- /idangr_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/idangr_core.py -------------------------------------------------------------------------------- /idangr_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/idangr_gui.py -------------------------------------------------------------------------------- /idangr_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/idangr_plugin.py -------------------------------------------------------------------------------- /images/ex1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/images/ex1.gif -------------------------------------------------------------------------------- /images/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/IDAngr/HEAD/images/youtube.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | appdirs 2 | rpyc 3 | --------------------------------------------------------------------------------