-
Notifications
You must be signed in to change notification settings - Fork 129
/
rtspscan.sh
executable file
·85 lines (76 loc) · 1.59 KB
/
rtspscan.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
#! /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 RTSP cameras:"
nmap -p554 -iL ~/nmapin.txt -oG - | awk '/open/ {print $2}' > ~/camlist.txt
cat ~/camlist.txt
#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 "Found $COUNT RTSP Streams"
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
done