├── .gitignore ├── README.md ├── __init__.py ├── api_funcs.py ├── arrow.png ├── chunk_template.html ├── ea_UI.py ├── ea_cmd.py ├── ea_emu_client.py ├── ea_emu_server.py ├── ea_heap.py ├── ea_main.py ├── ea_read_t.py ├── ea_skin.py ├── ea_trace.py ├── ea_utils.py ├── ea_view.py ├── get_offsets.py ├── screens ├── cmd.png ├── cmd2.png ├── emu.png ├── heap.png ├── screen.png ├── screen3.png ├── trace.png ├── trace10.png ├── trace2.png ├── trace4.png ├── trace5.png ├── trace6.png ├── trace7.png ├── trace8.png ├── trace9.png ├── view.png └── view2.png ├── style_template.css └── ui ├── CMD.ui ├── __init__.py ├── ea_view.ui ├── elf.ui ├── emulate.ui ├── heap.ui ├── mk.py ├── offset.ui ├── restyle.ui ├── selectName.ui ├── trace.ui ├── traceDump.ui └── warning.ui /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.pyc 3 | *.ui_out 4 | config.json 5 | .idea -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/api_funcs.py -------------------------------------------------------------------------------- /arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/arrow.png -------------------------------------------------------------------------------- /chunk_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/chunk_template.html -------------------------------------------------------------------------------- /ea_UI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/ea_UI.py -------------------------------------------------------------------------------- /ea_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/ea_cmd.py -------------------------------------------------------------------------------- /ea_emu_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/ea_emu_client.py -------------------------------------------------------------------------------- /ea_emu_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/ea_emu_server.py -------------------------------------------------------------------------------- /ea_heap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/ea_heap.py -------------------------------------------------------------------------------- /ea_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/ea_main.py -------------------------------------------------------------------------------- /ea_read_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/ea_read_t.py -------------------------------------------------------------------------------- /ea_skin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/ea_skin.py -------------------------------------------------------------------------------- /ea_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/ea_trace.py -------------------------------------------------------------------------------- /ea_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/ea_utils.py -------------------------------------------------------------------------------- /ea_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/ea_view.py -------------------------------------------------------------------------------- /get_offsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/get_offsets.py -------------------------------------------------------------------------------- /screens/cmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/screens/cmd.png -------------------------------------------------------------------------------- /screens/cmd2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/screens/cmd2.png -------------------------------------------------------------------------------- /screens/emu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/screens/emu.png -------------------------------------------------------------------------------- /screens/heap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/screens/heap.png -------------------------------------------------------------------------------- /screens/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/screens/screen.png -------------------------------------------------------------------------------- /screens/screen3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/screens/screen3.png -------------------------------------------------------------------------------- /screens/trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/screens/trace.png -------------------------------------------------------------------------------- /screens/trace10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/screens/trace10.png -------------------------------------------------------------------------------- /screens/trace2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/screens/trace2.png -------------------------------------------------------------------------------- /screens/trace4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/screens/trace4.png -------------------------------------------------------------------------------- /screens/trace5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/screens/trace5.png -------------------------------------------------------------------------------- /screens/trace6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/screens/trace6.png -------------------------------------------------------------------------------- /screens/trace7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/screens/trace7.png -------------------------------------------------------------------------------- /screens/trace8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/screens/trace8.png -------------------------------------------------------------------------------- /screens/trace9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/screens/trace9.png -------------------------------------------------------------------------------- /screens/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/screens/view.png -------------------------------------------------------------------------------- /screens/view2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/screens/view2.png -------------------------------------------------------------------------------- /style_template.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/style_template.css -------------------------------------------------------------------------------- /ui/CMD.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/ui/CMD.ui -------------------------------------------------------------------------------- /ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/ea_view.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/ui/ea_view.ui -------------------------------------------------------------------------------- /ui/elf.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/ui/elf.ui -------------------------------------------------------------------------------- /ui/emulate.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/ui/emulate.ui -------------------------------------------------------------------------------- /ui/heap.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/ui/heap.ui -------------------------------------------------------------------------------- /ui/mk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/ui/mk.py -------------------------------------------------------------------------------- /ui/offset.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/ui/offset.ui -------------------------------------------------------------------------------- /ui/restyle.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/ui/restyle.ui -------------------------------------------------------------------------------- /ui/selectName.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/ui/selectName.ui -------------------------------------------------------------------------------- /ui/trace.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/ui/trace.ui -------------------------------------------------------------------------------- /ui/traceDump.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/ui/traceDump.ui -------------------------------------------------------------------------------- /ui/warning.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1111joe1111/ida_ea/HEAD/ui/warning.ui --------------------------------------------------------------------------------