ilusm.dev

scan

network scanning, service detection, OS fingerprinting.

Load with: use scan

Quick example

use scan

result = scant("value", 8080, 10)
prn(result)

Functions

TCP SYN scan (stealth)

scant(host, port, timeout_ms)

Performs the operation. Takes host, port, timeout_ms.

scant(host, start_port, end_port, timeout_ms)

Performs the operation. Takes host, start_port, end_port, timeout_ms.

TCP connect scan

scant(host, port, timeout_ms)

Performs the operation. Takes host, port, timeout_ms.

scant(host, start_port, end_port, timeout_ms)

Performs the operation. Takes host, start_port, end_port, timeout_ms.

UDP scan

scanu(host, port, timeout_ms)

Performs the operation. Takes host, port, timeout_ms.

scanu(host, start_port, end_port, timeout_ms)

Performs the operation. Takes host, start_port, end_port, timeout_ms.

Banner grabbing

scanb(host, port, timeout_ms)

Performs the operation. Takes host, port, timeout_ms.

scanb(host, port)

Performs the operation. Takes host, port.

scanb(host, port)

Performs the operation. Takes host, port.

Service fingerprinting

scans(host, port)

Performs the operation. Takes host, port.

scans(banner)

Performs the operation. Takes banner.

OS fingerprinting

scano(host)

Performs the operation. Takes host.

scano(ttl, window)

Performs the operation. Takes ttl, window.

ICMP ping

scanp(host, timeout_ms)

Performs the operation. Takes host, timeout_ms.

scanp(hosts, timeout_ms)

Performs the operation. Takes hosts, timeout_ms.

ARP scan (local network)

scana(target)

Performs the operation. Takes target.

scana(subnet)

Performs the operation. Takes subnet.

Full port scan

scanf(host, timeout_ms)

Performs the operation. Takes host, timeout_ms.

Scan report

scanr(host)

Performs the operation. Takes host.

Notes

  • Network scanning. Use only on systems you own.