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:
|
||||
name: PbootCMS Detect
|
||||
author: princechaddha
|
||||
author: princechaddha,daffainfo
|
||||
severity: info
|
||||
reference:
|
||||
- https://www.pbootcms.com/
|
||||
metadata:
|
||||
verified: true
|
||||
shodan-query: http.html:"PbootCMS"
|
||||
tags: tech,pbootcms
|
||||
|
||||
requests:
|
||||
|
@ -11,12 +16,20 @@ requests:
|
|||
path:
|
||||
- "{{BaseURL}}"
|
||||
|
||||
matchers-condition: and
|
||||
matchers-condition: or
|
||||
matchers:
|
||||
- type: word
|
||||
part: body
|
||||
words:
|
||||
- 'content="PbootCMS'
|
||||
|
||||
- type: regex
|
||||
regex:
|
||||
- '<title>PbootCMS(.*)</title>'
|
||||
|
||||
- type: status
|
||||
status:
|
||||
- 200
|
||||
extractors:
|
||||
- type: regex
|
||||
part: body
|
||||
group: 1
|
||||
regex:
|
||||
- 'title="(.*)正式发布">'
|
||||
|
|
Loading…
Reference in New Issue