-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.sh
40 lines (39 loc) · 1 KB
/
menu.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
#!/bin/bash
# Basic menu of install apk and run frida server
# Copyright (C) 2022 mstavrou
# Last revised 09/03/2022
clear
echo ''
echo ''
echo ''
echo '|||||||||||||||||||||||||||||||'
echo '| |'
echo '| Dev tools |'
echo '| |'
echo '| |'
echo '|||||||||||||||||||||||||||||||'
echo ''
PS3='Please enter your choice: '
options=("Install-Uninstall APK" "Run Frida Server" "Start Burp Suite" "Quit")
select opt in "${options[@]}"
do
case $opt in
"Install-Uninstall APK")
sh ./sh/installApk.sh
;;
"Run Frida Server")
sh ./sh/fridaServerStart.sh
;;
"Start Burp Suite")
echo ''
read -e -p 'Burp Suite Locate: ' data
echo ''
nohup java -jar $data &
sh ./menu.sh
;;
"Quit")
break
;;
*) echo "invalid option $REPLY";;
esac
done