├── .gitignore ├── README.md ├── arch_acnr_vm ├── README.md ├── __init__.py ├── acnr.py ├── acnr_view.py └── example │ ├── acnr-disassembly.png │ └── auth ├── arch_ooows_broadcooom ├── README.md ├── __init__.py ├── broadcooom.py ├── broadcooom_view.py └── example │ ├── broadcooom-disassembly.png │ └── net-firmware ├── arch_sstic21_fw ├── README.md ├── __init__.py ├── example │ ├── sstic21-disassembly1.png │ ├── sstic21-disassembly2.png │ ├── sstic21-disassembly3.png │ ├── vm_code.dat │ └── vm_code_stage2.dat ├── sstic.py └── sstic_view.py ├── script_flagyard_tables ├── README.md ├── example │ ├── tables │ └── tables-results.png └── flagyard_tables.py ├── script_flareon8_evil ├── README.md ├── example │ ├── flareon8-evil-disassembly1.png │ └── flareon8-evil-disassembly2.png └── flareon8-evil.py ├── script_gorillabot_config ├── README.md └── gorillabot_config.py ├── script_gorillabot_config_v2 ├── README.md ├── gorillabot_config_v2.py └── requirements.txt ├── script_pbctf_bintree ├── README.md ├── example │ ├── bintree-results.png │ └── main.elf └── pbctf_bintree.py ├── script_ssm24_eclipse ├── README.md ├── example │ ├── ssm24_eclipse_decrypted1.png │ ├── ssm24_eclipse_encrypted1.png │ ├── ssm24_eclipse_encrypted2.png │ ├── ssm24_eclipse_open.png │ ├── ssm24_tags1.png │ └── ssm24_tags2.png ├── requirements.txt └── ssm24_eclipse.py └── script_stack_string_helper ├── README.md └── stack_string_helper.py /.gitignore: -------------------------------------------------------------------------------- 1 | .mypy_cache 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/README.md -------------------------------------------------------------------------------- /arch_acnr_vm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/arch_acnr_vm/README.md -------------------------------------------------------------------------------- /arch_acnr_vm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/arch_acnr_vm/__init__.py -------------------------------------------------------------------------------- /arch_acnr_vm/acnr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/arch_acnr_vm/acnr.py -------------------------------------------------------------------------------- /arch_acnr_vm/acnr_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/arch_acnr_vm/acnr_view.py -------------------------------------------------------------------------------- /arch_acnr_vm/example/acnr-disassembly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/arch_acnr_vm/example/acnr-disassembly.png -------------------------------------------------------------------------------- /arch_acnr_vm/example/auth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/arch_acnr_vm/example/auth -------------------------------------------------------------------------------- /arch_ooows_broadcooom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/arch_ooows_broadcooom/README.md -------------------------------------------------------------------------------- /arch_ooows_broadcooom/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/arch_ooows_broadcooom/__init__.py -------------------------------------------------------------------------------- /arch_ooows_broadcooom/broadcooom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/arch_ooows_broadcooom/broadcooom.py -------------------------------------------------------------------------------- /arch_ooows_broadcooom/broadcooom_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/arch_ooows_broadcooom/broadcooom_view.py -------------------------------------------------------------------------------- /arch_ooows_broadcooom/example/broadcooom-disassembly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/arch_ooows_broadcooom/example/broadcooom-disassembly.png -------------------------------------------------------------------------------- /arch_ooows_broadcooom/example/net-firmware: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/arch_ooows_broadcooom/example/net-firmware -------------------------------------------------------------------------------- /arch_sstic21_fw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/arch_sstic21_fw/README.md -------------------------------------------------------------------------------- /arch_sstic21_fw/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/arch_sstic21_fw/__init__.py -------------------------------------------------------------------------------- /arch_sstic21_fw/example/sstic21-disassembly1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/arch_sstic21_fw/example/sstic21-disassembly1.png -------------------------------------------------------------------------------- /arch_sstic21_fw/example/sstic21-disassembly2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/arch_sstic21_fw/example/sstic21-disassembly2.png -------------------------------------------------------------------------------- /arch_sstic21_fw/example/sstic21-disassembly3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/arch_sstic21_fw/example/sstic21-disassembly3.png -------------------------------------------------------------------------------- /arch_sstic21_fw/example/vm_code.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/arch_sstic21_fw/example/vm_code.dat -------------------------------------------------------------------------------- /arch_sstic21_fw/example/vm_code_stage2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/arch_sstic21_fw/example/vm_code_stage2.dat -------------------------------------------------------------------------------- /arch_sstic21_fw/sstic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/arch_sstic21_fw/sstic.py -------------------------------------------------------------------------------- /arch_sstic21_fw/sstic_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/arch_sstic21_fw/sstic_view.py -------------------------------------------------------------------------------- /script_flagyard_tables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/script_flagyard_tables/README.md -------------------------------------------------------------------------------- /script_flagyard_tables/example/tables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/script_flagyard_tables/example/tables -------------------------------------------------------------------------------- /script_flagyard_tables/example/tables-results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/script_flagyard_tables/example/tables-results.png -------------------------------------------------------------------------------- /script_flagyard_tables/flagyard_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/script_flagyard_tables/flagyard_tables.py -------------------------------------------------------------------------------- /script_flareon8_evil/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/script_flareon8_evil/README.md -------------------------------------------------------------------------------- /script_flareon8_evil/example/flareon8-evil-disassembly1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/script_flareon8_evil/example/flareon8-evil-disassembly1.png -------------------------------------------------------------------------------- /script_flareon8_evil/example/flareon8-evil-disassembly2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/script_flareon8_evil/example/flareon8-evil-disassembly2.png -------------------------------------------------------------------------------- /script_flareon8_evil/flareon8-evil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/script_flareon8_evil/flareon8-evil.py -------------------------------------------------------------------------------- /script_gorillabot_config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/script_gorillabot_config/README.md -------------------------------------------------------------------------------- /script_gorillabot_config/gorillabot_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/script_gorillabot_config/gorillabot_config.py -------------------------------------------------------------------------------- /script_gorillabot_config_v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/script_gorillabot_config_v2/README.md -------------------------------------------------------------------------------- /script_gorillabot_config_v2/gorillabot_config_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/script_gorillabot_config_v2/gorillabot_config_v2.py -------------------------------------------------------------------------------- /script_gorillabot_config_v2/requirements.txt: -------------------------------------------------------------------------------- 1 | # binaryninja 2 | click 3 | colorlog 4 | qiling 5 | -------------------------------------------------------------------------------- /script_pbctf_bintree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/script_pbctf_bintree/README.md -------------------------------------------------------------------------------- /script_pbctf_bintree/example/bintree-results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/script_pbctf_bintree/example/bintree-results.png -------------------------------------------------------------------------------- /script_pbctf_bintree/example/main.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/script_pbctf_bintree/example/main.elf -------------------------------------------------------------------------------- /script_pbctf_bintree/pbctf_bintree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/script_pbctf_bintree/pbctf_bintree.py -------------------------------------------------------------------------------- /script_ssm24_eclipse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/script_ssm24_eclipse/README.md -------------------------------------------------------------------------------- /script_ssm24_eclipse/example/ssm24_eclipse_decrypted1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/script_ssm24_eclipse/example/ssm24_eclipse_decrypted1.png -------------------------------------------------------------------------------- /script_ssm24_eclipse/example/ssm24_eclipse_encrypted1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/script_ssm24_eclipse/example/ssm24_eclipse_encrypted1.png -------------------------------------------------------------------------------- /script_ssm24_eclipse/example/ssm24_eclipse_encrypted2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/script_ssm24_eclipse/example/ssm24_eclipse_encrypted2.png -------------------------------------------------------------------------------- /script_ssm24_eclipse/example/ssm24_eclipse_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/script_ssm24_eclipse/example/ssm24_eclipse_open.png -------------------------------------------------------------------------------- /script_ssm24_eclipse/example/ssm24_tags1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/script_ssm24_eclipse/example/ssm24_tags1.png -------------------------------------------------------------------------------- /script_ssm24_eclipse/example/ssm24_tags2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/script_ssm24_eclipse/example/ssm24_tags2.png -------------------------------------------------------------------------------- /script_ssm24_eclipse/requirements.txt: -------------------------------------------------------------------------------- 1 | networkx 2 | pycryptodome 3 | -------------------------------------------------------------------------------- /script_ssm24_eclipse/ssm24_eclipse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/script_ssm24_eclipse/ssm24_eclipse.py -------------------------------------------------------------------------------- /script_stack_string_helper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/script_stack_string_helper/README.md -------------------------------------------------------------------------------- /script_stack_string_helper/stack_string_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZetaTwo/binja-experiments/HEAD/script_stack_string_helper/stack_string_helper.py --------------------------------------------------------------------------------