-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitupdate.sh
More file actions
49 lines (37 loc) · 738 Bytes
/
Copy pathgitupdate.sh
File metadata and controls
49 lines (37 loc) · 738 Bytes
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
#!/bin/bash
# Simple script to update tools
# All tools are located in /opt
# Last updated : 20180910
LOG_LOCATION="/home/ashbyc"
LOG_FILE="gitupdate.log"
exec >> $LOG_LOCATION/gitupdate.log 2>&1
# Update apt2
cd /opt/apt2/
sudo git pull
# Update Autosploit
# cd /opt/Autosploit/
# sudo git pull
# Update credmap
cd /opt/credmap/
sudo git pull
# Update dnstwist
cd /opt/dnstwist/
sudo git pull
# Update domain_analyzer
cd /opt/domain_analyzer/
sudo git pull
# Update getsploit
cd /opt/getsploit/
sudo git pull
# Update Just-Metadata
cd /opt/Just-Metadata/
sudo git pull
# Update recon-ng
cd /opt/recon-ng/
sudo git pull
# Update theHarvester
cd /opt/theHarvester/
sudo git pull
# Update wig
cd /opt/wig/
sudo git pull