syn.scan
A module to perform SYN port scanning.
Open ports populate the tcp-ports meta field of endpoints.
View them with net.show when net.show.meta is true.
Commands
Section titled “Commands”syn.scan IP-RANGE START-PORT END-PORT?
Section titled “syn.scan IP-RANGE START-PORT END-PORT?”Perform a syn port scanning against an IP address within the provided ports range.
syn.scan stop
Section titled “syn.scan stop”Stop the current syn scanning session.
syn.scan.progress
Section titled “syn.scan.progress”Print progress of the current syn scanning session.
Parameters
Section titled “Parameters”| Parameter | Default | Description |
|---|---|---|
syn.scan.show-progress-every | 1 | Period in seconds for the scanning progress reporting. |
Examples
Section titled “Examples”Scan a single ip for ports 1 to 1000:
syn.scan 192.168.1.3 1 1000Scan several addresses for port 22:
syn.scan 192.168.1.1-50 22Scan the entire subnet for ports 1 to 10000:
syn.scan 192.168.1.0/24 1 10000