Files
MacOS-DuckyScripts/Executions/Network Reconnaissance.txt
T
Narsty e243980a8a Add files via upload
Please note that running security scanning or testing on systems without proper authorization is against ethical guidelines. 
Make sure you have permission to perform any security testing activities and comply with applicable laws and regulations.
2023-05-15 21:14:23 -05:00

45 lines
1007 B
Plaintext

REM Use responsibly and with proper permissions.
REM This script initiates a network reconnaissance by scanning for live hosts,
REM performing a port scan on live hosts,
REM Author: Narsty
REM Title: Network Reconnaissance
REM Target: MacOS
REM Version: 1.0
REM Category: Execution
REM Replace (15.151.298.31) with your targets I.P. address
REM can insert multiple I.p.'s if needed
DELAY 500
GUI SPACE
DELAY 500
STRING terminal
DELAY 500
ENTER
DELAY 1000
STRING echo "Network Reconnaissance:"
STRING && echo "------------------------------"
STRING && echo "Scan Date: $(date)"
STRING && echo "------------------------------"
STRING && echo "Scanning for Live Hosts..."
STRING && echo "------------------------------"
STRING && ping -c 3 15.151.298.31
STRING && ping -c 3 15.151.298.31
REM Add more IP addresses to ping as needed
STRING && echo "------------------------------"
STRING && echo "Performing ARP Scan..."
STRING && echo "------------------------------"
STRING && arp -a
ENTER