25 tcp - SMTP
STMP username enum (smtp-user-enum)
smtp-user-enum -M VRFY -U /usr/share/seclists/Usernames/Names/names.txt -t 10.10.10.17
Nmap username enum
nmap --script smtp-enum-users 10.10.10.51 -p25
Telnet SMTP - send mail
telnet 10.10.10.17 110
#login
user orestis
pass 1234656
#list messages
list
#read message number
retr 1
#To send email using STMP for LFI /var/mail/ValidUserHere
EHLO hacker.anything.com
mail from:hacker@doesnt.matter
rcpt to:ValidVictim@Mail
data
Subject: email title
<your LFI code here>
<new blank line>
VRFY USER
VRFY SCRIPT (Python)
Last updated
Was this helpful?