Add files via upload

Nmap Ping Sweep with Output to txt
This commit is contained in:
Heretic 2025-10-29 10:50:31 -05:00 committed by GitHub
parent b0795c9d84
commit 6810cff3fb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

10
linux/nmap_ping_sweep.sh Normal file
View File

@ -0,0 +1,10 @@
#!/bin/bash
# Continuous Internal IP Scanning Script (schedule with Cron and Diff results)
# Author: Victor Bishop (Heretic312)
# Date: 10/29/2025
# nmap -sn = "ping sweep" -oG = "Output to file.txt"
# Modify subnet="" to match your network
subnet=""
timestamp=$(date +%F_%H-%M)
nmap -sn $subnet -oG "internal_ips_$timestamp.txt"