Update php.md

FILE READ & FILE WRITE ADDED
This commit is contained in:
LinuxSploit 2021-04-11 04:55:59 -04:00 committed by Andrea Cardaci
parent 41d9312c53
commit 6ba729e1de

View File

@ -50,4 +50,12 @@ functions:
- code: | - code: |
CMD="/bin/sh" CMD="/bin/sh"
./php -r "posix_setuid(0); system('$CMD');" ./php -r "posix_setuid(0); system('$CMD');"
file-read:
- description: read file and output it on screen.
code: |
php -r 'readfile("/etc/passwd");'
file-write:
- description: write data to a file, filename should be absolute.
code: |
php -r '$write = fopen("/home/FILE-TO-WRITE.txt", "w");$input = " DATA TO WRITE (Plzsub) ";fwrite($write, $input);fclose($write);'
--- ---