├── .github └── FUNDING.yml ├── LICENSE ├── README.md ├── appinfo_editor.py ├── download0 └── cache │ └── splash_screen │ └── aHR0cHM6Ly93d3cueW91dHViZS5jb20vdHY= │ ├── elf_loader.js │ ├── elfldr.elf │ ├── global.js │ ├── gpu.js │ ├── kernel.js │ ├── kernel_offset.js │ ├── main.js │ ├── misc.js │ ├── remotejsloader.js │ └── splash.html ├── log_server.py ├── payload_sender.py └── payloads ├── dlsym_test.js ├── helloworld.js ├── lapse.js └── setlogserver.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [Gezine] -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gezine/Y2JB/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gezine/Y2JB/HEAD/README.md -------------------------------------------------------------------------------- /appinfo_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gezine/Y2JB/HEAD/appinfo_editor.py -------------------------------------------------------------------------------- /download0/cache/splash_screen/aHR0cHM6Ly93d3cueW91dHViZS5jb20vdHY=/elf_loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gezine/Y2JB/HEAD/download0/cache/splash_screen/aHR0cHM6Ly93d3cueW91dHViZS5jb20vdHY=/elf_loader.js -------------------------------------------------------------------------------- /download0/cache/splash_screen/aHR0cHM6Ly93d3cueW91dHViZS5jb20vdHY=/elfldr.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gezine/Y2JB/HEAD/download0/cache/splash_screen/aHR0cHM6Ly93d3cueW91dHViZS5jb20vdHY=/elfldr.elf -------------------------------------------------------------------------------- /download0/cache/splash_screen/aHR0cHM6Ly93d3cueW91dHViZS5jb20vdHY=/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gezine/Y2JB/HEAD/download0/cache/splash_screen/aHR0cHM6Ly93d3cueW91dHViZS5jb20vdHY=/global.js -------------------------------------------------------------------------------- /download0/cache/splash_screen/aHR0cHM6Ly93d3cueW91dHViZS5jb20vdHY=/gpu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gezine/Y2JB/HEAD/download0/cache/splash_screen/aHR0cHM6Ly93d3cueW91dHViZS5jb20vdHY=/gpu.js -------------------------------------------------------------------------------- /download0/cache/splash_screen/aHR0cHM6Ly93d3cueW91dHViZS5jb20vdHY=/kernel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gezine/Y2JB/HEAD/download0/cache/splash_screen/aHR0cHM6Ly93d3cueW91dHViZS5jb20vdHY=/kernel.js -------------------------------------------------------------------------------- /download0/cache/splash_screen/aHR0cHM6Ly93d3cueW91dHViZS5jb20vdHY=/kernel_offset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gezine/Y2JB/HEAD/download0/cache/splash_screen/aHR0cHM6Ly93d3cueW91dHViZS5jb20vdHY=/kernel_offset.js -------------------------------------------------------------------------------- /download0/cache/splash_screen/aHR0cHM6Ly93d3cueW91dHViZS5jb20vdHY=/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gezine/Y2JB/HEAD/download0/cache/splash_screen/aHR0cHM6Ly93d3cueW91dHViZS5jb20vdHY=/main.js -------------------------------------------------------------------------------- /download0/cache/splash_screen/aHR0cHM6Ly93d3cueW91dHViZS5jb20vdHY=/misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gezine/Y2JB/HEAD/download0/cache/splash_screen/aHR0cHM6Ly93d3cueW91dHViZS5jb20vdHY=/misc.js -------------------------------------------------------------------------------- /download0/cache/splash_screen/aHR0cHM6Ly93d3cueW91dHViZS5jb20vdHY=/remotejsloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gezine/Y2JB/HEAD/download0/cache/splash_screen/aHR0cHM6Ly93d3cueW91dHViZS5jb20vdHY=/remotejsloader.js -------------------------------------------------------------------------------- /download0/cache/splash_screen/aHR0cHM6Ly93d3cueW91dHViZS5jb20vdHY=/splash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gezine/Y2JB/HEAD/download0/cache/splash_screen/aHR0cHM6Ly93d3cueW91dHViZS5jb20vdHY=/splash.html -------------------------------------------------------------------------------- /log_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gezine/Y2JB/HEAD/log_server.py -------------------------------------------------------------------------------- /payload_sender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gezine/Y2JB/HEAD/payload_sender.py -------------------------------------------------------------------------------- /payloads/dlsym_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gezine/Y2JB/HEAD/payloads/dlsym_test.js -------------------------------------------------------------------------------- /payloads/helloworld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gezine/Y2JB/HEAD/payloads/helloworld.js -------------------------------------------------------------------------------- /payloads/lapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gezine/Y2JB/HEAD/payloads/lapse.js -------------------------------------------------------------------------------- /payloads/setlogserver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gezine/Y2JB/HEAD/payloads/setlogserver.js --------------------------------------------------------------------------------