Service Scanning

chevron-rightBasic nmap Scanhashtag
  • Description: Perform a basic nmap scan on a specified IP.

  • Command:

    nmap 10.129.42.253
chevron-rightNmap Default Script-Scanhashtag
  • Description: Run an nmap scan that includes version detection (-sV), the default set of scripts (-sC), and scans all ports (-p-).

  • Command:

    nmap -sV -sC -p- 10.129.42.253
chevron-rightList Available nmap Scriptshashtag
  • Description: Locate available nmap scripts related to Citrix.

  • Command:

    locate scripts/citrix
chevron-rightRun an nmap Script on an IPhashtag
  • Execute the smb-os-discovery.nse nmap script on an IP, targeting port 445.

Command:

nmap --script smb-os-discovery.nse -p445 10.10.10.40
chevron-rightList SMB Actionshashtag
  • Description: Use smbclient to list SMB actions available on the target IP.

  • Command:

    smbclient -N -L \\10.129.42.253
chevron-rightConnect to an SMB Sharehashtag
  • Description: Connect to a specific SMB share (named users) on the target IP.

  • Command:

chevron-rightScan SNMP on an IPhashtag
  • Description: Use snmpwalk to scan SNMP on the target IP for a specific OID (1.3.6.1.2.1.1.5.0), which typically returns the system name.

  • Command:

chevron-rightBrute-force SNMP Secret Stringhashtag
  • Description: Attempt to brute-force the SNMP community string using onesixtyone with a provided dictionary file (dict.txt).

  • Command:

Last updated