41 lines
938 B
YAML
41 lines
938 B
YAML
id: vbulletin-detect
|
|
|
|
info:
|
|
name: vBulletin Detect
|
|
author: ricardomaia
|
|
severity: info
|
|
description: vBulletin is a proprietary forum and community publishing software written in PHP.
|
|
reference:
|
|
- https://www.vbulletin.com/
|
|
metadata:
|
|
verified: true
|
|
shodan-query: title:"Powered By vBulletin"
|
|
google-dork: intext:"Powered By vBulletin"
|
|
tags: tech,vbulletin
|
|
|
|
requests:
|
|
- method: GET
|
|
path:
|
|
- "{{BaseURL}}"
|
|
|
|
host-redirects: true
|
|
max-redirects: 2
|
|
matchers:
|
|
- type: word
|
|
part: body
|
|
words:
|
|
- "Powered By vBulletin"
|
|
- 'content="vBulletin'
|
|
- 'id="vbulletin_css'
|
|
condition: or
|
|
case-insensitive: true
|
|
|
|
extractors:
|
|
- type: regex
|
|
name: version
|
|
part: body
|
|
group: 1
|
|
regex:
|
|
- '(?i)meta.name=.generator.*content=.vbulletin.([\d.|\d]+)'
|
|
- '(?i)\*.vBulletin.([\d.|\d]+).CSS'
|