> ## Documentation Index
> Fetch the complete documentation index at: https://notes.chairwoman.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Port Scanning

# nmap

<Tabs>
  <Tab title="Main Scan">
    ```shellscript theme={null}
    sudo nmap -sC -sV -A -p- [IP_HERE]
    ```
  </Tab>

  <Tab title="Ports-Only">
    ```shellscript theme={null}
    sudo nmap -sS -p- [IP_HERE]
    ```
  </Tab>

  <Tab title="UDP">
    ```shellscript theme={null}
    sudo nmap -sU -p- [IP_HERE]
    ```
  </Tab>

  <Tab title="SNMP">
    ```
    sudo nmap -sU -p161,162 [IP_HERE]
    ```
  </Tab>
</Tabs>

# rustscan

<Tabs>
  <Tab title="TCP">
    ```shellscript theme={null}
    rustscan -a [IP_HERE] --range 1-65535
    ```
  </Tab>

  <Tab title="UDP">
    ```shellscript theme={null}
    rustscan -a [IP_HERE] --range 1-65535 --udp
    ```
  </Tab>
</Tabs>
