forked from Krosskid12/cyfon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cyfon.sh
350 lines (255 loc) · 10.3 KB
/
cyfon.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
#! /bin/bash
# ---------------------------------------------------------------------------------------------
# Cyfon Tools
# Creation Date: 07/17/2021
# Description: Hacking Tools - Bug Bounty, Mobile, Web, IOT, Cloud, Network
# Hardware,Author: Jonathan Scott Villarreal
#
# ---------------------------------------------------------------------------------------------
# ---------------------------------------------------------------------------------------------
# Dependencies List
# printf "\n ${PURPLE}-------------------------- Checking For Dependencies -----------------------------------${NC}"
# set -e
# If you are on on a MacOS you will need to install brew package manager
# brew install apktool
# If you are on linux
# sudo apt install apktool
# You will also need to make sure adb is installed
# linux and mac you can install adb with
# pip3 install adb
# BREW_PACKAGES="apktool peco wget curl pv"
# brew install ${BREW_PACKAGES} && true
# brew cask install ${BREW_PACKAGES_CASK} && true
# ---------------------------------------------------------------------------------------------
# ADDING SOME COLOR & EASY FORMATTING TO THE TERMINAL OUTPUT
# ---------------------------------------------------------------------------------------------
RED='\033[0;31m'
PURPLE='\033[0;35m'
YELLOW='\033[1;33m'
ORANGE='\033[0;33m'
CYAN='\033[1;36m'
NC='\033[0m' # No Color
# FUNCTION TO ADD 1 BLANK ROW JUST BY TYPING space
space(){
echo ""
}
# FUNCTION TO ADD 2 BLANK ROWS JUST BY TYPING double_space
double_space(){
echo ""
echo ""
}
# ---------------------------------------------------------------------------------------------
# PERSISTENT VARIABLES - DO NOT REMOVE!!!
# ---------------------------------------------------------------------------------------------
__dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
#time_date=$(date +'%a-%h-%d-%Y-%I_%M_%S-%Z')
# This will allow ctrl c to end the specific option number
# without having to restart the full app
# trap ctrl-c and call ctrl_c()
trap ctrl_c INT
function ctrl_c() {
echo
echo "Ctrl-C Ended the Application"
# do the jobs
exit
}
pause(){
read -p "The selected process has completed. Press The 'Enter' Key, and select an option." fackEnterKey
}
double_space
zero="Pull all files in all subdomains"
zero() {
printf "%s\n${PURPLE}--------------------------------------------------------------${NC}"
printf "%s\n${CYAN} RUNNING METHOD #0 - ${zero} ${NC}"
printf "%s\n${PURPLE}--------------------------------------------------------------${NC}"
double_space
trap ctrl_c INT
function ctrl_c() {
echo
echo "Ctrl-C Ended the Application"
# do the jobs
exit
}
method_0(){
sh "${__dir}"/web_scrape_tools/subdomain_scrape.sh
}
method_0
pause
}
one="Wget Master 1 - Pull all urls from a webpage"
one() {
printf "%s\n${PURPLE}--------------------------------------------------------------${NC}"
printf "%s\n${CYAN} RUNNING METHOD #1 - ${one} ${NC}"
printf "%s\n${PURPLE}--------------------------------------------------------------${NC}"
double_space
trap ctrl_c INT
function ctrl_c() {
echo
echo "Ctrl-C Ended the Application"
# do the jobs
exit
}
method_1(){
sh "${__dir}"/wget_tools/wget_master_1.sh
}
method_1
pause
}
two="Android - Pull All Android System APKs & Unpack Them"
two (){
printf "%s\n${PURPLE}--------------------------------------------------------------${NC}"
printf "%s\n${CYAN} RUNNING METHOD #2 - ${two} ${NC}"
printf "%s\n${PURPLE}--------------------------------------------------------------${NC}"
double_space
trap ctrl_c INT
function ctrl_c() {
echo
echo "Ctrl-C Ended the Application"
# do the jobs
exit
}
method_2(){
sh "${__dir}"/android_tools/pull_system_apks.sh
}
method_2
pause
}
three="Android - Select & Download Any apk from your device and unpack it"
three (){
printf "%s\n${PURPLE}--------------------------------------------------------------${NC}"
printf "%s\n${CYAN} RUNNING METHOD #3 - ${three} ${NC}"
printf "%s\n${PURPLE}--------------------------------------------------------------${NC}"
double_space
trap ctrl_c INT
function ctrl_c() {
echo
echo "Ctrl-C Ended the Application"
# do the jobs
exit
}
method_3(){
sh "${__dir}"/android_tools/pull_single_apk.sh
}
method_3
pause
}
four="Parse .wadl files and expose API Endpoints"
four (){
printf "%s\n${PURPLE}--------------------------------------------------------------${NC}"
printf "%s\n${CYAN} RUNNING METHOD #4 - ${four} ${NC}"
printf "%s\n${PURPLE}--------------------------------------------------------------${NC}"
double_space
trap ctrl_c INT
function ctrl_c() {
echo
echo "Ctrl-C Ended the Application"
# do the jobs
exit
}
method_4(){
sh "${__dir}"/web_scrape_tools/wadl-parse.sh
}
method_4
pause
}
five="Dump All Android Secret Codes"
five(){
printf "%s\n${PURPLE}--------------------------------------------------------------${NC}"
printf "%s\n${CYAN} RUNNING METHOD #5 - ${five} ${NC}"
printf "%s\n${PURPLE}--------------------------------------------------------------${NC}"
double_space
trap ctrl_c INT
function ctrl_c() {
echo
echo "Ctrl-C Ended the Application"
# do the jobs
exit
}
method_5(){
sh "${__dir}"/android_tools/dump_android_secret_codes.sh
}
method_5
pause
}
six="Subdomain Rake"
six(){
printf "%s\n${PURPLE}--------------------------------------------------------------${NC}"
printf "%s\n${CYAN} RUNNING METHOD #6 - ${six} ${NC}"
printf "%s\n${PURPLE}--------------------------------------------------------------${NC}"
double_space
trap ctrl_c INT
function ctrl_c() {
echo
echo "Ctrl-C Ended the Application"
# do the jobs
exit
}
method_6(){
sh "${__dir}"/web_scrape_tools/subdomain_rake.sh
}
method_6
pause
}
##############################################
##############################################
show_menus() {
clear
printf "%s\n${PURPLE}##############################################################################################################################################################################${NC}"
printf "%s\n${PURPLE}
_______ _______ _______ _
( ____ \|\ /|( ____ \( ___ )( ( /|
| ( \/( \ / )| ( \/| ( ) || \ ( |
| | \ (_) / | (__ | | | || \ | |
| | \ / | __) | | | || (\ \) |
| | ) ( | ( | | | || | \ |
| (____/\ | | | ) | (___) || ) \ |
(_______/ \_/ |/ (_______)|/ )_)
${NC}"
printf "%s\n${PURPLE}-----------------------------------------------------------------------------------------------------------------------------------------------------${NC}"
printf "%s\n${PURPLE}-------------------------------------- Brought To You By: Jonathan Scott Villarreal ---------------------------------------------------------${NC}"
printf "%s\n${PURPLE}-------------------------------------- Updated On: 8/17/2021 -------------------------------------------------------------------------------------${NC}"
printf "%s\n${PURPLE}-------------------------------------- Version 1.4 -------------------------------------------------------------------------------------${NC}"
printf "%s\n${PURPLE}-------------------------------------- Hacking Tools - Bug Bounty, Mobile, Web, IOT, Cloud, Network Hardware -------------------------${NC}"
printf "%s\n${PURPLE}##############################################################################################################################################################################${NC}"
double_space
printf "%s\n${PURPLE}-----------------------------------------------------------------------------------------------------------------------------------------------------${NC}"
printf "%s\n${YELLOW} CyFon Menu ${NC}"
printf "%s\n${PURPLE}-----------------------------------------------------------------------------------------------------------------------------------------------------${NC}"
double_space
echo "0. ${zero}"
echo "1. ${one}"
echo "2. ${two}"
echo "3. ${three}"
echo "4. ${four}"
echo "5. ${five}"
echo "6. ${six}"
echo "7. Exit"
}
# Read the user input
read_options(){
local choice
read -p "Enter choice [ 0 - 7 ] " choice
case ${choice} in
0) zero ;;
1) one ;;
2) two ;;
3) three ;;
4) four ;;
5) five ;;
6) six ;;
7) exit 0;; #This will exit out of the application
*) printf "%s\n${RED}Error...Option Not Valid, Please Choose Another${NC}" && sleep 2
esac
}
# ----------------------------------------------
# Close The Pipes and Stop Transmitting Data
# ----------------------------------------------
trap '' SIGINT SIGQUIT SIGTSTP
# ----------------------------------------------
# Initialize While Loops For The Main Logic
# ----------------------------------------------
while true
do
show_menus
read_options
done