Skip to content

Commit 6655e9b

Browse files
author
jul10l14
committed
🎉 Dependencies install for osint tools
1 parent c3562d9 commit 6655e9b

1 file changed

Lines changed: 15 additions & 3 deletions

File tree

install-osint.sh

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ banner="$(cat ./ascii-art)"
1515

1616
echo "$banner" | while read line
1717
do
18-
printf "$red$line$end\r"
18+
printf "$yellow$line$end\r"
1919
sleep 0.01
2020
echo -e "\e[38;5;202;1m$line$end"
2121
done
@@ -31,6 +31,18 @@ _install_git(){
3131
echo -e "Run: $orange$run$end"
3232
eval "$run" && echo -e "$correct Installed(s): $1" || echo -e "$incorrect Error in install of: $1"
3333
}
34+
_run(){
35+
echo -e "Run: $orange$1$end"
36+
eval "$1" && echo -e "$correct $1" || echo -e "$incorrect $1"
37+
}
3438

35-
_install_git 'https://github.com/graniet/operative-framework.git'
36-
_install_pip 'pagodo osrframework'
39+
# Operative-framework
40+
_run 'go get github.com/graniet/operative-framework'
41+
# Install D4N155
42+
_install_git 'https://github.com/OWASP/D4N155.git'
43+
_install_pip '-r D4N155/requirements.txt'
44+
# Install sherlock
45+
_install_git 'https://github.com/sherlock-project/sherlock.git'
46+
_install_pip '-r sherlock/requirements.txt'
47+
# Install osrframework
48+
_run "$(ls -v /usr/local/bin/pip2* | head -n1 || printf 'pip') install osrframework --user"

0 commit comments

Comments
 (0)