Update README.md

Added encodings to help :D
This commit is contained in:
Wild West Cybersecurity Solutions 2025-01-29 22:13:53 -08:00 committed by GitHub
parent eb6f407eeb
commit 32f3662e14
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -16,6 +16,39 @@ Required Arguments:
Optional Arguments:
-ueo URL Encode Output
-udi URL Decode Input
-info Show encoding guidelines
Encoding Guidelines for Various Environments:
Nginx, uWSGI-Django-Python3:
- Supported Encodings: IBM037, IBM500, cp875, IBM1026, IBM273
- Query string and body need to be encoded.
- URL-decoded parameters in query string and body.
- Equal sign and ampersand needed to be encoded as well (no URL encoding).
Nginx, uWSGI-Django-Python2:
- Supported Encodings: IBM037, IBM500, cp875, IBM1026, utf-16, utf-32, utf-32BE, IBM424
- Query string and body need to be encoded.
- URL-decoded parameters in query string and body afterward.
- Equal sign and ampersand should not be encoded in any way.
Apache-TOMCAT8-JVM1.8-JSP:
- Supported Encodings: IBM037, IBM500, IBM870, cp875, IBM1026, IBM01140-IBM01149, utf-16, utf-32, utf-32BE, IBM273-IBM285, IBM290, IBM297, IBM420, IBM424, IBM-Thai, IBM871, cp1025
- Query string in its original format (could be URL-encoded as usual).
- Body could be sent with/without URL encoding.
- Equal sign and ampersand should not be encoded in any way.
Apache-TOMCAT7-JVM1.6-JSP:
- Supported Encodings: Similar to Apache-TOMCAT8.
- Query string in its original format (could be URL-encoded as usual).
- Body could be sent with/without URL encoding.
- Equal sign and ampersand should not be encoded in any way.
IIS6, 7.5, 8, 10 - ASPX (v4.x):
- Supported Encodings: IBM037, IBM500, IBM870, cp875, IBM1026, IBM01047, IBM01140-IBM01149, utf-16, unicodeFFFE, utf-32, utf-32BE, IBM273-IBM285, IBM290, IBM297, IBM420, IBM423, IBM424, x-EBCDIC-KoreanExtended, IBM-Thai, IBM871, IBM880, IBM905, IBM00924, cp1025
- Query string in its original format (could be URL-encoded as usual).
- Body could be sent with/without URL encoding.
- Equal sign and ampersand should not be encoded in any way.
```
### Example Usage:
```