├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── COPYING ├── README.md ├── cmd └── wInd3x │ ├── app.go │ ├── cmd_cfw.go │ ├── cmd_decrypt.go │ ├── cmd_download.go │ ├── cmd_dump.go │ ├── cmd_haxdu.go │ ├── cmd_makedfu.go │ ├── cmd_mse.go │ ├── cmd_nand_read.go │ ├── cmd_nor_read.go │ ├── cmd_restore.go │ ├── cmd_run.go │ ├── cmd_spew.go │ └── main.go ├── default.nix ├── go.mod ├── go.sum ├── logo.png ├── logotype.png ├── pkg ├── app │ └── app.go ├── cache │ ├── cache.go │ ├── cache_test.go │ └── phobos.go ├── cfw │ ├── cfw.go │ ├── defang_wtf.go │ └── fixup.go ├── devices │ ├── devices.go │ └── usb.go ├── dfu │ └── dfu.go ├── efi │ ├── compression │ │ ├── COPYING.edk2.txt │ │ ├── build.sh │ │ ├── compression.go │ │ ├── compression_runtime.go │ │ ├── compression_test.go │ │ ├── compression_wazero.go │ │ └── edk2.wasm │ ├── efi.go │ ├── file.go │ ├── sections.go │ └── volume.go ├── exploit │ ├── decrypt │ │ └── decrypt.go │ ├── dumpmem │ │ └── dumpmem.go │ ├── exploit.go │ ├── haxeddfu │ │ └── haxeddfu.go │ ├── s5late_n7g.go │ ├── wind3x_n3g.go │ └── wind3x_n45g.go ├── image │ └── image.go ├── mse │ ├── modifications.go │ └── mse.go ├── syscfg │ └── syscfg.go ├── uasm │ ├── insns.go │ ├── operands.go │ ├── uasm.go │ └── uasm_test.go └── usbms │ ├── ipod.go │ ├── scsi.go │ └── usbms.go └── web ├── .gitignore ├── COPYING ├── Makefile ├── README.md ├── favicon.png ├── index.html ├── package.json ├── server ├── README.md └── main.go ├── shell.nix ├── src ├── components.ts ├── edk2.ts └── go.ts ├── tsconfig.json ├── wiwali ├── README.md ├── main.go ├── store.go ├── usb.go └── wiwali.wasm └── yarn.lock /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/README.md -------------------------------------------------------------------------------- /cmd/wInd3x/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/cmd/wInd3x/app.go -------------------------------------------------------------------------------- /cmd/wInd3x/cmd_cfw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/cmd/wInd3x/cmd_cfw.go -------------------------------------------------------------------------------- /cmd/wInd3x/cmd_decrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/cmd/wInd3x/cmd_decrypt.go -------------------------------------------------------------------------------- /cmd/wInd3x/cmd_download.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/cmd/wInd3x/cmd_download.go -------------------------------------------------------------------------------- /cmd/wInd3x/cmd_dump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/cmd/wInd3x/cmd_dump.go -------------------------------------------------------------------------------- /cmd/wInd3x/cmd_haxdu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/cmd/wInd3x/cmd_haxdu.go -------------------------------------------------------------------------------- /cmd/wInd3x/cmd_makedfu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/cmd/wInd3x/cmd_makedfu.go -------------------------------------------------------------------------------- /cmd/wInd3x/cmd_mse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/cmd/wInd3x/cmd_mse.go -------------------------------------------------------------------------------- /cmd/wInd3x/cmd_nand_read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/cmd/wInd3x/cmd_nand_read.go -------------------------------------------------------------------------------- /cmd/wInd3x/cmd_nor_read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/cmd/wInd3x/cmd_nor_read.go -------------------------------------------------------------------------------- /cmd/wInd3x/cmd_restore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/cmd/wInd3x/cmd_restore.go -------------------------------------------------------------------------------- /cmd/wInd3x/cmd_run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/cmd/wInd3x/cmd_run.go -------------------------------------------------------------------------------- /cmd/wInd3x/cmd_spew.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/cmd/wInd3x/cmd_spew.go -------------------------------------------------------------------------------- /cmd/wInd3x/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/cmd/wInd3x/main.go -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/default.nix -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/go.sum -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/logo.png -------------------------------------------------------------------------------- /logotype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/logotype.png -------------------------------------------------------------------------------- /pkg/app/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/pkg/app/app.go -------------------------------------------------------------------------------- /pkg/cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/pkg/cache/cache.go -------------------------------------------------------------------------------- /pkg/cache/cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/pkg/cache/cache_test.go -------------------------------------------------------------------------------- /pkg/cache/phobos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/pkg/cache/phobos.go -------------------------------------------------------------------------------- /pkg/cfw/cfw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/pkg/cfw/cfw.go -------------------------------------------------------------------------------- /pkg/cfw/defang_wtf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/pkg/cfw/defang_wtf.go -------------------------------------------------------------------------------- /pkg/cfw/fixup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/pkg/cfw/fixup.go -------------------------------------------------------------------------------- /pkg/devices/devices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/pkg/devices/devices.go -------------------------------------------------------------------------------- /pkg/devices/usb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/pkg/devices/usb.go -------------------------------------------------------------------------------- /pkg/dfu/dfu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/pkg/dfu/dfu.go -------------------------------------------------------------------------------- /pkg/efi/compression/COPYING.edk2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/pkg/efi/compression/COPYING.edk2.txt -------------------------------------------------------------------------------- /pkg/efi/compression/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/pkg/efi/compression/build.sh -------------------------------------------------------------------------------- /pkg/efi/compression/compression.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/pkg/efi/compression/compression.go -------------------------------------------------------------------------------- /pkg/efi/compression/compression_runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/pkg/efi/compression/compression_runtime.go -------------------------------------------------------------------------------- /pkg/efi/compression/compression_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/pkg/efi/compression/compression_test.go -------------------------------------------------------------------------------- /pkg/efi/compression/compression_wazero.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/pkg/efi/compression/compression_wazero.go -------------------------------------------------------------------------------- /pkg/efi/compression/edk2.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/pkg/efi/compression/edk2.wasm -------------------------------------------------------------------------------- /pkg/efi/efi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/pkg/efi/efi.go -------------------------------------------------------------------------------- /pkg/efi/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/pkg/efi/file.go -------------------------------------------------------------------------------- /pkg/efi/sections.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/pkg/efi/sections.go -------------------------------------------------------------------------------- /pkg/efi/volume.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/pkg/efi/volume.go -------------------------------------------------------------------------------- /pkg/exploit/decrypt/decrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/pkg/exploit/decrypt/decrypt.go -------------------------------------------------------------------------------- /pkg/exploit/dumpmem/dumpmem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/pkg/exploit/dumpmem/dumpmem.go -------------------------------------------------------------------------------- /pkg/exploit/exploit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/pkg/exploit/exploit.go -------------------------------------------------------------------------------- /pkg/exploit/haxeddfu/haxeddfu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/pkg/exploit/haxeddfu/haxeddfu.go -------------------------------------------------------------------------------- /pkg/exploit/s5late_n7g.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/pkg/exploit/s5late_n7g.go -------------------------------------------------------------------------------- /pkg/exploit/wind3x_n3g.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/pkg/exploit/wind3x_n3g.go -------------------------------------------------------------------------------- /pkg/exploit/wind3x_n45g.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/pkg/exploit/wind3x_n45g.go -------------------------------------------------------------------------------- /pkg/image/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/pkg/image/image.go -------------------------------------------------------------------------------- /pkg/mse/modifications.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/pkg/mse/modifications.go -------------------------------------------------------------------------------- /pkg/mse/mse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/pkg/mse/mse.go -------------------------------------------------------------------------------- /pkg/syscfg/syscfg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/pkg/syscfg/syscfg.go -------------------------------------------------------------------------------- /pkg/uasm/insns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/pkg/uasm/insns.go -------------------------------------------------------------------------------- /pkg/uasm/operands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/pkg/uasm/operands.go -------------------------------------------------------------------------------- /pkg/uasm/uasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/pkg/uasm/uasm.go -------------------------------------------------------------------------------- /pkg/uasm/uasm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/pkg/uasm/uasm_test.go -------------------------------------------------------------------------------- /pkg/usbms/ipod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/pkg/usbms/ipod.go -------------------------------------------------------------------------------- /pkg/usbms/scsi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/pkg/usbms/scsi.go -------------------------------------------------------------------------------- /pkg/usbms/usbms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/pkg/usbms/usbms.go -------------------------------------------------------------------------------- /web/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | check.log 3 | node_modules 4 | server.elf -------------------------------------------------------------------------------- /web/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/web/COPYING -------------------------------------------------------------------------------- /web/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/web/Makefile -------------------------------------------------------------------------------- /web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/web/README.md -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/web/index.html -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/web/package.json -------------------------------------------------------------------------------- /web/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/web/server/README.md -------------------------------------------------------------------------------- /web/server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/web/server/main.go -------------------------------------------------------------------------------- /web/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/web/shell.nix -------------------------------------------------------------------------------- /web/src/components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/web/src/components.ts -------------------------------------------------------------------------------- /web/src/edk2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/web/src/edk2.ts -------------------------------------------------------------------------------- /web/src/go.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/web/src/go.ts -------------------------------------------------------------------------------- /web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/web/tsconfig.json -------------------------------------------------------------------------------- /web/wiwali/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/web/wiwali/README.md -------------------------------------------------------------------------------- /web/wiwali/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/web/wiwali/main.go -------------------------------------------------------------------------------- /web/wiwali/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/web/wiwali/store.go -------------------------------------------------------------------------------- /web/wiwali/usb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/web/wiwali/usb.go -------------------------------------------------------------------------------- /web/wiwali/wiwali.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/web/wiwali/wiwali.wasm -------------------------------------------------------------------------------- /web/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freemyipod/wInd3x/HEAD/web/yarn.lock --------------------------------------------------------------------------------