2023-05-05 13:26:49 +00:00
|
|
|
id: smtp-commands-enum
|
|
|
|
|
|
|
|
info:
|
|
|
|
name: SMTP Commands Enumeration
|
2024-11-03 03:41:47 +00:00
|
|
|
author: pussycat0x,userdehghani,AV-IO
|
2023-05-05 13:26:49 +00:00
|
|
|
severity: info
|
|
|
|
description: |
|
|
|
|
Attempts to use EHLO and HELP to gather the Extended commands supported by an SMTP server.
|
|
|
|
reference:
|
|
|
|
- https://nmap.org/nsedoc/scripts/smtp-commands.html
|
|
|
|
metadata:
|
2024-04-08 11:34:33 +00:00
|
|
|
verified: true
|
2024-06-07 10:04:29 +00:00
|
|
|
max-request: 1
|
|
|
|
shodan-query: smtp
|
|
|
|
tags: network,enum,smtp,mail,tcp
|
2023-05-05 13:26:49 +00:00
|
|
|
tcp:
|
|
|
|
- inputs:
|
2024-11-03 03:41:47 +00:00
|
|
|
- data: ""
|
|
|
|
read: 256
|
2023-05-05 13:26:49 +00:00
|
|
|
- data: "EHLO x\r\n"
|
|
|
|
read: 1024
|
|
|
|
- data: "HELP\r\n"
|
2024-11-03 03:41:47 +00:00
|
|
|
read: 2048
|
|
|
|
- data: "QUIT\r\n"
|
|
|
|
read: 8
|
2023-05-05 13:26:49 +00:00
|
|
|
|
|
|
|
host:
|
|
|
|
- "{{Hostname}}"
|
2024-05-26 20:12:47 +00:00
|
|
|
port: 25,2525,465,587
|
2023-05-05 13:26:49 +00:00
|
|
|
|
|
|
|
matchers:
|
|
|
|
- type: word
|
|
|
|
words:
|
|
|
|
- "214"
|
|
|
|
|
|
|
|
extractors:
|
|
|
|
- type: regex
|
|
|
|
regex:
|
2024-11-03 03:41:47 +00:00
|
|
|
- '214[\- ](.*)'
|
2024-06-08 16:02:17 +00:00
|
|
|
# digest: 4a0a00473045022054b4221e3e3c486ef9992134338fb8b67f69ddda932dc69aa6854955ae0ac5ce022100af7395e6f3ff1bb6cba3fb14943a501b01a2124e4f57f1c294233490c2b57c35:922c64590222798bb761d5b6d8e72950
|