-
Notifications
You must be signed in to change notification settings - Fork 165
/
Copy pathinstall
executable file
·35 lines (32 loc) · 1.47 KB
/
install
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
#!/bin/bash
# reverse-apk by @xer0dayz
# https://sn1persecurity.com
#
# Install script for reverse-apk...
#
OKBLUE='\033[94m'
OKRED='\033[91m'
OKGREEN='\033[92m'
OKORANGE='\033[93m'
RESET='\e[0m'
echo -e "$OKORANGE "
echo -e "__________ "
echo -e "\______ \ _______ __ ___________ ______ ____ "
echo -e " | _// __ \ \/ // __ \_ __ \/ ___// __ \ "
echo -e " | | \ ___/\ /\ ___/| | \/\___ \\ ___/ "
echo -e " |____|_ /\___ >\_/ \___ >__| /____ >\___ >"
echo -e " \/ \/ \/ \/ \/ "
echo -e " _____ __________ ____ __."
echo -e " / _ \\\\______ \ |/ _|"
echo -e " --=[( by @xer0dayz )]=-- / /_\ \| ___/ < "
echo -e " --=[( https://sn1persecurity.com )]=-- / | \ | | | \ "
echo -e " \____|__ /____| |____|__ \\"
echo -e " \/ \/"
echo -e "$RESET"
echo -e "$OKRED Installing reverse-apk..."
echo -e "========================================================= $RESET"
chmod +rx reverse-apk
cp reverse-apk /usr/bin/reverse-apk
apt-get install unzip smali apktool dex2jar jadx
echo -e "$OKRED Done! To use, type reverse-apk <path_to_apk>."
echo -e "$OKRED ========================================================= $RESET"