Created
March 23, 2020 06:29
-
-
Save kiknaio/e03d0adcc613a81774bf1abdebbb5eeb to your computer and use it in GitHub Desktop.
Ping sweep with bash
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
for i in {1..254} ;do (ping -c 1 192.168.1.$i | grep "bytes from" &) ;done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This script will log all the active devices under provided network range.