33 lines
527 B
YAML
33 lines
527 B
YAML
id: jboss-detect
|
|
|
|
info:
|
|
name: JBoss detected
|
|
author: daffainfo,idealphase
|
|
severity: info
|
|
tags: tech,jboss
|
|
metadata:
|
|
max-request: 1
|
|
|
|
http:
|
|
- method: GET
|
|
path:
|
|
- "{{BaseURL}}"
|
|
|
|
matchers:
|
|
- type: word
|
|
part: body
|
|
words:
|
|
- "JBoss EAP 7"
|
|
|
|
- type: regex
|
|
part: body
|
|
regex:
|
|
- '<title>Welcome to JBoss(.*)</title>'
|
|
|
|
extractors:
|
|
- type: regex
|
|
group: 1
|
|
part: body
|
|
regex:
|
|
- '<h1>Welcome to (.+)<\/h1>'
|