[Services] General Services
SSH connect
Basic connect
ssh root@192.168.1.1Connect with port
ssh root@192.168.1.1 -p 8082Connect with .pem key
ssh -i someKey.pem ubuntu@192.168.1.1DNS
nslookup
To check the regarding domain ip actual address
Basic usage
nslookup google.comOther DNS
- Using dns
8.8.8.8to checkgoogle.comip
nslookup google.com 8.8.8.8dig
To check the regarding domain ip actual address, but more details
Basic usage
dig google.comOther DNS
- Using dns
8.8.8.8to checkgoogle.comip
dig google.com @8.8.8.8Reverse DNS checking
- Using dns
8.8.8.8to checkgoogle.comip
dig -x 172.217.24.78dnsenum
Enumerate DNS information of a domain and to discover non-contiguous ip blocks.
dnsenum google.comLinux DNS /etc/hosts
Something may add the ip and domain name for access in etc/hosts
103.43.132.43 hello.ioFTP
Login
ftp 1.1.1.1Download stuff
get <file_name>
get hello.txtSMB (Server Message Block)
Dum login
smb -L //1.1.1.1/ -U " "Download stuff
get <file_name>
get hello.txttelnet
To connect to a windows server, using telnet
Login
telnet 1.1.1.1The default username is root
Last updated on