??? 123123123123 .....................................................................................................................................??? 123123123123 .....................................................................................................................................
Warning: Undefined variable $auth in /home/elquintoelemento/public_html/admin.php on line 546

Warning: Trying to access array offset on null in /home/elquintoelemento/public_html/admin.php on line 546

Warning: Cannot modify header information - headers already sent by (output started at /home/elquintoelemento/public_html/admin.php:1) in /home/elquintoelemento/public_html/admin.php on line 188

Warning: Cannot modify header information - headers already sent by (output started at /home/elquintoelemento/public_html/admin.php:1) in /home/elquintoelemento/public_html/admin.php on line 189
/* Description: Simulate behavior of CVE-2025-32463 - sudo EoP via chroot. Possible future CTF challenge? :) gcc -Wall -o chwoot-demo chwoot-demo.c cp 4755 chwoot-demo mv chwoot-demo /usr/bin Then get a root shell as a low priv user */ #include #include #include #include #include int main() { chdir("/tmp/stage"); int saved_root = open("/",O_RDONLY); int saved_cwd = open(".",O_RDONLY); chroot("/tmp/stage"); chdir("/"); gethostbyname("woot"); fchdir(saved_root); chroot("."); fchdir(saved_cwd); getgrnam("got root?"); }