IMAP/POP3 - 110,143,993,995

IMAP / POP3 Nedir

IMAP ve Pop3 sunucudan eposta alımını sağlayan protokollerdir.

  • POP3 maillari localde saklar

  • IMAP mailleri sunucuda saklar

nmap -sV -sC -p 110,143,993,995 192.168.1.3
curl -k 'imaps://192.168.1.3' --user username:password -v

openssl s_client -connect 192.168.1.3:pop3s
openssl s_client -connect 192.168.1.3:imaps
# POP3/IMAP GUI Client
evolution

# Daha Modern
thunderbird

IMAP Komutları


1 LOGIN username password	#User's login.
1 LIST "" *	#Lists all directories.
1 CREATE "INBOX"	#Creates a mailbox with a specified name.
1 DELETE "INBOX"	#Deletes a mailbox.
1 RENAME "ToRead" "Important"	#Renames a mailbox.
1 LSUB "" *	#Returns a subset of names from the set of names that the User has declared as being active or subscribed.
1 SELECT INBOX	#Selects a mailbox so that messages in the mailbox can be accessed.
1 UNSELECT INBOX	#Exits the selected mailbox.
1 FETCH 1 all	#Retrieves data associated with a message in the mailbox.
1 FETCH 1 body.peek[]
1 CLOSE	Removes #all messages with the Deleted flag set.
1 LOGOUT	#Closes the connection with the IMAP server.

Pop3 Komutları

Last updated