-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhelp.rb
37 lines (35 loc) · 1.88 KB
/
help.rb
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
#encoding : utf-8
def help
puts "\n"
puts " +==+==+==+==+==+==+==+==+==+==+==+==+==+==+==+==+==+==+==+==+==+==+==+==+==+"
puts " | |"
puts " + ____ _____ _____ ____ _____ ____ ■ ■ +"
puts " | / __ \\ | _ \\ | _ \\ / __ \\ |_ _| | __ \\ ■____■ |"
puts " + | / \\ | | |_| | | |_| | | / \\ | | | | | \\ \\ ■■■■■■ +"
puts " | | | | | | _ / | _ / | | | | | | | | | | ■■■■■■■■■ |"
puts " + | \\__/ | | | \\ \\ | | \\ \\ | \\__/ | _| |_ | |__/ / ■■○■■■■○■■ +"
puts " | \\____/ |_| \\_\\ |_| \\_\\ \\____/ |_____| |_____/ -------------------- |"
puts " + +"
puts " | |"
puts " +==+==+==+==+==+==+==+==+==+==+==+==+==+==+==+==+==+==+==+==+==+==+==+==+==+"
puts "\n"
puts "\t-p, --project\t\tImport a special library"
puts "\t\t\t\t* Usage: orroid [option] [Project folder]"
puts "\t ** Output: Project folder with a library"
puts "\n"
puts "\t-d, --dex\t\tApply an \"Invalid offset\" technique"
puts "\t\t\t\t* Usage: orroid [option] [APK file]"
puts "\t ** Output: Fixed APK file (You should SIGN it)"
puts "\t\t\t\t(Before use this option, \n\t\t\t\tyou should use -p option first)"
puts "\n"
puts "\t-z, --zipformat Apply an \"zip format\" techinique"
puts "\t * Usage: orroid [option] [APK file]"
puts "\t ** Output: Encrypted APK file"
puts "\n"
puts "\t-s Check codes and Report vunlerabilites"
puts "\t * Usage: orroid [option] [Project folder]"
puts "\t ** Output: Report"
puts "\t [\s\s-K Report in Korean (Default)\s]"
puts "\t [\s\s-E Report in English\t\s\s\s]"
puts "\n"
end