File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -201,6 +201,7 @@ The features below will be shipped in the next releases of the project.
201201
202202- Make ARP scans faster
203203 - with a per-host retry approach
204+ - add a back-off factor for retries
204205 - ~~ by closing the response thread faster~~ - released in 0.8.0
205206- ~~ Scan profiles (standard, attacker, light, ...)~~ - released in 0.10.0
206207- Complete VLAN support
@@ -213,8 +214,13 @@ The features below will be shipped in the next releases of the project.
213214- ~~ Partial results on SIGINT~~ - released in 0.11.0
214215- ~~ Read network targets from file~~ - released in 0.12.0
215216- Adding advanced packet options (padding, LLC, ...)
217+ - add padding bits after ARP payload
218+ - support RFC 1042 LLC framing with SNAP
216219- ~~ Enable bandwith control (exclusive with interval)~~ - released in 0.12.0
217220- Stronger profile defaults (chaos & stealth)
221+ - Other platforms (Windows, ...)
222+ - Read targets from * stdout*
223+ - Change verbose options (for debug, network details, quiet mode, ...)
218224- Avoid packet copy in userspace for faster scans (BPF filtering)
219225
220226## Contributing
Original file line number Diff line number Diff line change @@ -23,13 +23,16 @@ const CLI_VERSION: &str = env!("CARGO_PKG_VERSION");
2323
2424const EXAMPLES_HELP : & str = "EXAMPLES:
2525
26- List network interfaces
26+ # Launch a default scan with on the first working interface
27+ arp- scann
28+
29+ # List network interfaces
2730 arp-scan -l
2831
29- Launch a scan on WiFi interface with fake IP and stealth profile
32+ # Launch a scan on WiFi interface with fake IP and stealth profile
3033 arp-scan -i wlp1s0 --source-ip 192.168.0.42 --profile stealth
3134
32- Launch a scan on VLAN 45 with JSON output
35+ # Launch a scan on VLAN 45 with JSON output
3336 arp-scan -Q 45 -o json
3437
3538" ;
You can’t perform that action at this time.
0 commit comments