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

43 lines
957 B
YAML
Raw Normal View History

2021-04-30 15:54:53 +00:00
id: weblogic-t3-detect
info:
2022-09-20 07:43:50 +00:00
name: Weblogic T3 Protocol Detection
2021-07-06 18:02:14 +00:00
author: F1tz,milo2012,wdahlenb
2021-04-30 15:54:53 +00:00
severity: info
tags: network,weblogic
2022-08-16 16:23:54 +00:00
description: |
T3 is the protocol used to transport information between WebLogic servers and other types of Java programs.
2021-04-30 15:54:53 +00:00
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"