Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
ps5-umtxdbg | Kitploit
Tools/GitHubGitHub/fail0verflow/ps5-umtxdbg
Vulnerability AnalysisExploitationDebuggersBinary Exploitation
GitHubfail0verflow/ps5-umtxdbg

ps5-umtxdbg

View Repository
8381 year agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

NOTES

The bug was found in early december 2020, not by me, but a genius who looked 15mins at fbsd and immediately spotted it 🙇‍♂️. This c++ impl was made when experimenting with increasing exploit reliability after ps5 kernel added some heap randomization features.

setup vm

get vm image

root@kitploit:~
wget http://ftp-archive.freebsd.org/pub/FreeBSD-Archive/old-releases/VM-IMAGES/11.0-RELEASE/amd64/Latest/FreeBSD-11.0-RELEASE-amd64.vhd.xz

enable ssh

in the vm: adduser, add sshd_enable="YES" to /etc/rc.conf, /etc/rc.d/sshd start

rebuild kernel with debug

build ON THE VM because the freebsd build system is incompatible with non-freebsd systems (they enabled compat around fbsd 12/13 but we need 11...)

see https://docs.freebsd.org/en/books/handbook/kernelconfig/ or just:

root@kitploit:~
cd /usr/src/sys/amd64/conf
cp GENERIC /root/CONFIG
ln -s /root/CONFIG

edit CONFIG to remove options DDB and add options GDB

build and install:

root@kitploit:~
cd /src/src
make buildkernel KERNCONF=CONFIG
make installkernel KERNCONF=CONFIG
reboot

copy /usr/obj/usr/src/sys/CONFIG/kernel.debug out of the vm for use with gdb.

setup gdb

get kernel src for browsing / gdb

root@kitploit:~
git clone -b releng/11.0 https://github.com/freebsd/freebsd.git

build gdb with fbsd support

fetch latest from https://ftp.gnu.org/gnu/gdb/ and unpack

root@kitploit:~
mkdir build
cd build
../configure --disable-binutils --disable-ld --disable-gold --disable-gas --disable-sim --disable-gprof --target=x86_64-unknown-freebsd
make -j64

make gdb suck less

use https://github.com/cyrus-and/gdb-dashboard

.gdbinit for freebsd kernel

root@kitploit:~
set substitute-path /usr/src /home/shawn/freebsd
set disassembly-flavor intel
file kernel.debug
target remote /tmp/fbsd11

wsl interop

https://github.com/weltling/convey https://github.com/jstarks/npiperelay

wrapper for starting "loose" gdb

root@kitploit:~
#!/bin/sh
GDB_PATH=/home/shawn/gdb-10.1/build/gdb
PATH=$GDB_PATH:$PATH
gdb --data-directory=/home/shawn/gdb-10.1/build/gdb/data-directory

gdb initial breakin

in vm:

root@kitploit:~
sysctl debug.kdb.enter=1
Download Tool