forked from 1N3/BlackWidow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.sh
executable file
·40 lines (35 loc) · 1.32 KB
/
install.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
#!/usr/bin/env bash
# Install script for blackwidow & injectx fuzzer
# Crated by @xer0dayz - https://xerosecurity.com
OKBLUE='\033[94m'
OKRED='\033[91m'
OKGREEN='\033[92m'
OKORANGE='\033[93m'
RESET='\e[0m'
echo -e "$OKRED $RESET"
echo -e "$OKRED $RESET"
echo -e "$OKRED _.._$RESET"
echo -e "$OKRED .' '.$RESET"
echo -e "$OKRED / __ \ $RESET"
echo -e "$OKRED , | >< | ,$RESET"
echo -e "$OKRED . \ \ / / .$RESET"
echo -e "$OKRED \_'--\`( )'--'_/$RESET"
echo -e "$OKRED .--'/()\'--.$RESET"
echo -e "$OKRED @xer0dayz / /\` '' \`\ \ $RESET"
echo -e "$OKRED | |$RESET"
echo -e "$OKRED \ /$RESET"
echo -e "$OKRED $RESET"
echo ""
echo -e "$OKRED + -- --=[ https://xerosecurity.com $RESET"
echo -e "$OKRED + -- --=[ blackwidow $RESET"
echo ""
echo -e "$OKGREEN + -- --=[ This script will install blackwidow. Are you sure you want to continue? (Hit Ctrl+C to exit)$RESET"
if [[ "$1" != "force" ]]; then
read answer
fi
cp -f $PWD/blackwidow /usr/bin/blackwidow
cp -f $PWD/injectx.py /usr/bin/injectx.py
cp -f $PWD/blackwidow.desktop /usr/share/applications/
pip install -r $PWD/requirements.txt
echo -e "$OKORANGE + -- --=[ Done! $RESET"
echo -e "$OKORANGE + -- --=[ To run, type 'blackwidow'! $RESET"