├── 010 └── sam.bt ├── README.md ├── android ├── collect-ramdump.sh └── download-dump.sh ├── idapython ├── loader │ └── sam_modem_ramdump.py ├── misc │ ├── clean-IDC.sh │ └── typeinfo.idc └── plugins │ ├── def_arm32_functions.py │ ├── find_mcr.py │ ├── label_functions.py │ ├── name_msg_handlers.py │ ├── parse_mpu.py │ ├── pseudocomments.py │ ├── register_map.py │ ├── stackscan.py │ └── taskscan.py └── modem ├── memdump.py ├── readmem.py ├── unpack_modem.py └── writemem.py /010/sam.bt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsecuris/shannonRE/HEAD/010/sam.bt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsecuris/shannonRE/HEAD/README.md -------------------------------------------------------------------------------- /android/collect-ramdump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsecuris/shannonRE/HEAD/android/collect-ramdump.sh -------------------------------------------------------------------------------- /android/download-dump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsecuris/shannonRE/HEAD/android/download-dump.sh -------------------------------------------------------------------------------- /idapython/loader/sam_modem_ramdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsecuris/shannonRE/HEAD/idapython/loader/sam_modem_ramdump.py -------------------------------------------------------------------------------- /idapython/misc/clean-IDC.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsecuris/shannonRE/HEAD/idapython/misc/clean-IDC.sh -------------------------------------------------------------------------------- /idapython/misc/typeinfo.idc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsecuris/shannonRE/HEAD/idapython/misc/typeinfo.idc -------------------------------------------------------------------------------- /idapython/plugins/def_arm32_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsecuris/shannonRE/HEAD/idapython/plugins/def_arm32_functions.py -------------------------------------------------------------------------------- /idapython/plugins/find_mcr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsecuris/shannonRE/HEAD/idapython/plugins/find_mcr.py -------------------------------------------------------------------------------- /idapython/plugins/label_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsecuris/shannonRE/HEAD/idapython/plugins/label_functions.py -------------------------------------------------------------------------------- /idapython/plugins/name_msg_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsecuris/shannonRE/HEAD/idapython/plugins/name_msg_handlers.py -------------------------------------------------------------------------------- /idapython/plugins/parse_mpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsecuris/shannonRE/HEAD/idapython/plugins/parse_mpu.py -------------------------------------------------------------------------------- /idapython/plugins/pseudocomments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsecuris/shannonRE/HEAD/idapython/plugins/pseudocomments.py -------------------------------------------------------------------------------- /idapython/plugins/register_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsecuris/shannonRE/HEAD/idapython/plugins/register_map.py -------------------------------------------------------------------------------- /idapython/plugins/stackscan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsecuris/shannonRE/HEAD/idapython/plugins/stackscan.py -------------------------------------------------------------------------------- /idapython/plugins/taskscan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsecuris/shannonRE/HEAD/idapython/plugins/taskscan.py -------------------------------------------------------------------------------- /modem/memdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsecuris/shannonRE/HEAD/modem/memdump.py -------------------------------------------------------------------------------- /modem/readmem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsecuris/shannonRE/HEAD/modem/readmem.py -------------------------------------------------------------------------------- /modem/unpack_modem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsecuris/shannonRE/HEAD/modem/unpack_modem.py -------------------------------------------------------------------------------- /modem/writemem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsecuris/shannonRE/HEAD/modem/writemem.py --------------------------------------------------------------------------------