├── .gitmodules └── README.md /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "tcl_shellcode"] 2 | path = tcl_shellcode 3 | url = https://github.com/embedi/tcl_shellcode.git 4 | [submodule "iomem_hunter"] 5 | path = iomem_hunter 6 | url = https://github.com/embedi/iomem_hunter.git 7 | [submodule "PPCGadgetFinder"] 8 | path = PPCGadgetFinder 9 | url = https://github.com/embedi/PPCGadgetFinder.git 10 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # cisco_tools 2 | 3 | Main repository to pull all `Cisco` related projects. 4 | 5 | ## projects 6 | 7 | Refer to the respective sub-projects: 8 | 9 | * [tcl_shellcode](https://github.com/embedi/tcl_shellcode): a template project for creating a shellcode for the Cisco IOS in the C language 10 | * [iomem_hunter](https://github.com/embedi/iomem_hunter): an omelet-egg-hunter shellcode for Cisco IOS 11 | * [PPCGadgetFinder](https://github.com/embedi/PPCGadgetFinder): an IDAPython script to look for ROP-gadgets for PowerPC --------------------------------------------------------------------------------