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
第一次检测目标请求包如下,可正常识别框架:
GET /salary/login HTTP/1.1 Cookie: rememberMe=yes Accept: text/html,application/json,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36 Hutool Accept-Encoding: gzip, deflate Accept-Language: zh-CN,zh;q=0.8 Host: xxxx.cn Connection: close
第二次检测目标请求包如下,无法识别出框架:
GET /salary/login HTTP/1.1 Cookie: rememberMe=yes Accept: text/html,application/json,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36 Hutool Accept-Encoding: gzip, deflate Accept-Language: zh-CN,zh;q=0.8 Cookie: BIGipServerj98Jz77D1botFNwi19B7uQ=!PDqHcpQNxeQIvO/ZCZ9QxSHa8ugO20c5xec/V4fjR2zJKhjd49+Ftq36DuwH7pYKAx0/18QR7AaGzrQ= Cookie: shiroCookie=0069220b-14c6-48e8-b497-1ae5fb8084d3 Host: xxx.cn Connection: close
分析得出 程序构造请求包时未将两个cookie合并到一起,导致第一个关键cookie值被覆盖,服务器无法接收到rememberMe=yes,望修复
rememberMe=yes
The text was updated successfully, but these errors were encountered:
啥意思?第二次检测目标?
Sorry, something went wrong.
第一次点击【检测当前密钥】能识别出目标框架时shiro,然后再次点击就识别不出来了,分析两次的数据包发现,第二次点击的时候请求头有3个cookie值,而服务器没有获取到第一个“Cookie: rememberMe=yes”,导致返回的响应包中不包含 rememberMe字段了,希望程序发送请求的时候能够处理一下这个cookie值的参数,使3个cookie合并到一个当中
No branches or pull requests
第一次检测目标请求包如下,可正常识别框架:
第二次检测目标请求包如下,无法识别出框架:
分析得出 程序构造请求包时未将两个cookie合并到一起,导致第一个关键cookie值被覆盖,服务器无法接收到
rememberMe=yes
,望修复The text was updated successfully, but these errors were encountered: