mirror of
https://github.com/carlospolop/hacktricks
synced 2024-11-15 01:17:36 +00:00
143 Yaml
This commit is contained in:
parent
3f06798973
commit
5e6986f80f
1 changed files with 14 additions and 13 deletions
|
@ -165,20 +165,21 @@ Protocol_Name: IMAP #Protocol Abbreviation if there is one.
|
|||
Port_Number: 143,993 #Comma separated if there is more than one.
|
||||
Protocol_Description: Internet Message Access Protocol #Protocol Abbreviation Spelled out
|
||||
|
||||
Name: Notes
|
||||
Description: Notes for WHOIS
|
||||
Note: """
|
||||
As its name implies, IMAP allows you to access your email messages wherever you are; much of the time, it is accessed via the Internet. Basically, email messages are stored on servers. Whenever you check your inbox, your email client contacts the server to connect you with your messages. When you read an email message using IMAP, you aren't actually downloading or storing it on your computer; instead, you are reading it off of the server. As a result, it's possible to check your email from several different devices without missing a thing.
|
||||
Entry_1:
|
||||
Name: Notes
|
||||
Description: Notes for WHOIS
|
||||
Note: |
|
||||
As its name implies, IMAP allows you to access your email messages wherever you are; much of the time, it is accessed via the Internet. Basically, email messages are stored on servers. Whenever you check your inbox, your email client contacts the server to connect you with your messages. When you read an email message using IMAP, you aren't actually downloading or storing it on your computer; instead, you are reading it off of the server. As a result, it's possible to check your email from several different devices without missing a thing.
|
||||
|
||||
https://book.hacktricks.xyz/pentesting/pentesting-imap
|
||||
"""
|
||||
https://book.hacktricks.xyz/pentesting/pentesting-imap
|
||||
|
||||
Name: Banner Grab
|
||||
Description: Banner Grab 143
|
||||
Command: """nc -nv {IP} 143"""
|
||||
Entry_2:
|
||||
Name: Banner Grab
|
||||
Description: Banner Grab 143
|
||||
Command: nc -nv {IP} 143
|
||||
|
||||
Name: Secure Banner Grab
|
||||
Description: Banner Grab 993
|
||||
Command: """openssl s_client -connect {IP}:993 -quiet"""
|
||||
Entry_3:
|
||||
Name: Secure Banner Grab
|
||||
Description: Banner Grab 993
|
||||
Command: openssl s_client -connect {IP}:993 -quiet
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in a new issue