Merge pull request #5616 from daffainfo/patch-18
fix: false negative pbootcms-detect templatepatch-1
commit
b6843ef94c
|
@ -2,8 +2,13 @@ id: pbootcms-detect
|
||||||
|
|
||||||
info:
|
info:
|
||||||
name: PbootCMS Detect
|
name: PbootCMS Detect
|
||||||
author: princechaddha
|
author: princechaddha,daffainfo
|
||||||
severity: info
|
severity: info
|
||||||
|
reference:
|
||||||
|
- https://www.pbootcms.com/
|
||||||
|
metadata:
|
||||||
|
verified: true
|
||||||
|
shodan-query: http.html:"PbootCMS"
|
||||||
tags: tech,pbootcms
|
tags: tech,pbootcms
|
||||||
|
|
||||||
requests:
|
requests:
|
||||||
|
@ -11,12 +16,20 @@ requests:
|
||||||
path:
|
path:
|
||||||
- "{{BaseURL}}"
|
- "{{BaseURL}}"
|
||||||
|
|
||||||
matchers-condition: and
|
matchers-condition: or
|
||||||
matchers:
|
matchers:
|
||||||
|
- type: word
|
||||||
|
part: body
|
||||||
|
words:
|
||||||
|
- 'content="PbootCMS'
|
||||||
|
|
||||||
- type: regex
|
- type: regex
|
||||||
regex:
|
regex:
|
||||||
- '<title>PbootCMS(.*)</title>'
|
- '<title>PbootCMS(.*)</title>'
|
||||||
|
|
||||||
- type: status
|
extractors:
|
||||||
status:
|
- type: regex
|
||||||
- 200
|
part: body
|
||||||
|
group: 1
|
||||||
|
regex:
|
||||||
|
- 'title="(.*)正式发布">'
|
||||||
|
|
Loading…
Reference in New Issue