forked from maldevel/PenTestKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
discover-live-hosts-icmp-echo.sh
executable file
·37 lines (33 loc) · 1.38 KB
/
discover-live-hosts-icmp-echo.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/bin/bash
# This file is part of PenTestKit
# Copyright (C) 2017-2018 @maldevel
# https://github.com/maldevel/PenTestKit
#
# PenTestKit - Useful tools for Penetration Testing.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# For more see the file 'LICENSE' for copying permission.
if [[ $EUID -ne 0 ]]; then
echo "For better results, please run this script as root." 1>&2
exit 1
fi
if [ $# -eq 1 ]; then
LOGNAME="icmp_echo_live_hosts_$1"
LOGNAME=$(echo "$LOGNAME" | sed -r 's/[/]+/_/g' | sed -r 's/[.]+/_/g')
LOGNAME2="$LOGNAME.txt"
nmap -vv -n -sn -PE -oA $LOGNAME $1 | grep 'report' | grep -v 'host down' | sed 's/Nmap scan report for //' | sort -u -n -t . -k 1,1 -k 2,2 -k 3,3 -k 4,4 | tee $LOGNAME2
else
echo "Please provide the target ip range."
fi