-
Notifications
You must be signed in to change notification settings - Fork 1
/
blade.rb
40 lines (35 loc) · 1.01 KB
/
blade.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
38
39
40
logo = '▄▄▄▄· ▄▄▌ ▄▄▄· ·▄▄▄▄ ▄▄▄ .
▐█ ▀█▪██• ▐█ ▀█ ██▪ ██ ▀▄.▀·
▐█▀▀█▄██▪ ▄█▀▀█ ▐█· ▐█▌▐▀▀▪▄
██▄▪▐█▐█▌▐▌▐█ ▪▐▌██. ██ ▐█▄▄▌
·▀▀▀▀ .▀▀▀ ▀ ▀ ▀▀▀▀▀• ▀▀▀
'
system("clear || cls")
puts logo
print '
<§> Choose one of the following:
<1> Crypt(Encryptor & Decryptor)
<2> GetInfo (Get website info)
<3> Fizz (url finder)
<4> clash (DDos Attacker)
<5> github address
<6> Exit
┌─[Blade~ #Home]
└╼ <†> '
choose = gets.to_i
if choose == 1
system("ruby crypt/crypt.rb")
elsif choose == 2
system("ruby getinfo/getinfo.rb")
elsif choose == 3
system("ruby fizz/fizz.rb")
elsif choose == 4
system("ruby clash/clash.rb")
elsif choose = 5
system("clear || cls")
puts "<!> https://github.com/RadiFr3Y/blade"
gets
system("ruby blade.rb")
else
exit
end