![]() |
2011-05-26
, 09:01
|
|
Posts: 1,411 |
Thanked: 1,330 times |
Joined on Jan 2010
@ Tatooine
|
#2
|
arp-scan is a command-line tool for system discovery and fingerprinting. It constructs and sends ARP requests to the specified IP addresses, and displays any responses that are received.
arp-scan allows you to:
Send ARP packets to any number of destination hosts, using a configurable output bandwidth or packet rate.
This is useful for system discovery, where you may need to scan large address spaces.
Construct the outgoing ARP packet in a flexible way.
arp-scan gives control of all of the fields in the ARP packet and the fields in the Ethernet frame header.
Decode and display any returned packets.
arp-scan will decode and display any received ARP packets and lookup the vendor using the MAC address.
Fingerprint IP hosts using the arp-fingerprint tool.
![]() |
2011-05-26
, 09:22
|
|
Posts: 302 |
Thanked: 193 times |
Joined on Oct 2008
@ England
|
#3
|
![]() |
2011-05-26
, 09:49
|
Posts: 458 |
Thanked: 783 times |
Joined on Jan 2010
@ France
|
#4
|
What makes this any better than scapy? I've never heard of tool. Anyone pitch in?
![]() |
2011-05-26
, 10:48
|
Posts: 1,042 |
Thanked: 430 times |
Joined on May 2010
|
#5
|
The Following User Says Thank You to Radicalz38 For This Useful Post: | ||
![]() |
2011-05-26
, 11:09
|
|
Posts: 302 |
Thanked: 193 times |
Joined on Oct 2008
@ England
|
#6
|
![]() |
2011-05-26
, 12:48
|
|
Posts: 549 |
Thanked: 299 times |
Joined on Jun 2010
@ Australian in the Philippines
|
#7
|
What makes this any better than scapy? I've never heard of tool. Anyone pitch in?
The Following 3 Users Say Thank You to dchky For This Useful Post: | ||
![]() |
2011-05-26
, 13:04
|
|
Posts: 302 |
Thanked: 193 times |
Joined on Oct 2008
@ England
|
#9
|
You've never heard of ARP? Seriously? The Address Resolution Protocol.
What makes it better? If an application is capable of sending exactly the same packets across the wire as another, then nothing makes one better than the other beyond ease of use or the underlying feature set.
Perhaps the ideology is dead these days, but the unix way was to have each tool do one thing only, and do that thing well.
arp-scan fits that particular philosophy I think.
Is scapy easier than the following?:
arp-scan --interface=wlan0 192.168.4.0/24
scapy is an entire packet creation/manipulation suite. If you don't know the differences, I'd hazard a guess that you need neither of these tools.
![]() |
2011-05-27
, 10:52
|
Posts: 47 |
Thanked: 27 times |
Joined on Apr 2011
|
#10
|
Nokia-N900:~# ifconfig wlan0
wlan0 Link encap:Ethernet HWaddr D8:75:33:56:E9:54
inet addr:192.168.11.2 Bcast:192.168.11.255 Mask:255.255.255.0
inet6 addr: fe80::da75:33ff:fe56:e954/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:593 errors:0 dropped:0 overruns:0 frame:0
TX packets:1130 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:411343 (401.7 KiB) TX bytes:117207 (114.4 KiB)
Nokia-N900:~# iwconfig wlan0
wlan0 IEEE 802.11bg ESSID:"shawwawa"
Mode:Managed Frequency:2.462 GHz Access Point: 00:07:40:76:CC:BB
Bit Rate=54 Mb/s Tx-Power=20 dBm
Retry min limit:7 RTS thr:off Fragment thr=2352 B
Encryption key:7368-6172-70 Security mode:open
Power Management:on
Link Quality=80/100 Signal level:-43 dBm Noise level=-88 dBm
Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
Tx excessive retries:0 Invalid misc:0 Missed beacon:0
Nokia-N900:~# arp-scan --interface=wlan0 --localnet
Interface: wlan0, datalink type: EN10MB (Ethernet)
Starting arp-scan 1.8 with 256 hosts ([url]http://www.nta-monitor.com/tools/arp-scan/[/url])
192.168.11.1 00:07:40:35:cd:30 Buffalo, Inc
192.168.11.5 00:1f:3c:85:f2:ed Intel Corporate
192.168.11.4 90:27:e4:c2:2e:d4 Apple
5 packets received by filter, 0 packets dropped by kernel
Ending arp-scan 1.8: 256 hosts scanned in 2.032 seconds (125.98 hosts/sec). 3 responded
The Following User Says Thank You to shawwawa For This Useful Post: | ||
Here is my first attempt to package the latest arp-scan utilities :
Edit the 25th July 2013 : Pushed version up to the latest (1.9-0maemo1) ...
Changelog :
Version 1.9-0maemo1
Arp scan :
ARP scanning and fingerprinting tool
Overview :
arp-scan is a command-line tool that uses the ARP protocol to discover and fingerprint IP hosts on the local network. It is available under the GPL licence (GPLv3).
Download packages from extra-devel :
Activate all repositories following this tutorial : http://thenokiablog.com/2009/10/27/m...-applications/
Then, as usual, as root, install with :
Hope you like it
A++
Last edited by colin.stephane; 2013-07-28 at 21:53. Reason: Modified to reflect the 0maemo2 version (optification ok now ...).