This commit is contained in:
CoolHandSquid 2021-08-12 09:23:35 -04:00 committed by GitHub
parent e1cdfc3cdc
commit 01c7d744c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -81,3 +81,31 @@ root@kali:~# telnet $ip 110
password: PA$$W0RD!Z
```
## HackTricks Automatic Commands
```
Protocol_Name: POP #Protocol Abbreviation if there is one.
Port_Number: 110 #Comma separated if there is more than one.
Protocol_Description: Post Office Protocol #Protocol Abbreviation Spelled out
Name: Notes
Description: Notes for POP
Note: """
Post Office Protocol (POP) is a type of computer networking and Internet standard protocol that extracts and retrieves email from a remote mail server for access by the host machine. POP is an application layer protocol in the OSI model that provides end users the ability to fetch and receive email (from here).
The POP clients generally connect, retrieve all messages, store them on the client system, and delete them from the server. There are 3 versions of POP, but POP3 is the most used one.
https://book.hacktricks.xyz/pentesting/pentesting-whois
"""
Name: Banner Grab
Description: Banner Grab 110
Command: """nc -nv {IP} 110"""
Name: Banner Grab 995
Description: Grab Banner Secure
Command: openssl s_client -connect {IP}:995 -crlf -quiet
Name: Nmap
Description: Scan for POP info
Command: nmap --scripts "pop3-capabilities or pop3-ntlm-info" -sV -port 110 {IP}
```