Increasing support for `HELP` reading across servers
parent
604f2ac96c
commit
e9e7ff62c7
|
@ -2,7 +2,7 @@ id: smtp-commands-enum
|
|||
|
||||
info:
|
||||
name: SMTP Commands Enumeration
|
||||
author: pussycat0x,userdehghani
|
||||
author: pussycat0x,userdehghani,AV-IO
|
||||
severity: info
|
||||
description: |
|
||||
Attempts to use EHLO and HELP to gather the Extended commands supported by an SMTP server.
|
||||
|
@ -15,10 +15,14 @@ info:
|
|||
tags: network,enum,smtp,mail,tcp
|
||||
tcp:
|
||||
- inputs:
|
||||
- data: ""
|
||||
read: 256
|
||||
- data: "EHLO x\r\n"
|
||||
read: 1024
|
||||
- data: "HELP\r\n"
|
||||
read: 1024
|
||||
read: 2048
|
||||
- data: "QUIT\r\n"
|
||||
read: 8
|
||||
|
||||
host:
|
||||
- "{{Hostname}}"
|
||||
|
@ -28,11 +32,9 @@ tcp:
|
|||
- type: word
|
||||
words:
|
||||
- "214"
|
||||
- "This server supports"
|
||||
condition: and
|
||||
|
||||
extractors:
|
||||
- type: regex
|
||||
regex:
|
||||
- '214 (.*)'
|
||||
- '214[\- ](.*)'
|
||||
# digest: 4a0a00473045022054b4221e3e3c486ef9992134338fb8b67f69ddda932dc69aa6854955ae0ac5ce022100af7395e6f3ff1bb6cba3fb14943a501b01a2124e4f57f1c294233490c2b57c35:922c64590222798bb761d5b6d8e72950
|
Loading…
Reference in New Issue