-
Notifications
You must be signed in to change notification settings - Fork 127
/
Copy pathopenipcscan.sh
executable file
·96 lines (83 loc) · 1.93 KB
/
openipcscan.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
#! /bin/bash
TIME=30
#begin endless loop
while true;do
#set screen size variables from arguments
x=$1
y=$2
x2=x/2
y2=y/2
goodip=0
#determine local network number (e.g. 192.168.0.*) to scan for cameras
while [ "$goodip" -eq "0" ];do
#wait until non-169* address assigned by DHCP
printf "\033c" #clear screen
ip -o addr show | awk '/brd/ {print $6}' | sed 's/255/*/' > ~/nmapin.txt
echo "Local network:"
#cat ~/nmapin.txt
while IFS=, read ipa;do
echo $ipa
if [ ${ipa:0:3} != "169" ]
then
goodip=1
break
else
echo "Waiting for DHCP server to assign real IP address..."
sleep 10
fi
done < ~/nmapin.txt
done
#scan local network for rtsp cameras
echo "Searching for OpenIP/Fanghacks cameras:"
nmap -p80 -iL ~/nmapin.txt -oG - | awk '/open/ {print $2}' > ~/camlist.txt
camera=0
while IFS=, read ipaddress;do
echo $ipaddress >> ~/openipclist.txt
curl --max-time 3 -Is $ipaddress/cgi-bin/status | head -n1 >> ~/openipclist.txt
done < ~/camlist.txt
sed -i 's/200 OK/OpenIP Camera Found!/g' ~/openipclist.txt
cat ~/openipclist.txt | grep -B 1 "Open"
#determine number of cameras by reading camlist.txt
cameras=0
while IFS=, read cam;do
((cameras = cameras + 1))
done < ~/camlist.txt
COUNT=`wc -l ~/camlist.txt`
echo "Manage camera from http://ipaddress/cgi-bin/status"
echo "Restarting search in $TIME"
camera=0
while IFS=, read ipaddress;do
((camera = camera + 1))
a=0
b=0
c=0
d=0
if [ "$camera" -eq "1" ]; then
((c=x2))
((d=y2))
if [ "$cameras" -eq "1" ]; then
((c=x))
((d=y))
fi
fi
if [ "$camera" -eq "2" ]; then
((a=x2))
((c=x))
((d=y2))
fi
if [ "$camera" -eq "3" ]; then
((b=y2))
((c=x2))
((d=y))
fi
if [ "$camera" -eq "4" ]; then
((a=x2))
((b=y2))
((c=x))
((d=y))
fi
done < ~/camlist.txt
#repeat every 4 hours in case DHCP server gives cameras new IP addresses
sleep $TIME
rm ~/openipclist.txt
done