and the rest of it...

This commit is contained in:
2024-12-11 13:03:15 -06:00
parent c2b1b821f7
commit f759149c11
26 changed files with 9767 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
#!/bin/bash
#A script to generate a comprehensive list of responsive hosts
OUTPUT_FILE="/tmp/network-scan"
for subnet in $(cat ../input/SubnetList); do
zmap -M icmp_echoscan -o $OUTPUT_FILE $subnet
done