├── .gitattributes ├── .gitignore ├── .gitmodules ├── README.md ├── debugger ├── Makefile ├── include │ ├── console.h │ ├── debug.h │ ├── errno.h │ ├── kdbg.h │ ├── kern.h │ ├── net.h │ ├── proc.h │ ├── protocol.h │ ├── ptrace.h │ ├── server.h │ └── sparse.h └── source │ ├── console.c │ ├── debug.c │ ├── kdbg.c │ ├── kern.c │ ├── main.c │ ├── net.c │ ├── proc.c │ ├── ptrace.c │ └── server.c ├── installer ├── Makefile ├── crt0.s ├── include │ ├── elf.h │ ├── installer.h │ ├── proc.h │ ├── rpcasm.h │ └── syscall.h ├── linker.x └── source │ ├── elf.c │ ├── embed.s │ ├── installer.c │ ├── main.c │ ├── proc.c │ └── syscall.s ├── kdebugger ├── Makefile ├── crt0.s ├── include │ ├── elf.h │ ├── hooks.h │ ├── proc.h │ └── rpcasm.h ├── kdebugger.x └── source │ ├── elf.c │ ├── hooks.c │ ├── main.c │ └── proc.c ├── libdebug ├── README.md ├── cpp │ ├── CMakeLists.txt │ ├── example │ │ └── example.cpp │ ├── include │ │ ├── PS4DBG.hpp │ │ ├── Platform.hpp │ │ ├── Process.hpp │ │ └── Registers.hpp │ └── source │ │ ├── PS4DBG.cpp │ │ └── Process.cpp └── csharp │ ├── PS4DBG.Console.cs │ ├── PS4DBG.Debug.cs │ ├── PS4DBG.Kernel.cs │ ├── PS4DBG.Proc.cs │ ├── PS4DBG.cs │ ├── Process.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Registers.cs │ └── libdebug.csproj └── send.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/README.md -------------------------------------------------------------------------------- /debugger/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/debugger/Makefile -------------------------------------------------------------------------------- /debugger/include/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/debugger/include/console.h -------------------------------------------------------------------------------- /debugger/include/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/debugger/include/debug.h -------------------------------------------------------------------------------- /debugger/include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/debugger/include/errno.h -------------------------------------------------------------------------------- /debugger/include/kdbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/debugger/include/kdbg.h -------------------------------------------------------------------------------- /debugger/include/kern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/debugger/include/kern.h -------------------------------------------------------------------------------- /debugger/include/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/debugger/include/net.h -------------------------------------------------------------------------------- /debugger/include/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/debugger/include/proc.h -------------------------------------------------------------------------------- /debugger/include/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/debugger/include/protocol.h -------------------------------------------------------------------------------- /debugger/include/ptrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/debugger/include/ptrace.h -------------------------------------------------------------------------------- /debugger/include/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/debugger/include/server.h -------------------------------------------------------------------------------- /debugger/include/sparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/debugger/include/sparse.h -------------------------------------------------------------------------------- /debugger/source/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/debugger/source/console.c -------------------------------------------------------------------------------- /debugger/source/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/debugger/source/debug.c -------------------------------------------------------------------------------- /debugger/source/kdbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/debugger/source/kdbg.c -------------------------------------------------------------------------------- /debugger/source/kern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/debugger/source/kern.c -------------------------------------------------------------------------------- /debugger/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/debugger/source/main.c -------------------------------------------------------------------------------- /debugger/source/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/debugger/source/net.c -------------------------------------------------------------------------------- /debugger/source/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/debugger/source/proc.c -------------------------------------------------------------------------------- /debugger/source/ptrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/debugger/source/ptrace.c -------------------------------------------------------------------------------- /debugger/source/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/debugger/source/server.c -------------------------------------------------------------------------------- /installer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/installer/Makefile -------------------------------------------------------------------------------- /installer/crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/installer/crt0.s -------------------------------------------------------------------------------- /installer/include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/installer/include/elf.h -------------------------------------------------------------------------------- /installer/include/installer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/installer/include/installer.h -------------------------------------------------------------------------------- /installer/include/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/installer/include/proc.h -------------------------------------------------------------------------------- /installer/include/rpcasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/installer/include/rpcasm.h -------------------------------------------------------------------------------- /installer/include/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/installer/include/syscall.h -------------------------------------------------------------------------------- /installer/linker.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/installer/linker.x -------------------------------------------------------------------------------- /installer/source/elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/installer/source/elf.c -------------------------------------------------------------------------------- /installer/source/embed.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/installer/source/embed.s -------------------------------------------------------------------------------- /installer/source/installer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/installer/source/installer.c -------------------------------------------------------------------------------- /installer/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/installer/source/main.c -------------------------------------------------------------------------------- /installer/source/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/installer/source/proc.c -------------------------------------------------------------------------------- /installer/source/syscall.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/installer/source/syscall.s -------------------------------------------------------------------------------- /kdebugger/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/kdebugger/Makefile -------------------------------------------------------------------------------- /kdebugger/crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/kdebugger/crt0.s -------------------------------------------------------------------------------- /kdebugger/include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/kdebugger/include/elf.h -------------------------------------------------------------------------------- /kdebugger/include/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/kdebugger/include/hooks.h -------------------------------------------------------------------------------- /kdebugger/include/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/kdebugger/include/proc.h -------------------------------------------------------------------------------- /kdebugger/include/rpcasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/kdebugger/include/rpcasm.h -------------------------------------------------------------------------------- /kdebugger/kdebugger.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/kdebugger/kdebugger.x -------------------------------------------------------------------------------- /kdebugger/source/elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/kdebugger/source/elf.c -------------------------------------------------------------------------------- /kdebugger/source/hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/kdebugger/source/hooks.c -------------------------------------------------------------------------------- /kdebugger/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/kdebugger/source/main.c -------------------------------------------------------------------------------- /kdebugger/source/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/kdebugger/source/proc.c -------------------------------------------------------------------------------- /libdebug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/libdebug/README.md -------------------------------------------------------------------------------- /libdebug/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/libdebug/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /libdebug/cpp/example/example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/libdebug/cpp/example/example.cpp -------------------------------------------------------------------------------- /libdebug/cpp/include/PS4DBG.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/libdebug/cpp/include/PS4DBG.hpp -------------------------------------------------------------------------------- /libdebug/cpp/include/Platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/libdebug/cpp/include/Platform.hpp -------------------------------------------------------------------------------- /libdebug/cpp/include/Process.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/libdebug/cpp/include/Process.hpp -------------------------------------------------------------------------------- /libdebug/cpp/include/Registers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/libdebug/cpp/include/Registers.hpp -------------------------------------------------------------------------------- /libdebug/cpp/source/PS4DBG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/libdebug/cpp/source/PS4DBG.cpp -------------------------------------------------------------------------------- /libdebug/cpp/source/Process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/libdebug/cpp/source/Process.cpp -------------------------------------------------------------------------------- /libdebug/csharp/PS4DBG.Console.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/libdebug/csharp/PS4DBG.Console.cs -------------------------------------------------------------------------------- /libdebug/csharp/PS4DBG.Debug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/libdebug/csharp/PS4DBG.Debug.cs -------------------------------------------------------------------------------- /libdebug/csharp/PS4DBG.Kernel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/libdebug/csharp/PS4DBG.Kernel.cs -------------------------------------------------------------------------------- /libdebug/csharp/PS4DBG.Proc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/libdebug/csharp/PS4DBG.Proc.cs -------------------------------------------------------------------------------- /libdebug/csharp/PS4DBG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/libdebug/csharp/PS4DBG.cs -------------------------------------------------------------------------------- /libdebug/csharp/Process.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/libdebug/csharp/Process.cs -------------------------------------------------------------------------------- /libdebug/csharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/libdebug/csharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /libdebug/csharp/Registers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/libdebug/csharp/Registers.cs -------------------------------------------------------------------------------- /libdebug/csharp/libdebug.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/libdebug/csharp/libdebug.csproj -------------------------------------------------------------------------------- /send.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jogolden/ps4debug/HEAD/send.sh --------------------------------------------------------------------------------