ðŸŦĨ
OSCP Port Scanning
  • ðŸĪŊOSCP Port Scanning
  • 😍About us
  • 😇Enumeration
  • ðŸĪĐPort 21 (FTP)
  • 😜Port 22 (SSH)
  • 😆Port 23 (TELNET)
  • 😆Port 53 (DNS)
  • 🙃Port 79 (FINGER)
  • 😋Port 80-443 (http / https)
  • 😆Port 88 (KERBEROS )
  • ðŸĨđPort 110-25-143 (pop3/smtp)
  • ðŸĨđPort 161-169 (SNMP)
  • 🙃Port 389 (LDAP)
  • ðŸĨļPort 138-139-445 (SMB/netbios)
  • ðŸŦĒPort 1433 (MSSQL)
  • 😎Port 111-2049 (RPC/NFS)
  • 😛Port 3306 (MYSQL)
  • 😛Port 5432 (PostgreSQL)
  • 😛Port 12017-27018 (MONGODB)
  • ðŸĨģPort 3389 (RDP)
  • ðŸĪŠPort 5800 - 58001 - 5900 - 5901 (VNC)
  • 😋Port 5985 - 5986 (WINRM)
  • 😋Port Knocking
  • 😍Compiling exploits
  • ðŸĨ°Thankyou
Powered by GitBook
On this page

ðŸĪĐPort 21 (FTP)

File transfer protocol (ftp)

Brute force

hydra -V -f -L <USERS_LIST> -P <PASSWORDS_LIST> ftp://<IP> 

Downloading file

ftp <IP>
PASSIVE
BINARY
get <FILE>

Uploading file

ftp <IP>
PASSIVE
BINARY
put <FILE>

PreviousEnumerationNextPort 22 (SSH)

Last updated 1 year ago