This commit is contained in:
CoolHandSquid 2021-08-15 13:54:03 -04:00 committed by GitHub
parent 3f06798973
commit 9aac04339d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 15 additions and 13 deletions

View File

@ -46,21 +46,23 @@ Protocol_Name: Telnet #Protocol Abbreviation if there is one.
Port_Number: 23 #Comma separated if there is more than one.
Protocol_Description: Telnet #Protocol Abbreviation Spelled out
Name: Notes
Description: Notes for t=Telnet
Note: """
wireshark to hear creds being passed
tcp.port == 23 and ip.addr != myip
Entry_1:
Name: Notes
Description: Notes for t=Telnet
Note: |
wireshark to hear creds being passed
tcp.port == 23 and ip.addr != myip
https://book.hacktricks.xyz/pentesting/pentesting-telnet
"""
https://book.hacktricks.xyz/pentesting/pentesting-telnet
Name: Banner Grab
Description: Grab Telnet Banner
Command: """nc -vn {IP} 23
Entry_2:
Name: Banner Grab
Description: Grab Telnet Banner
Command: nc -vn {IP} 23
Name: Nmap with scripts
Description: Run nmap scripts for telnet
Command: """nmap -n -sV -Pn --script "*telnet*" -p 23 {IP}"""
Entry_3:
Name: Nmap with scripts
Description: Run nmap scripts for telnet
Command: nmap -n -sV -Pn --script "*telnet*" -p 23 {IP}
```