-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfebrev_signer.py
35 lines (33 loc) · 1.58 KB
/
febrev_signer.py
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
import os
print("""
_____ _____ ____ ____ _______ __ _
| ___| ____| __ )| _ \| ____\ \ / / ___(_) __ _ _ __ ___ _ __
| |_ | _| | _ \| |_) | _| \ \ / / / __| |/ _` | '_ \ / _ \ '__|
| _| | |___| |_) | _ <| |___ \ V / \__ \ | (_| | | | | __/ |
|_| |_____|____/|_| \_\_____| \_/ |___/_|\__, |_| |_|\___|_|
|___/
FOR ANDROID METASPLOIT PAYLOADS
---->coded by febin rev
""")
def signer():
a=input("have you installed apksigner?[Y/n] :")
if a =="y" or a=="Y":
print("HERE WE GO......!")
app_path=input("enter the path of your app (eg: /root/Desktop/app.apk): ")
if os.path.isfile(app_path):
os.system("apksigner sign -key febrev.pk8 -cert febrev.x509.pem "+app_path)
print("signed successfully........!!")
else:
print("ERROR : PATH/FILE NOT FOUND BY FEBREV signer!!!")
print("please input a valid path/file...")
elif a =="n" or a=="N":
print("installing for you...")
os.system("sudo apt-get install apksigner")
app_path=input("enter the path of your app: ")
os.system("apksigner sign -key febrev.pk8 -cert febrev.x509.pem "+app_path)
print("###########################################")
print("signed successfully..............!!")
else:
print("please provide valid input.....")
if __name__=="__main__":
signer()