nuclei-templates/network/weblogic-t3-detect.yaml

42 lines
866 B
YAML
Raw Normal View History

2021-04-30 15:54:53 +00:00
id: weblogic-t3-detect
info:
name: Detect Weblogic T3 Protocol
2021-07-06 18:02:14 +00:00
author: F1tz,milo2012,wdahlenb
2021-04-30 15:54:53 +00:00
severity: info
description: Check T3 protocol status.
tags: network,weblogic
network:
- inputs:
2021-04-30 16:04:18 +00:00
- data: "t3 12.2.1\nAS:255\nHL:19\nMS:10000000\nPU:t3://us-l-breens:7001\n\n"
2021-04-30 15:54:53 +00:00
host:
- "{{Hostname}}"
2021-04-30 16:04:18 +00:00
read-size: 1024
2021-04-30 15:54:53 +00:00
matchers:
- type: word
words:
2021-06-24 16:43:10 +00:00
- "HELO"
2021-07-06 18:02:14 +00:00
extractors:
- type: regex
part: body
group: 1
regex:
- "HELO:(.*).false"
2021-06-24 16:43:10 +00:00
2021-07-06 18:02:14 +00:00
- inputs:
- data: "t3s 12.2.1\nAS:255\nHL:19\nMS:10000000\nPU:t3://us-l-breens:7001\n\n"
host:
- "tls://{{Hostname}}"
read-size: 1024
matchers:
- type: word
words:
- "HELO"
2021-06-24 16:43:10 +00:00
extractors:
- type: regex
part: body
group: 1
regex:
2021-07-06 18:02:14 +00:00
- "HELO:(.*).false"