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
比如最新版的是:expression: response.status == 200 && response.body_string.contains("abc") 需要改成response.status == 200 && response.body.bcontains(b'abc')
还有延时也不支持:比如response.latency > 5000
还有格式也需要在原版上修改: 最新的xray的poc格式:
所以最后fscan的格式是: 能否兼容呢? 实在不兼容,能不能把延时注入的条件response.latency > 5000这个加进去,上面的poc字段改改还好,这个response.latency > 5000没法处理
改成response.duration >=5.0 还是不行 虽然不报错,但是检测不出来
The text was updated successfully, but these errors were encountered:
No branches or pull requests
比如最新版的是:expression: response.status == 200 && response.body_string.contains("abc") 需要改成response.status == 200 && response.body.bcontains(b'abc')
还有延时也不支持:比如response.latency > 5000
还有格式也需要在原版上修改:
最新的xray的poc格式:
所以最后fscan的格式是:
能否兼容呢?
实在不兼容,能不能把延时注入的条件response.latency > 5000这个加进去,上面的poc字段改改还好,这个response.latency > 5000没法处理
改成response.duration >=5.0 还是不行
虽然不报错,但是检测不出来
The text was updated successfully, but these errors were encountered: