├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── data ├── fonts │ └── font.ttf ├── images │ ├── button.png │ ├── homebrewButton.png │ ├── launchMenuBox.png │ ├── leftArrow.png │ ├── player1_point.png │ ├── player2_point.png │ ├── player3_point.png │ ├── player4_point.png │ ├── progressWindow.png │ └── rightArrow.png ├── images2 │ ├── button.png │ ├── homebrewButton.png │ ├── launchMenuBox.png │ ├── leftArrow.png │ ├── player1_point.png │ ├── player2_point.png │ ├── player3_point.png │ ├── player4_point.png │ ├── progressWindow.png │ └── rightArrow.png └── sounds │ ├── bgMusic.ogg │ └── button_click.mp3 ├── filelist.sh ├── installer ├── Makefile ├── crt0.S ├── elf_abi.h ├── kernel_patches.S ├── kexploit.c ├── kexploit.h ├── launcher.c ├── logger.c ├── logger.h ├── structs.h └── types.h ├── libs └── portlibs.zip ├── meta ├── icon.png ├── icon1.png ├── icon3.png ├── icon4.png ├── icon5.png ├── icon6.png └── meta.xml ├── sd_loader ├── Makefile └── src │ ├── common.h │ ├── elf_abi.h │ ├── entry.c │ ├── fs_defs.h │ ├── kernel_defs.h │ ├── kernel_hooks.S │ ├── link.ld │ ├── loader_defs.h │ └── os_defs.h ├── src ├── Application.cpp ├── Application.h ├── common │ └── common.h ├── custom │ ├── system │ │ ├── memory_area_table.c │ │ └── memory_area_table.h │ └── utils │ │ ├── HomebrewXML.cpp │ │ ├── HomebrewXML.h │ │ ├── net.c │ │ ├── net.h │ │ ├── tinyxml.cpp │ │ ├── tinyxml.h │ │ ├── tinyxmlerror.cpp │ │ └── tinyxmlparser.cpp ├── entry.c ├── link.ld ├── main.cpp ├── main.h ├── menu │ ├── HomebrewLaunchWindow.cpp │ ├── HomebrewLaunchWindow.h │ ├── HomebrewLoader.cpp │ ├── HomebrewLoader.h │ ├── HomebrewMemory.cpp │ ├── HomebrewMemory.h │ ├── HomebrewWindow.cpp │ ├── HomebrewWindow.h │ ├── MainWindow.cpp │ ├── MainWindow.h │ ├── ProgressWindow.cpp │ ├── ProgressWindow.h │ ├── TcpReceiver.cpp │ └── TcpReceiver.h └── resources │ └── filelist.cpp └── www └── homebrew_launcher ├── code300.bin ├── code310.bin ├── code400.bin ├── code410.bin ├── code500.bin ├── code532.bin ├── code550.bin ├── frame.html ├── index.html ├── payload.php ├── payload300.html ├── payload310.html ├── payload400.html ├── payload410.html ├── payload500.html ├── payload532.html ├── wiiu_browserhax_common.php ├── wiiuhaxx_common_cfg.php ├── wiiuhaxx_loader.bin ├── wiiuhaxx_rop_sysver_532.php └── wiiuhaxx_rop_sysver_550.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/README.md -------------------------------------------------------------------------------- /data/fonts/font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/data/fonts/font.ttf -------------------------------------------------------------------------------- /data/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/data/images/button.png -------------------------------------------------------------------------------- /data/images/homebrewButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/data/images/homebrewButton.png -------------------------------------------------------------------------------- /data/images/launchMenuBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/data/images/launchMenuBox.png -------------------------------------------------------------------------------- /data/images/leftArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/data/images/leftArrow.png -------------------------------------------------------------------------------- /data/images/player1_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/data/images/player1_point.png -------------------------------------------------------------------------------- /data/images/player2_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/data/images/player2_point.png -------------------------------------------------------------------------------- /data/images/player3_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/data/images/player3_point.png -------------------------------------------------------------------------------- /data/images/player4_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/data/images/player4_point.png -------------------------------------------------------------------------------- /data/images/progressWindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/data/images/progressWindow.png -------------------------------------------------------------------------------- /data/images/rightArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/data/images/rightArrow.png -------------------------------------------------------------------------------- /data/images2/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/data/images2/button.png -------------------------------------------------------------------------------- /data/images2/homebrewButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/data/images2/homebrewButton.png -------------------------------------------------------------------------------- /data/images2/launchMenuBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/data/images2/launchMenuBox.png -------------------------------------------------------------------------------- /data/images2/leftArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/data/images2/leftArrow.png -------------------------------------------------------------------------------- /data/images2/player1_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/data/images2/player1_point.png -------------------------------------------------------------------------------- /data/images2/player2_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/data/images2/player2_point.png -------------------------------------------------------------------------------- /data/images2/player3_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/data/images2/player3_point.png -------------------------------------------------------------------------------- /data/images2/player4_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/data/images2/player4_point.png -------------------------------------------------------------------------------- /data/images2/progressWindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/data/images2/progressWindow.png -------------------------------------------------------------------------------- /data/images2/rightArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/data/images2/rightArrow.png -------------------------------------------------------------------------------- /data/sounds/bgMusic.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/data/sounds/bgMusic.ogg -------------------------------------------------------------------------------- /data/sounds/button_click.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/data/sounds/button_click.mp3 -------------------------------------------------------------------------------- /filelist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/filelist.sh -------------------------------------------------------------------------------- /installer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/installer/Makefile -------------------------------------------------------------------------------- /installer/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/installer/crt0.S -------------------------------------------------------------------------------- /installer/elf_abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/installer/elf_abi.h -------------------------------------------------------------------------------- /installer/kernel_patches.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/installer/kernel_patches.S -------------------------------------------------------------------------------- /installer/kexploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/installer/kexploit.c -------------------------------------------------------------------------------- /installer/kexploit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/installer/kexploit.h -------------------------------------------------------------------------------- /installer/launcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/installer/launcher.c -------------------------------------------------------------------------------- /installer/logger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/installer/logger.c -------------------------------------------------------------------------------- /installer/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/installer/logger.h -------------------------------------------------------------------------------- /installer/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/installer/structs.h -------------------------------------------------------------------------------- /installer/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/installer/types.h -------------------------------------------------------------------------------- /libs/portlibs.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/libs/portlibs.zip -------------------------------------------------------------------------------- /meta/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/meta/icon.png -------------------------------------------------------------------------------- /meta/icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/meta/icon1.png -------------------------------------------------------------------------------- /meta/icon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/meta/icon3.png -------------------------------------------------------------------------------- /meta/icon4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/meta/icon4.png -------------------------------------------------------------------------------- /meta/icon5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/meta/icon5.png -------------------------------------------------------------------------------- /meta/icon6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/meta/icon6.png -------------------------------------------------------------------------------- /meta/meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/meta/meta.xml -------------------------------------------------------------------------------- /sd_loader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/sd_loader/Makefile -------------------------------------------------------------------------------- /sd_loader/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/sd_loader/src/common.h -------------------------------------------------------------------------------- /sd_loader/src/elf_abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/sd_loader/src/elf_abi.h -------------------------------------------------------------------------------- /sd_loader/src/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/sd_loader/src/entry.c -------------------------------------------------------------------------------- /sd_loader/src/fs_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/sd_loader/src/fs_defs.h -------------------------------------------------------------------------------- /sd_loader/src/kernel_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/sd_loader/src/kernel_defs.h -------------------------------------------------------------------------------- /sd_loader/src/kernel_hooks.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/sd_loader/src/kernel_hooks.S -------------------------------------------------------------------------------- /sd_loader/src/link.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/sd_loader/src/link.ld -------------------------------------------------------------------------------- /sd_loader/src/loader_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/sd_loader/src/loader_defs.h -------------------------------------------------------------------------------- /sd_loader/src/os_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/sd_loader/src/os_defs.h -------------------------------------------------------------------------------- /src/Application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/src/Application.cpp -------------------------------------------------------------------------------- /src/Application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/src/Application.h -------------------------------------------------------------------------------- /src/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/src/common/common.h -------------------------------------------------------------------------------- /src/custom/system/memory_area_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/src/custom/system/memory_area_table.c -------------------------------------------------------------------------------- /src/custom/system/memory_area_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/src/custom/system/memory_area_table.h -------------------------------------------------------------------------------- /src/custom/utils/HomebrewXML.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/src/custom/utils/HomebrewXML.cpp -------------------------------------------------------------------------------- /src/custom/utils/HomebrewXML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/src/custom/utils/HomebrewXML.h -------------------------------------------------------------------------------- /src/custom/utils/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/src/custom/utils/net.c -------------------------------------------------------------------------------- /src/custom/utils/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/src/custom/utils/net.h -------------------------------------------------------------------------------- /src/custom/utils/tinyxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/src/custom/utils/tinyxml.cpp -------------------------------------------------------------------------------- /src/custom/utils/tinyxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/src/custom/utils/tinyxml.h -------------------------------------------------------------------------------- /src/custom/utils/tinyxmlerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/src/custom/utils/tinyxmlerror.cpp -------------------------------------------------------------------------------- /src/custom/utils/tinyxmlparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/src/custom/utils/tinyxmlparser.cpp -------------------------------------------------------------------------------- /src/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/src/entry.c -------------------------------------------------------------------------------- /src/link.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/src/link.ld -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/src/main.h -------------------------------------------------------------------------------- /src/menu/HomebrewLaunchWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/src/menu/HomebrewLaunchWindow.cpp -------------------------------------------------------------------------------- /src/menu/HomebrewLaunchWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/src/menu/HomebrewLaunchWindow.h -------------------------------------------------------------------------------- /src/menu/HomebrewLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/src/menu/HomebrewLoader.cpp -------------------------------------------------------------------------------- /src/menu/HomebrewLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/src/menu/HomebrewLoader.h -------------------------------------------------------------------------------- /src/menu/HomebrewMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/src/menu/HomebrewMemory.cpp -------------------------------------------------------------------------------- /src/menu/HomebrewMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/src/menu/HomebrewMemory.h -------------------------------------------------------------------------------- /src/menu/HomebrewWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/src/menu/HomebrewWindow.cpp -------------------------------------------------------------------------------- /src/menu/HomebrewWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/src/menu/HomebrewWindow.h -------------------------------------------------------------------------------- /src/menu/MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/src/menu/MainWindow.cpp -------------------------------------------------------------------------------- /src/menu/MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/src/menu/MainWindow.h -------------------------------------------------------------------------------- /src/menu/ProgressWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/src/menu/ProgressWindow.cpp -------------------------------------------------------------------------------- /src/menu/ProgressWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/src/menu/ProgressWindow.h -------------------------------------------------------------------------------- /src/menu/TcpReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/src/menu/TcpReceiver.cpp -------------------------------------------------------------------------------- /src/menu/TcpReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/src/menu/TcpReceiver.h -------------------------------------------------------------------------------- /src/resources/filelist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/src/resources/filelist.cpp -------------------------------------------------------------------------------- /www/homebrew_launcher/code300.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/www/homebrew_launcher/code300.bin -------------------------------------------------------------------------------- /www/homebrew_launcher/code310.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/www/homebrew_launcher/code310.bin -------------------------------------------------------------------------------- /www/homebrew_launcher/code400.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/www/homebrew_launcher/code400.bin -------------------------------------------------------------------------------- /www/homebrew_launcher/code410.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/www/homebrew_launcher/code410.bin -------------------------------------------------------------------------------- /www/homebrew_launcher/code500.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/www/homebrew_launcher/code500.bin -------------------------------------------------------------------------------- /www/homebrew_launcher/code532.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/www/homebrew_launcher/code532.bin -------------------------------------------------------------------------------- /www/homebrew_launcher/code550.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/www/homebrew_launcher/code550.bin -------------------------------------------------------------------------------- /www/homebrew_launcher/frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/www/homebrew_launcher/frame.html -------------------------------------------------------------------------------- /www/homebrew_launcher/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/www/homebrew_launcher/index.html -------------------------------------------------------------------------------- /www/homebrew_launcher/payload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/www/homebrew_launcher/payload.php -------------------------------------------------------------------------------- /www/homebrew_launcher/payload300.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/www/homebrew_launcher/payload300.html -------------------------------------------------------------------------------- /www/homebrew_launcher/payload310.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/www/homebrew_launcher/payload310.html -------------------------------------------------------------------------------- /www/homebrew_launcher/payload400.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/www/homebrew_launcher/payload400.html -------------------------------------------------------------------------------- /www/homebrew_launcher/payload410.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/www/homebrew_launcher/payload410.html -------------------------------------------------------------------------------- /www/homebrew_launcher/payload500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/www/homebrew_launcher/payload500.html -------------------------------------------------------------------------------- /www/homebrew_launcher/payload532.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/www/homebrew_launcher/payload532.html -------------------------------------------------------------------------------- /www/homebrew_launcher/wiiu_browserhax_common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/www/homebrew_launcher/wiiu_browserhax_common.php -------------------------------------------------------------------------------- /www/homebrew_launcher/wiiuhaxx_common_cfg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/www/homebrew_launcher/wiiuhaxx_common_cfg.php -------------------------------------------------------------------------------- /www/homebrew_launcher/wiiuhaxx_loader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/www/homebrew_launcher/wiiuhaxx_loader.bin -------------------------------------------------------------------------------- /www/homebrew_launcher/wiiuhaxx_rop_sysver_532.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/www/homebrew_launcher/wiiuhaxx_rop_sysver_532.php -------------------------------------------------------------------------------- /www/homebrew_launcher/wiiuhaxx_rop_sysver_550.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/homebrew_launcher/HEAD/www/homebrew_launcher/wiiuhaxx_rop_sysver_550.php --------------------------------------------------------------------------------