fscan icon indicating copy to clipboard operation
fscan copied to clipboard

不能支持最新的xray的poc语法,请求支持兼容的nuclei和最新版xray的poc语法

Open Zer08Bytes opened this issue 1 year ago • 0 comments

比如最新版的是: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 还是不行 图片 虽然不报错,但是检测不出来

Zer08Bytes avatar Aug 29 '24 04:08 Zer08Bytes