-
Notifications
You must be signed in to change notification settings - Fork 170
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
转发Bug get请求变成post请求 #10
Comments
同样遇到一样的问题,在插件里面显示是GET请求,然后服务器返回405 Methon Not Allow,然后在xray里面观察了一下,原本的GET请求到Xray里面成了POST请求 |
原GET请求 |
插件转发出的请求
|
试试这个吧https://xray.cool/xray/#/scenario/burp,用burp原生的上游代理,passive-scan-client确实有时候有bug。 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
复现xray ssrf的时候发现的问题 具体步骤如下
1.搭建ssrf漏洞页面
https://github.com/virusdefender/ssrf-app
2.运行xray 运行passive scan client
147.28是我本机机器
71.247是公网机器
3.大致请求如下
本机访问ssrf漏洞页面
http://..71.247:8000/?url=http://www.baidu.com
如下
147.138 - - [15/Oct/2019 09:13:39] "GET /?url=http://www.baidu.com HTTP/1.1" 200 -
到xray变成
71.247 - - [15/Oct/2019 09:13:40] "POST /?url=http://www.baidu.com HTTP/1.1" 405 -
get请求变成post请求 导致发现不了该ssrf漏洞。
The text was updated successfully, but these errors were encountered: