├── .gitignore ├── README.md ├── pyhexraysdeob.py └── pyhexraysdeob_modules ├── cf_flatten_info.py ├── def_util.py ├── hexrays_util.py ├── microcode_explorer.py ├── pattern_deobfuscate.py ├── target_util.py └── unflattener.py /.gitignore: -------------------------------------------------------------------------------- 1 | makefile 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapython/pyhexraysdeob/HEAD/README.md -------------------------------------------------------------------------------- /pyhexraysdeob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapython/pyhexraysdeob/HEAD/pyhexraysdeob.py -------------------------------------------------------------------------------- /pyhexraysdeob_modules/cf_flatten_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapython/pyhexraysdeob/HEAD/pyhexraysdeob_modules/cf_flatten_info.py -------------------------------------------------------------------------------- /pyhexraysdeob_modules/def_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapython/pyhexraysdeob/HEAD/pyhexraysdeob_modules/def_util.py -------------------------------------------------------------------------------- /pyhexraysdeob_modules/hexrays_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapython/pyhexraysdeob/HEAD/pyhexraysdeob_modules/hexrays_util.py -------------------------------------------------------------------------------- /pyhexraysdeob_modules/microcode_explorer.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pyhexraysdeob_modules/pattern_deobfuscate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapython/pyhexraysdeob/HEAD/pyhexraysdeob_modules/pattern_deobfuscate.py -------------------------------------------------------------------------------- /pyhexraysdeob_modules/target_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapython/pyhexraysdeob/HEAD/pyhexraysdeob_modules/target_util.py -------------------------------------------------------------------------------- /pyhexraysdeob_modules/unflattener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapython/pyhexraysdeob/HEAD/pyhexraysdeob_modules/unflattener.py --------------------------------------------------------------------------------