-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstaller.sh
97 lines (81 loc) · 1.61 KB
/
installer.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#!/usr/bin/env bash
# Versoin: 1.0
# Author: evilfeonix
# Name: KeyLogger Generator
# Date: 02 - JANUARY - 2025
# Website: www.evilfeonix.com
# Email: evilfeonix@gmail.com
S="\e[0m"
R="\e[91m"
G="\e[92m"
B="\e[94m"
P="\e[95m"
Y="\e[43m"
SCRIPT=$0
let TRACKER=0
ERR="$G[$S-$G]$R "
INFO="$R[$S+$R]$G "
pyLIB=(
"colorama"
"keyboard"
"pyinstaller"
"auto-py-to-exe"
)
function slow() {
local F3="$1"
for (( i=0; i<${#F3}; i++ ))
do
echo -n -e "${F3:$i:1}"
sleep 0.003 # Delay between characters
done
echo
}
function installed()
{
for i in "${pyLIB[@]}"
do
pip install $i
done
redirection
}
function redirection()
{
clear || cls
banner
echo -n -e '\e[92m'
slow "[!] Installation Successfully Finished."
echo -n -e '\e[92m'
slow "[*] Run: python3 keygen.py "
echo -n -e '\e[0m'
exit
}
function banner()
{
local B="
===========================================================
| _ __ ____ |
| | |/ /___ _ _ / ___| ___ _ __ |
| | ' // _ \ | | |_____| | _ / _ \ '_ \ |
| | . \ __/ |_| |_____| |_| | __/ | | | |
| |_|\_\___|\__, | \____|\___|_| |_| |
| v[1.0] |___/ Coded By EvilFeonix |
===========================================================
"
slow "$B"
}
function internet()
{
wget -q --spider http://google.com
}
function main()
{
internet
if [[ $? != 0 ]]; then
echo -e -n '\e[91m'
slow "[-] Please Check Your Internet Connection."
echo -e -n '\e[0m'
exit
fi
installed
}
main