-
Notifications
You must be signed in to change notification settings - Fork 46
/
install.sh
executable file
·29 lines (27 loc) · 1.96 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
#########################################################
# Logo #
#########################################################
logo(){
printf """
██╗ ███████╗ █████╗ ██╗ ██╗███████╗██╗ ██╗
██║ ██╔════╝██╔══██╗██║ ██╔╝██╔════╝╚██╗ ██╔╝
██║ █████╗ ███████║█████╔╝ █████╗ ╚████╔╝
██║ ██╔══╝ ██╔══██║██╔═██╗ ██╔══╝ ╚██╔╝
███████╗███████╗██║ ██║██║ ██╗███████╗ ██║
╚══════╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝ ╚═╝ v1.0
═══════ 🔑 Check for the leaked credentials 🔑 ═══════
╔═════════════════════════════════════════════════════╗
Developed BY: 𝝘𝝝𝝜𝗦𝝨𝗖 (https://twitter.com/rohsec)
╚═════════════════════════════════════════════════════╝
"""
}
installer(){
printf "\nInstalling..."
mkdir ~/.leakey/ && git clone "https://github.com/rohsec/LEAKEY" && cd LEAKEY && cp signatures.json ~/.leakey && chmod +x leakey.sh && mv leakey.sh /usr/bin/leaky && cd .. && rm -r LEAKEY
[ -f ~/.leakey/signatures.json ] && printf "\n [ ✔ ] Installation Successful..." || printf "[ X ] Installation Failure..."
}
#########################################################
# Installer #
#########################################################
logo
installer