We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
在扫描ip端口时,发现会302跳转,但是gogo并没有跟随跳转并且title展示了[302] 302 Found
建议可配置参数来设置是否根据跳转,且结果展示时可以直观展示,如[+] http://1.1.1.1:80 nginx nginx [302] 302 Found -> real web title
The text was updated successfully, but these errors were encountered:
备注: 版本为2.13.6,302为http->https
Sorry, something went wrong.
这里有几个问题: 1、 //所有30x,400,以及非http协议的开放端口都送到http包尝试获取更多信息 if result.Status == "400" || result.Protocol == "tcp" || (strings.HasPrefix(result.Status, "3") && bytes.Contains(result.Content, []byte("location: https"))) { systemHttp(result, "https") 这里判断location: https太简单,因为可能是Location: https:// 2、func systemHttp(result *pkg.Result, scheme string) { // 如果是400或者不可识别协议,则使用https target := scheme + "://" + result.GetTarget() 这里会导致1.1.1.1:80变成https://1.1.1.1:80,建议获取location进行访问
No branches or pull requests
问题
在扫描ip端口时,发现会302跳转,但是gogo并没有跟随跳转并且title展示了[302] 302 Found
建议
建议可配置参数来设置是否根据跳转,且结果展示时可以直观展示,如[+] http://1.1.1.1:80 nginx nginx [302] 302 Found -> real web title
The text was updated successfully, but these errors were encountered: