├── .gitignore ├── .idea ├── encodings.xml ├── misc.xml ├── modules.xml ├── re_scripts.iml └── vcs.xml ├── LICENSE ├── README.md ├── ida ├── Armariris_flow_flattening_bypass.py ├── Armariris_string_obfuscation_bypass.md ├── Armariris_string_obfuscation_bypass.py ├── Simulator.py ├── img │ ├── after1.png │ ├── after2.png │ ├── after3.png │ ├── after4.png │ ├── before.png │ ├── data_orig.png │ └── xref.png └── sample │ ├── test.c │ ├── test_linux_x86_64 │ ├── test_linux_x86_64_fla │ └── test_macos_x86_64 └── jeb └── FridaCodeGenerator.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdone/re_scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdone/re_scripts/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdone/re_scripts/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdone/re_scripts/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/re_scripts.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdone/re_scripts/HEAD/.idea/re_scripts.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdone/re_scripts/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdone/re_scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdone/re_scripts/HEAD/README.md -------------------------------------------------------------------------------- /ida/Armariris_flow_flattening_bypass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdone/re_scripts/HEAD/ida/Armariris_flow_flattening_bypass.py -------------------------------------------------------------------------------- /ida/Armariris_string_obfuscation_bypass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdone/re_scripts/HEAD/ida/Armariris_string_obfuscation_bypass.md -------------------------------------------------------------------------------- /ida/Armariris_string_obfuscation_bypass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdone/re_scripts/HEAD/ida/Armariris_string_obfuscation_bypass.py -------------------------------------------------------------------------------- /ida/Simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdone/re_scripts/HEAD/ida/Simulator.py -------------------------------------------------------------------------------- /ida/img/after1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdone/re_scripts/HEAD/ida/img/after1.png -------------------------------------------------------------------------------- /ida/img/after2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdone/re_scripts/HEAD/ida/img/after2.png -------------------------------------------------------------------------------- /ida/img/after3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdone/re_scripts/HEAD/ida/img/after3.png -------------------------------------------------------------------------------- /ida/img/after4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdone/re_scripts/HEAD/ida/img/after4.png -------------------------------------------------------------------------------- /ida/img/before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdone/re_scripts/HEAD/ida/img/before.png -------------------------------------------------------------------------------- /ida/img/data_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdone/re_scripts/HEAD/ida/img/data_orig.png -------------------------------------------------------------------------------- /ida/img/xref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdone/re_scripts/HEAD/ida/img/xref.png -------------------------------------------------------------------------------- /ida/sample/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdone/re_scripts/HEAD/ida/sample/test.c -------------------------------------------------------------------------------- /ida/sample/test_linux_x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdone/re_scripts/HEAD/ida/sample/test_linux_x86_64 -------------------------------------------------------------------------------- /ida/sample/test_linux_x86_64_fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdone/re_scripts/HEAD/ida/sample/test_linux_x86_64_fla -------------------------------------------------------------------------------- /ida/sample/test_macos_x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdone/re_scripts/HEAD/ida/sample/test_macos_x86_64 -------------------------------------------------------------------------------- /jeb/FridaCodeGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdone/re_scripts/HEAD/jeb/FridaCodeGenerator.py --------------------------------------------------------------------------------