mirror of
https://github.com/carlospolop/hacktricks
synced 2024-11-15 01:17:36 +00:00
23 Yaml
This commit is contained in:
parent
3f06798973
commit
9aac04339d
1 changed files with 15 additions and 13 deletions
|
@ -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}
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in a new issue