├── Makefile ├── README.md ├── configdoc.xml ├── ctr-httpwn.xml ├── data ├── builtin_rootca.der └── cmpblock.bin ├── icon.png ├── ipctakeover └── boss │ ├── bosshaxx.c │ ├── config_boss.xml │ └── types.h ├── release_version ├── romfs └── internal_config.xml ├── source ├── config.cpp ├── config.h ├── ctr-httpwn.c ├── loadcodebin.c └── sharedmem_setup.c └── web ├── NetUpdateSOAP.php ├── config.php └── hashes /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ctr-httpwn/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ctr-httpwn/HEAD/README.md -------------------------------------------------------------------------------- /configdoc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ctr-httpwn/HEAD/configdoc.xml -------------------------------------------------------------------------------- /ctr-httpwn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ctr-httpwn/HEAD/ctr-httpwn.xml -------------------------------------------------------------------------------- /data/builtin_rootca.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ctr-httpwn/HEAD/data/builtin_rootca.der -------------------------------------------------------------------------------- /data/cmpblock.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ctr-httpwn/HEAD/data/cmpblock.bin -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ctr-httpwn/HEAD/icon.png -------------------------------------------------------------------------------- /ipctakeover/boss/bosshaxx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ctr-httpwn/HEAD/ipctakeover/boss/bosshaxx.c -------------------------------------------------------------------------------- /ipctakeover/boss/config_boss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ctr-httpwn/HEAD/ipctakeover/boss/config_boss.xml -------------------------------------------------------------------------------- /ipctakeover/boss/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ctr-httpwn/HEAD/ipctakeover/boss/types.h -------------------------------------------------------------------------------- /release_version: -------------------------------------------------------------------------------- 1 | v1.2 -------------------------------------------------------------------------------- /romfs/internal_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ctr-httpwn/HEAD/romfs/internal_config.xml -------------------------------------------------------------------------------- /source/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ctr-httpwn/HEAD/source/config.cpp -------------------------------------------------------------------------------- /source/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ctr-httpwn/HEAD/source/config.h -------------------------------------------------------------------------------- /source/ctr-httpwn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ctr-httpwn/HEAD/source/ctr-httpwn.c -------------------------------------------------------------------------------- /source/loadcodebin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ctr-httpwn/HEAD/source/loadcodebin.c -------------------------------------------------------------------------------- /source/sharedmem_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ctr-httpwn/HEAD/source/sharedmem_setup.c -------------------------------------------------------------------------------- /web/NetUpdateSOAP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ctr-httpwn/HEAD/web/NetUpdateSOAP.php -------------------------------------------------------------------------------- /web/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ctr-httpwn/HEAD/web/config.php -------------------------------------------------------------------------------- /web/hashes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ctr-httpwn/HEAD/web/hashes --------------------------------------------------------------------------------