MS-2855/keylogger-mettle-extension
Vishal Gupta 2017-12-28 18:21:55 -05:00
parent 2672550c62
commit 1a7850bd51
2 changed files with 4 additions and 18 deletions

View File

@ -1,6 +1,6 @@
## Description
This auxiliary module probes the local network for IPv6 hosts that respond to Neighbor Solicitations with a link-local address. This module, like the arp_sweep one, will generally only work within the attacking machines broadcast domain.
This auxiliary module probes the local network for IPv6 hosts that respond to Neighbor Solicitations with a link-local address. This module, like the arp_sweep one, will generally only work within the attacking machines broadcast domain. It serves the dual-purpose of showing what hosts are online similar to arp_sweep and then performs the IPv6 Neighbor Discovery.
## Verification Steps
@ -64,6 +64,4 @@ msf auxiliary(ipv6_neighbor) > run
[*] Scanned 253 of 253 hosts (100% complete)
[*] Auxiliary module execution completed
msf auxiliary(ipv6_neighbor) >
```
Looking at the module output, you can see that this scanner serves the dual-purpose of showing what hosts are online similar to arp_sweep and then performs the IPv6 Neighbor Discovery.
```

View File

@ -1,6 +1,6 @@
## Description
The “udp_sweep” module scans across a given range of hosts to detect commonly available UDP services.
The `udp_sweep` module scans across a given range of hosts to detect commonly available UDP services.
## Verification Steps
@ -16,16 +16,6 @@ To configure this module, just set the RHOSTS and THREADS values and run it.
**Running the scanner**
```
msf > use auxiliary/scanner/discovery/udp_sweep
msf auxiliary(udp_sweep) > show options
Module options (auxiliary/scanner/discovery/udp_sweep):
Name Current Setting Required Description
---- --------------- -------- -----------
BATCHSIZE 256 yes The number of hosts to probe in each set
RHOSTS yes The target address range or CIDR identifier
THREADS 10 yes The number of concurrent threads
msf auxiliary(udp_sweep) > set RHOSTS 192.168.1.2-254
RHOSTS => 192.168.1.2-254
msf auxiliary(udp_sweep) > set THREADS 253
@ -52,6 +42,4 @@ msf auxiliary(udp_sweep) > run
[*] Scanned 253 of 253 hosts (100% complete)
[*] Auxiliary module execution completed
msf auxiliary(udp_sweep) >
```
With minimal effort, we have once again identified a wide range of services running on many different platforms within our network.
```