File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ banner="$(cat ./ascii-art)"
1515
1616echo " $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"
You can’t perform that action at this time.
0 commit comments