├── .gitmodules ├── Makefile ├── README.md ├── app ├── Makefile ├── app │ ├── daemon.c │ ├── daemon_start.c │ ├── errno.c │ ├── fork.c │ ├── getfw.c │ ├── graphics.cpp │ ├── graphics.h │ ├── gui.cpp │ ├── gui.h │ ├── jailbreak.c │ ├── log_backup.c │ ├── main.c │ ├── maybe_tun.c │ ├── mira_header.h │ ├── ns_msg_getflag.c │ ├── popen.c │ └── utils.c ├── daemon.sfo ├── fix_entry.py └── link.x ├── blobs ├── Makefile └── cpp.txt ├── freebsd-headers ├── ldr ├── Makefile ├── glue.c ├── handles.c ├── handles.h ├── ldr.c ├── linux_structs.h ├── lookup.c ├── main.c ├── map.c ├── stub_gen.c └── tuntap.c ├── pkg ├── Makefile ├── font.ttf ├── pkg.gp4 ├── sce_module │ ├── libSceFios2.prx │ └── libc.prx └── sce_sys │ ├── about │ └── right.sprx │ └── param.sfo └── tun ├── Makefile ├── crt-ps4-505.asm ├── crt-ps4-672.asm ├── crt-ps4-702.asm ├── crt-ps4-755.asm ├── crt-ps4-900.asm ├── crt.asm ├── launcher.c ├── main.c ├── pong.py └── tunldr.c /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/.gitmodules -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/README.md -------------------------------------------------------------------------------- /app/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/app/Makefile -------------------------------------------------------------------------------- /app/app/daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/app/app/daemon.c -------------------------------------------------------------------------------- /app/app/daemon_start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/app/app/daemon_start.c -------------------------------------------------------------------------------- /app/app/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/app/app/errno.c -------------------------------------------------------------------------------- /app/app/fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/app/app/fork.c -------------------------------------------------------------------------------- /app/app/getfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/app/app/getfw.c -------------------------------------------------------------------------------- /app/app/graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/app/app/graphics.cpp -------------------------------------------------------------------------------- /app/app/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/app/app/graphics.h -------------------------------------------------------------------------------- /app/app/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/app/app/gui.cpp -------------------------------------------------------------------------------- /app/app/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/app/app/gui.h -------------------------------------------------------------------------------- /app/app/jailbreak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/app/app/jailbreak.c -------------------------------------------------------------------------------- /app/app/log_backup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/app/app/log_backup.c -------------------------------------------------------------------------------- /app/app/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/app/app/main.c -------------------------------------------------------------------------------- /app/app/maybe_tun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/app/app/maybe_tun.c -------------------------------------------------------------------------------- /app/app/mira_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/app/app/mira_header.h -------------------------------------------------------------------------------- /app/app/ns_msg_getflag.c: -------------------------------------------------------------------------------- 1 | void __ns_msg_getflag(void){} 2 | -------------------------------------------------------------------------------- /app/app/popen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/app/app/popen.c -------------------------------------------------------------------------------- /app/app/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/app/app/utils.c -------------------------------------------------------------------------------- /app/daemon.sfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/app/daemon.sfo -------------------------------------------------------------------------------- /app/fix_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/app/fix_entry.py -------------------------------------------------------------------------------- /app/link.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/app/link.x -------------------------------------------------------------------------------- /blobs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/blobs/Makefile -------------------------------------------------------------------------------- /blobs/cpp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/blobs/cpp.txt -------------------------------------------------------------------------------- /freebsd-headers: -------------------------------------------------------------------------------- 1 | /invalid -------------------------------------------------------------------------------- /ldr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/ldr/Makefile -------------------------------------------------------------------------------- /ldr/glue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/ldr/glue.c -------------------------------------------------------------------------------- /ldr/handles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/ldr/handles.c -------------------------------------------------------------------------------- /ldr/handles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/ldr/handles.h -------------------------------------------------------------------------------- /ldr/ldr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/ldr/ldr.c -------------------------------------------------------------------------------- /ldr/linux_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/ldr/linux_structs.h -------------------------------------------------------------------------------- /ldr/lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/ldr/lookup.c -------------------------------------------------------------------------------- /ldr/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/ldr/main.c -------------------------------------------------------------------------------- /ldr/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/ldr/map.c -------------------------------------------------------------------------------- /ldr/stub_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/ldr/stub_gen.c -------------------------------------------------------------------------------- /ldr/tuntap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/ldr/tuntap.c -------------------------------------------------------------------------------- /pkg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/pkg/Makefile -------------------------------------------------------------------------------- /pkg/font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/pkg/font.ttf -------------------------------------------------------------------------------- /pkg/pkg.gp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/pkg/pkg.gp4 -------------------------------------------------------------------------------- /pkg/sce_module/libSceFios2.prx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/pkg/sce_module/libSceFios2.prx -------------------------------------------------------------------------------- /pkg/sce_module/libc.prx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/pkg/sce_module/libc.prx -------------------------------------------------------------------------------- /pkg/sce_sys/about/right.sprx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/pkg/sce_sys/about/right.sprx -------------------------------------------------------------------------------- /pkg/sce_sys/param.sfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/pkg/sce_sys/param.sfo -------------------------------------------------------------------------------- /tun/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/tun/Makefile -------------------------------------------------------------------------------- /tun/crt-ps4-505.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/tun/crt-ps4-505.asm -------------------------------------------------------------------------------- /tun/crt-ps4-672.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/tun/crt-ps4-672.asm -------------------------------------------------------------------------------- /tun/crt-ps4-702.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/tun/crt-ps4-702.asm -------------------------------------------------------------------------------- /tun/crt-ps4-755.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/tun/crt-ps4-755.asm -------------------------------------------------------------------------------- /tun/crt-ps4-900.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/tun/crt-ps4-900.asm -------------------------------------------------------------------------------- /tun/crt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/tun/crt.asm -------------------------------------------------------------------------------- /tun/launcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/tun/launcher.c -------------------------------------------------------------------------------- /tun/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/tun/main.c -------------------------------------------------------------------------------- /tun/pong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/tun/pong.py -------------------------------------------------------------------------------- /tun/tunldr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleirsgoevy/ps4-hamachi/HEAD/tun/tunldr.c --------------------------------------------------------------------------------