-
-
Save sharpicx/7a38866830e1d8dc7bad03611baa9140 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
- X-forwarded-for | |
- X-remote-IP | |
- X-originating-IP | |
- x-remote-addr | |
waf通常会有一个不拦截任意请求的白名单ip,上面的几个头可以用来伪造ip | |
如: | |
X-Forwarded-For: 127.0.0.1 | |
X-Remote-Ip: 127.0.0.1 | |
X-Originating-Ip: 127.0.0.1 | |
X-Remote-Addr: 127.0.0.1 | |
参考:http://www.securityaegis.com/bypassing-web-application-firewalls-using-http-headers/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment