Examples (Legacy)
This document contains original command-line examples from earlier ProRT-IP versions.
Basic Scans (Phase 3)
Simple SYN Scan
# Original syntax
prtip --scan-type syn --target 192.168.1.1 --ports 1-1000
# Current equivalent
prtip -sS -p 1-1000 192.168.1.1
Connect Scan
# Original syntax
prtip --scan-type connect --target example.com --ports 80,443
# Current equivalent
prtip -sT -p 80,443 example.com
Phase 4 Examples
Zero-Copy Mode
# Enable zero-copy (automatic for large packets)
prtip -sS -p 1-65535 target --buffer-size 65536
PCAPNG Output
# Save to PCAPNG format
prtip -sS target -o scan.pcapng
Evasion Examples
# IP fragmentation
prtip -sS -f target
# Custom MTU
prtip -sS --mtu 24 target
# Decoy scanning
prtip -sS -D 10.0.0.1,10.0.0.2,ME target
Migration Notes
Changed Flags
| Old | New | Purpose |
|---|---|---|
--scan-type syn | -sS | SYN scan |
--scan-type connect | -sT | Connect scan |
--target | positional | Target specification |
--ports | -p | Port specification |
Deprecated Options
These options are no longer available:
--legacy-output- Use-oNinstead--no-color- SetNO_COLOR=1environment variable--quiet-mode- Use-qinstead
Current Documentation
For current examples, see: