1
+ #! /bin/bash
2
+
3
+ if [[ $EUID -ne 0 ]]; then
4
+ echo " This script must be run as root(!)"
5
+ exit 1
6
+ fi
7
+
8
+ MAIN_PATH=" /opt/exploit-db-notify"
9
+ LOCAL_BIN=" /usr/local/bin"
10
+
11
+ function _dlResources() {
12
+ echo " Create main directory..."
13
+ mkdir -p $MAIN_PATH
14
+ echo " Downloading notify-send.sh..."
15
+ wget -q " https://github.com/vlevit/notify-send.sh/raw/master/notify-send.sh" -O $LOCAL_BIN /notify-send
16
+ wget -q " https://github.com/vlevit/notify-send.sh/raw/master/notify-action.sh" -O $LOCAL_BIN /notify-action.sh
17
+ chmod 777 $LOCAL_BIN /notify-*
18
+ cp -a assets/ $MAIN_PATH
19
+ cp exploit-db-notify.sh $MAIN_PATH /exploit-db-notify
20
+ chmod -R +x $MAIN_PATH /
21
+ }
22
+
23
+ function _dependencies() {
24
+ if ! [ -x " $( which jq) " ]; then
25
+ JQ_OUT=" /usr/local/bin/jq"
26
+ echo " Downloading jq..."
27
+ wget -q " https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux$( getconf LONG_BIT) " -O $JQ_OUT
28
+ chmod 777 $JQ_OUT
29
+ else
30
+ echo " jq OK!"
31
+ fi
32
+
33
+ if ! [ -x " $( which curl) " ]; then
34
+ echo " Downloading cURL..."
35
+ wget -q " https://curl.haxx.se/download/curl-7.68.0.tar.gz" -O /tmp/
36
+ tar -xf /tmp/curl-7* && cd /tmp/curl-7*
37
+ echo " Installing cURL..."
38
+ /./$PWD /configure && make && make install
39
+ else
40
+ echo " curl OK!"
41
+ fi
42
+ }
43
+
44
+ function _setCrontab() {
45
+ CRON_CURRENT=" /tmp/cron.current"
46
+ crontab -l > $CRON_CURRENT
47
+ echo " 0 */3 * * * $MAIN_PATH /exploit-db-notify" >> $CRON_CURRENT
48
+ echo " Installing new crontab"
49
+ crontab $CRON_CURRENT
50
+ }
51
+
52
+ echo " ##### Installing resources #####"
53
+ _dlResources
54
+ echo " ##### Installing dependencies #####"
55
+ _dependencies
56
+ # echo "##### Setting up crontab #####"
57
+ # #_setCrontab # run this as user
0 commit comments