-
Notifications
You must be signed in to change notification settings - Fork 179
/
Ddos.sh
1469 lines (1383 loc) · 44.9 KB
/
Ddos.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
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/bin/bash
#some variables
DEFAULT_ROUTE=$(ip route show default | awk '/default/ {print $3}')
IFACE=$(ip route show | awk '(NR == 2) {print $3}')
JAVA_VERSION=`java -version 2>&1 |awk 'NR==1{ gsub(/"/,""); print $3 }'`
MYIP=$(ip route show | awk '(NR == 2) {print $9}')
######## Update Kali
function Desktopmanager {
clear
echo -e "
\033[31m#######################################################\033[m
Change Kali Desktop Manager
\033[31m#######################################################\033[m"
select menusel in "XFCE Desktop" "KDE Desktop" "LXDE Desktop" "Conky" "Back to Main"; do
case $menusel in
"XFCE Desktop")
echo -e "\033[31m====== Installing XFCE Desktop ======\033[m"
echo -e "\033[31m====== View XFCE Desktop before installing it ======\033[m"
echo -e "\033[31m====== https://www.youtube.com/watch?v=HjVrzMxw3rc ======\033[m"
apt-get install kali-defaults kali-root-login desktop-base xfce4 xfce4-places-plugin xfce4-goodies
echo xfce4-session > /root/.xsession
echo -e "\033[32mDone Installing\033[m"
pause
clear ;;
"KDE Desktop")
echo -e "\033[31m====== Installing KDE Desktop ======\033[m"
echo -e "\033[31m====== View KDE Desktop before installing it ======\033[m"
echo -e "\033[31m====== https://www.youtube.com/watch?v=IPwKWlIxwsk ======\033[m"
apt-get install kali-defaults kali-root-login desktop-base kde-plasma-desktop
echo -e "\033[32mDone Installing\033[m"
pause
clear ;;
"LXDE Desktop")
echo -e "\033[31m====== Installing LXDE Desktop ======\033[m"
echo -e "\033[31m====== View LXDE Desktop before installing it ======\033[m"
echo -e "\033[31m====== https://www.youtube.com/watch?v=vWTrDiAIdmY ======\033[m"
apt-get install lxde-core lxde kali-defaults kali-root-login desktop-base
echo -e "\033[32mDone Installing\033[m"
pause
clear ;;
"Conky")
chmod a+x conky.sh
./conky.sh
pause
clear ;;
"Back to Main")
clear
mainmenu ;;
*)
screwup
Desktopmanager ;;
esac
break
done
}
######## Install Dirs3arch
function installDirs3arch {
if [ ! -f /opt/dirs3arch.py ]; then
echo -e "\e[1;31mThis option will install dirs3arch!\e[0m"
echo -e "\e[1;31mHTTP(S) directory/file brute forcer\e[0m"
echo -e ""
echo -e "Do you want to install it ? (Y/N)"
read install
if [[ $install = Y || $install = y ]] ; then
echo -e "\033[31m====== Installing dirs3arch ======\033[m"
sleep 2
git clone https://github.com/maurosoria/dirs3arch.git /opt/dirs3arch-master/
else
echo -e "\e[32m[-] Ok,maybe later !\e[0m"
fi
else
echo -e "\e[32m[-] Dirs3arch already installed !\e[0m"
fi
}
######### Install VirutalBox
function installvirtualbox {
echo -e "\e[1;31mThis option will install virtualbox!\e[0m"
echo -e "\e[1;31mOf course, Your source.list correct!\e[0m"
echo -e ""
echo -e "Do you want to install it ? (Y/N)"
read install
if [[ $install = Y || $install = y ]] ; then
echo -e "\033[31m====== Installing Virtualbox ======\033[m"
sleep 2
apt-get update && apt-get install -y linux-headers-$(uname -r)
apt-get install virtualbox
else
echo -e "\e[32m[-] Ok,maybe later !\e[0m"
fi
}
#### Bleachbit Installation
function installbleachbit {
echo -e "\e[1;31mThis option will install Bleachbit!\e[0m"
echo -e ""
echo -e "Do you want to install it ? (Y/N)"
read install
if [[ $install = Y || $install = y ]] ; then
echo -e "\e[31m[+] Installing Bleachbit now!\e[0m"
apt-get -y install bleachbit
echo -e "\e[32m[-] Done Installing Bleachbit!\e[0m"
else
echo -e "\e[32m[-] Ok,maybe later !\e[0m"
fi
}
#### Installation GoldenDict
function installGoldendict {
echo -e "\e[1;31mThis option will install GoldenDict!\e[0m"
echo -e ""
echo -e "Do you want to install it ? (Y/N)"
read install
if [[ $install = Y || $install = y ]] ; then
echo -e "\e[31m[+] Installing GoldenDict now!\e[0m"
apt-get -y install goldendict
echo -e "\e[32m[-] Done Installing goldendict!\e[0m"
else
echo -e "\e[32m[-] Ok,maybe later !\e[0m"
fi
}
######## Install Pinta
function installpinta {
echo "This will install Pinta (image editor). Do you want to install it ? (Y/N)"
read install
if [[ $install = Y || $install = y ]] ; then
echo -e "\e[31m[+] Installing Pinta now!\e[0m"
apt-get -y install pinta
echo -e "\e[32m[-] Done Installing Pinta!\e[0m"
else
echo -e "\e[32m[-] Ok,maybe later !\e[0m"
fi
}
######## Install ibus
function installibus {
echo "This will install ibus. Do you want to install it ? (Y/N)"
read install
if [[ $install = Y || $install = y ]] ; then
echo -e "\e[31m[+] Installing ibus now!\e[0m"
apt-get -y install ibus && apt-get -y install ibus-unikey
echo -e "\e[32m[-] Done Installing ibus!\e[0m"
else
echo -e "\e[32m[-] Ok,maybe later !\e[0m"
fi
}
######## Install libreoffice
function installlibreoffice {
echo "This will install libreoffice. Do you want to install it ? (Y/N)"
read install
if [[ $install = Y || $install = y ]] ; then
echo -e "\e[31m[+] Installing libreoffice now!\e[0m"
apt-get -y install libreoffice
echo -e "\e[32m[-] Done Installing libreoffice!\e[0m"
else
echo -e "\e[32m[-] Ok,maybe later !\e[0m"
fi
}
######## Install knotes
function installknotes {
echo "This will install knotes. Do you want to install it ? (Y/N)"
read install
if [[ $install = Y || $install = y ]] ; then
echo -e "\e[31m[+] Installing knotes now!\e[0m"
apt-get -y install knotes
echo -e "\e[32m[-] Done Installing knotes!\e[0m"
else
echo -e "\e[32m[-] Ok,maybe later !\e[0m"
fi
}
# JAVA JDK Update
#################################################################################
######## Install Java version 8
function installjava {
echo -e "\e[1;31mThis option will install java!\e[0m"
echo -e ""
echo -e "Do you want to install it ? (Y/N)"
read install
if [[ $install = Y || $install = y ]] ; then
echo -e "\033[31m====== Installing Java ======\033[m"
sleep 2
echo "deb http://ppa.launchpad.net/webupd8team/java/ubuntu trusty main" | tee /etc/apt/sources.list.d/webupd8team-java.list
echo "deb-src http://ppa.launchpad.net/webupd8team/java/ubuntu trusty main" | tee -a /etc/apt/sources.list.d/webupd8team-java.list
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys EEA14886
apt-get update
apt-get -y install oracle-java8-installer
echo -e "\033[32m====== Done Installing ======\033[m"
echo -e "\033[32mTo remove java version 1.8\033[m"
echo -e "\033[32mapt-get --purge remove oracle-java8-installer\033[m"
else
echo -e "\e[32m[-] Ok,maybe later !\e[0m"
fi
}
######## Install Sopcast
function installsopcast {
echo -e "\e[1;31mThis option will install sopcast!\e[0m"
echo -e ""
echo -e "Do you want to install it ? (Y/N)"
read install
if [[ $install = Y || $install = y ]] ; then
echo -e "\033[31m====== Installing Sopcast ======\033[m"
sleep 2
wget https://launchpad.net/~jason-scheunemann/+archive/ppa/+files/sp-auth_3.2.6~ppa1~precise3_i386.deb
dpkg -i sp-auth_3.2.6~ppa1~precise3_*.deb
apt-get -f install
wget https://launchpad.net/~jason-scheunemann/+archive/ppa/+files/sopcast-player_0.8.5~ppa~precise1_i386.deb
dpkg -i sopcast-player_0.8.5~ppa~precise1_*.deb
apt-get -f install
else
echo -e "\e[32m[-] Ok,maybe later !\e[0m"
fi
}
######## Install Veil-Framework
function installveil {
if [ ! -f /opt/BypassAV/Veil-Evasion/Veil-Evasion.py ]; then
echo -e "\e[1;31mThis option will install Veil-Evasion!\e[0m"
echo -e "\e[1;31mHow to use Veil-Evasopm\e[0m"
echo -e "\e[1;32mhttps://www.youtube.com/watch?v=8Z4gBKE6i-c\e[0m"
echo -e ""
echo -e "Do you want to install it ? (Y/N)"
read install
if [[ $install = Y || $install = y ]] ; then
echo -e "\033[31m====== Installing Veil-Evasion ======\033[m"
sleep 2
git clone https://github.com/Veil-Framework/Veil-Evasion.git /opt/BypassAV/Veil-Evasion/
cd /opt/BypassAV/Veil-Evasion/setup
./setup.sh -s
else
echo -e "\e[32m[-] Ok,maybe later !\e[0m"
fi
else
echo -e "\e[32m[-] Veil-Evasion already installed !\e[0m"
fi
}
######## Install VPN-BOOK
function installvpnbook {
if [ ! -f /root/Desktop/vpnbook.sh ]; then
echo -e "\e[1;31mThis option will install VPN-BOOK!\e[0m"
echo -e ""
echo -e "Do you want to install it ? (Y/N)"
read install
if [[ $install = Y || $install = y ]] ; then
echo -e "\033[31m====== Installing VPN-BOOK ======\033[m"
sleep 2
cd /root/Desktop
wget https://github.com/Top-Hat-Sec/thsosrtl/blob/master/VeePeeNee/VeePeeNee.sh
mv VeePeeNee.sh vpnbook.sh
chmod a+x vpnbook.sh
else
echo -e "\e[32m[-] Ok,maybe later !\e[0m"
fi
else
echo -e "\e[32m[-] VPN-BOOK already installed !\e[0m"
fi
}
######## Install Tor Browser
function installtorbrowser {
if [ ! -f /root/tor-browser_en-US/Browser/start_tor_browser ]; then
echo -e "\e[1;31mThis option will install Tor Browser!\e[0m"
echo -e ""
echo -e "Do you want to install it ? (Y/N)"
read install
if [[ $install = Y || $install = y ]] ; then
echo -e "\033[31m====== Installing Tor Browser ======\033[m"
sleep 2
cd /root/Desktop
wget https://www.torproject.org/dist/torbrowser/4.5.3/tor-browser-linux32-4.5.3_en-US.tar.xz
tar -xf tor-browser-linux32-4.5.3_en-US.tar.xz
cd /root/Desktop/tor-browser_en-US/Browser/
mv start-tor-browser start-tor-browser.txt
sed -i 's/`id -u`" -eq 0/`id -u`" -eq 1/g' start-tor-browser.txt
mv start-tor-browser.txt start-tor-browser
cd ..
ls -ld
chown -R root:root .
ls -ld
else
echo -e "\e[32m[-] Ok,maybe later !\e[0m"
fi
else
echo -e "\e[32m[-] Tor Browser already installed !\e[0m"
fi
}
######## Install VPN
function installvpn {
echo -e "\e[1;31mThis option will install VPN!\e[0m"
echo -e ""
echo -e "Do you want to install it ? (Y/N)"
read install
if [[ $install = Y || $install = y ]] ; then
echo -e "\033[31m====== Installing VPN ======\033[m"
sleep 2
apt-get -y install network-manager-openvpn
apt-get -y install network-manager-openvpn-gnome
apt-get -y install network-manager-pptp
apt-get -y install network-manager-pptp-gnome
apt-get -y install network-manager-strongswan
apt-get -y install network-manager-vpnc
apt-get -y install network-manager-vpnc-gnome
else
echo -e "\e[32m[-] Ok,maybe later !\e[0m"
fi
}
######## Install Archive-Manager
function installarchivemanager {
echo -e "\e[1;31mThis option will install Archive Manager!\e[0m"
echo -e ""
echo -e "Do you want to install it ? (Y/N)"
read install
if [[ $install = Y || $install = y ]] ; then
echo -e "\033[31m====== Installing Archive Manager ======\033[m"
sleep 2
apt-get -y install unrar unace rar unrar p7zip zip unzip p7zip-full p7zip-rar file-roller
else
echo -e "\e[32m[-] Ok,maybe later !\e[0m"
fi
}
######## Install Gdebi
function installgdebi {
echo -e "\e[1;31mThis option will install Gdebi!\e[0m"
echo -e "\e[1;31mgdebi lets you install local deb packages resolving and installing its dependencies. apt does the same, but only for remote (http, ftp) located packages.!\e[0m"
echo -e ""
echo -e "Do you want to install it ? (Y/N)"
read install
if [[ $install = Y || $install = y ]] ; then
echo -e "\033[31m====== Installing Gdebi ======\033[m"
sleep 2
apt-get -y install gdebi &>/dev/nul
echo -e "\033[32m====== Done Installing Gdebi ======\033[m"
else
echo -e "\e[32m[-] Ok,maybe later !\e[0m"
fi
}
######## Install bittorrent client
function installbittorrent {
echo -e "\e[1;31mThis option will install bittorrent!\e[0m"
echo -e "\e[1;31mThis is a transitional dummy package to ensure clean upgrades from old releases (the package deluge-torrent is replaced by deluge)!\e[0m"
echo -e ""
echo -e "Do you want to install it ? (Y/N)"
read install
if [[ $install = Y || $install = y ]] ; then
echo -e "\033[31m====== Installing bittorrent ======\033[m"
sleep 2
apt-get -y install deluge-torrent &>/dev/null
echo -e "\033[32m====== Done Installing bittorrent ======\033[m"
else
echo -e "\e[32m[-] Ok,maybe later !\e[0m"
fi
}
######## Install Fix Sound Mute
function installfixsoundmute {
echo -e "\e[1;31mThis option will fix sound mute on Kali Linux on boot!\e[0m"
echo -e ""
echo -e "Do you want to install alsa-utils to fix it ? (Y/N)"
read install
if [[ $install = Y || $install = y ]] ; then
echo -e "\033[31m====== Fixing sound mute ======\033[m"
sleep 2
apt-get -y install alsa-utils &>/dev/null
echo -e "\033[32m====== Done Installing alsa-utils ======\033[m"
else
echo -e "\e[32m[-] Ok,maybe later !\e[0m"
fi
}
######## Install Change Kali Login Wallpaper
function installchangelogin {
echo -e "\e[1;31mThis option will change Kali Login Wallpaper!\e[0m"
echo -e "\e[1;31mPlace wallpaper that you want to make as Kali Login Wallpaper on Desktop\e[0m"
echo -e "\e[1;31mAfter that, Rename it to "login-background.png" (.png format)\e[0m"
echo -e ""
echo -e "Do you want to change it ? (Y/N)"
read install
if [[ $install = Y || $install = y ]] ; then
echo -e "\033[31m====== Changing Kali Login Wallpaper ======\033[m"
sleep 2
cd /usr/share/images/desktop-base/
mv login-backgroung.{png,png.bak}
mv /root/Desktop/login-background.png /usr/share/images/desktop-base/
echo -e "\033[32m====== Done Changing ======\033[m"
else
echo -e "\e[32m[-] Ok,maybe later !\e[0m"
fi
}
######## Install Firefox
function installfirefox {
echo -e "\e[1;31mThis option will install Firefox!\e[0m"
echo -e ""
echo -e "Do you want to install it ? (Y/N)"
read install
if [[ $install = Y || $install = y ]] ; then
echo -e "\033[31m====== Installing Firefox ======\033[m"
sleep 2
apt-get -y remove iceweasel
echo -e deb http://downloads.sourceforge.net/project/ubuntuzilla/mozilla/apt all main | tee -a /etc/apt/sources.list > /dev/null
apt-key adv –recv-keys –keyserver keyserver.ubuntu.com C1289A29
apt-get update
apt-get --force-yes install firefox-mozilla-build
echo -e "\033[32m====== Done Installing ======\033[m"
else
echo -e "\e[32m[-] Ok,maybe later !\e[0m"
fi
}
######## Install VLC
function installvlc {
echo -e "\e[1;31mThis option will fix VLC error!\e[0m"
echo -e ""
echo -e "Do you want to fix it ? (Y/N)"
read install
if [[ $install = Y || $install = y ]] ; then
echo -e "\033[31m====== Fixing VLC ======\033[m"
sleep 2
sed -i 's/geteuid/getppid/g' /usr/bin/vlc
echo -e "\033[32m====== Done Fixing ======\033[m"
else
echo -e "\e[32m[-] Ok,maybe later !\e[0m"
fi
}
######## Install VLC
function installvmware {
echo -e "\e[1;31mThis option will fix VMare error!\e[0m"
echo -e ""
echo -e "Do you want to fix it ? (Y/N)"
read install
if [[ $install = Y || $install = y ]] ; then
echo -e "\033[31m====== Fixing VMWare ======\033[m"
sleep 2
cd /usr/lib/vmware/modules/source
tar -xvf vmnet.tar
mv vmnet-only/netif.c vmnet-only/netif.txt
sed -i 's/`dev = alloc_netdev(sizeof *netIf, deviceName, VNetNetIfSetup)" -eq dev = alloc_netdev(sizeof *netIf, deviceName, NET_NAME_UNKNOWN, VNetNetIfSetup)/g' vmnet-only/netif.txt
mv vmnet-only/netif.txt vmnet-only/netif.c
tar -cvf vmnet.tar vmnet-only/
rm -rf vmnet-only/
echo -e "\033[32m====== Done Fixing ======\033[m"
echo -e "\033[32m====== If it doesn't work, please view video below ======\033[m"
echo -e "\033[32m====== https://www.youtube.com/watch?v=qH3OSBAMNA4 ======\033[m"
else
echo -e "\e[32m[-] Ok,maybe later !\e[0m"
fi
}
######## Software and System Tools menu
function softwaresandystemtools {
clear
echo -e "
\033[31m#######################################################\033[m
Software and System Tools
\033[31m#######################################################\033[m"
select menusel in "VirtualBox" "Bleachbit" "Sopcast" "GoldenDict" "Java" "Pinta" "ibus" "libreoffice" "knotes" "VPN" "VPN-BOOK" "Tor Browser" "Fix Sound Mute" "Archive-Manager" "Gdebi" "bittorrent client" "Fix VMWare" "Fix Device not managed error" "Fix VLC" "Change Kali Login Wallpaper" "Firefox" "Install All" "Back to Main"; do
case $menusel in
"VirtualBox")
installvirtualbox
pause
softwaresandystemtools ;;
"Fix VMWare")
installvmware
pause
softwaresandystemtools ;;
"Fix VLC")
installvlc
pause
softwaresandystemtools ;;
"Sopcast")
installsopcast
pause
softwaresandystemtools ;;
"Firefox")
installfirefox
pause
softwaresandystemtools ;;
"Bleachbit")
installbleachbit
pause
softwaresandystemtools ;;
"GoldenDict")
installGoldendict
pause
softwaresandystemtools ;;
"Java")
installjava
pause
softwaresandystemtools ;;
"Pinta")
installpinta
pause
softwaresandystemtools ;;
"ibus")
installibus
pause
softwaresandystemtools ;;
"libreoffice")
installlibreoffice
pause
softwareandsystemtools ;;
"knotes")
installknotes
pause
softwaresandystemtools ;;
"VPN")
installvpn
pause
softwaresandystemtools ;;
"VPN-BOOK")
installvpnbook
pause
softwaresandystemtools ;;
"Tor Browser")
installtorbrowser
pause
softwaresandystemtools ;;
"Fix Sound Mute")
installfixsoundmute
pause
softwaresandystemtools ;;
"Archive-Manager")
installarchivemanager
pause
softwaresandystemtools ;;
"Gdebi")
installgdebi
pause
softwaresandystemtools ;;
"bittorrent client")
installbittorrent
pause
softwaresandystemtools ;;
"Fix Device not managed error")
installfixdevice
pause
softwaresandystemtools ;;
"Fix VLC")
installvlc
pause
softwaresandystemtools ;;
"Change Kali Login Wallpaper")
installchangelogin
pause
softwaresandystemtools ;;
"Install All")
echo -e "\e[36mJava is install seperately choose it from the Software and System Tools menu\e[0m"
installvirtualbox
installbleachbit
installGoldendict
installpinta
installgnometweaktool
installibus
installlibreoffice
installknotes
installvpnbook
installvpn
installtorbrowser
installfixsoundmute
installarchivemanager
installgdebi
installbittorrent
installfixdevice
installchangelogin
echo -e "\e[32m[-] Done Installing Software and System Tools\e[0m"
pause
softwaresandystemtools ;;
"Back to Main")
clear
mainmenu ;;
*)
screwup
softwaresandystemtools ;;
esac
break
done
}
######## Update metasploit
function updatemetasploit {
if [ ! -f /opt/dirs3arch.py ]; then
echo -e "\e[1;31mThis option will update latest metasploit version!\e[0m"
echo -e ""
echo -e "Do you want to update it ? (Y/N)"
read install
if [[ $install = Y || $install = y ]] ; then
echo -e "\033[31m====== Updating metasploit ======\033[m"
sleep 2
git clone https://github.com/rapid7/metasploit-framework.git /opt/exploitation/metasploit/
else
echo -e "\e[32m[-] Ok,maybe later !\e[0m"
fi
else
echo -e "\e[32m[-] Metasploit already updated !\e[0m"
fi
}
######## Update Social Engineering Toolkit
function updateSET {
echo -e "\e[1;31mThis option will update latest SET version!\e[0m"
echo -e ""
echo -e "Do you want to update it ? (Y/N)"
read install
if [[ $install = Y || $install = y ]] ; then
echo -e "\033[31m====== Updating SET ======\033[m"
sleep 2
rm -rf /opt/exploitation/set/
git clone https://github.com/trustedsec/social-engineer-toolkit.git /opt/exploitation/set/
echo -e "\e[32m[-] Done!\e[0m"
else
echo -e "\e[32m[-] Ok,maybe later !\e[0m"
fi
}
######## Update Beef
function updateBeef {
echo -e "\e[1;31mThis option will update latest Beef version!\e[0m"
echo -e "\e[1;31mHow to use BeEF\e[0m"
echo -e "\e[1;31mhttps://www.youtube.com/playlist?list=PLgmq2kEqEXo-MltlkW0ww7T2Ru1BxN4qm\e[0m"
echo -e ""
echo -e "Do you want to update it ? (Y/N)"
read install
if [[ $install = Y || $install = y ]] ; then
echo -e "\033[31m====== Updating SET ======\033[m"
sleep 2
git clone https://github.com/beefproject/beef.git /opt/exploitation/beef/
echo -e "\e[32m[-] Done!\e[0m"
else
echo -e "\e[32m[-] Ok,maybe later !\e[0m"
fi
}
######## Update Veil-Evasion
function updateVeil {
echo -e "\e[1;31mThis option will update latest Veil version!\e[0m"
echo -e ""
echo -e "Do you want to update it ? (Y/N)"
read install
if [[ $install = Y || $install = y ]] ; then
echo -e "\033[31m====== Updating Veil-Evasion ======\033[m"
sleep 2
cd /opt/BypassAV/
rm -rf Veil-Evasion/
git clone https://github.com/Veil-Framework/Veil-Evasion.git /opt/BypassAV/Veil-Evasion/
echo -e "\e[32m[-] Done!\e[0m"
else
echo -e "\e[32m[-] Ok,maybe later !\e[0m"
fi
}
######## Update Unicorn
function updateVeil {
echo -e "\e[1;31mThis option will update latest Unicorn version!\e[0m"
echo -e ""
echo -e "Do you want to update it ? (Y/N)"
read install
if [[ $install = Y || $install = y ]] ; then
echo -e "\033[31m====== Updating Unicorn ======\033[m"
sleep 2
cd /opt/BypassAV/
rm -rf unicorn-master/
git clone https://github.com/trustedsec/unicorn.git /opt/BypassAV/unicorn-master/
echo -e "\e[32m[-] Done!\e[0m"
else
echo -e "\e[32m[-] Ok,maybe later !\e[0m"
fi
}
######## Update Backdoor Factory
function updateBackdoorFactory {
echo -e "\e[1;31mThis option will update latest Backdoor Factory version!\e[0m"
echo -e ""
echo -e "Do you want to update it ? (Y/N)"
read install
if [[ $install = Y || $install = y ]] ; then
echo -e "\033[31m====== Updating Backdoor Factory ======\033[m"
sleep 2
cd /opt/BypassAV/
rm -rf the-backdoor-factory/
git clone https://github.com/secretsquirrel/the-backdoor-factory.git /opt/BypassAV/the-backdoor-factory/
echo -e "\e[32m[-] Done!\e[0m"
else
echo -e "\e[32m[-] Ok,maybe later !\e[0m"
fi
}
######## Update tools to latest version
function updatetools {
clear
echo -e "
\033[35m#######################################################\033[m
Update tools to latest version
\033[35m#######################################################\033[m"
select menusel in "Metasploit" "Beef" "Veil-Evasion" "Social Engineering Toolkit" "Backdoor Factory" "Unicorn" "Update All" "Back to Main"; do
case $menusel in
"Metasploit")
updatemetasploit
pause
updatetools ;;
"Beef")
updateBeef
pause
updatetools ;;
"Veil-Evasion")
updateVeil
pause
updatetools ;;
"Social Engineering Toolkit")
updateSET
pause
updatetools ;;
"Backdoor Factory")
updateBackdoorFactory
pause
updatetools ;;
"Unicorn")
updateUnicorn
pause
updatetools ;;
"Update All")
updatemetasploit
updateBeef
updateVeil
updateSET
updateBackdoorFactory
updateUnicorn
echo -e "\e[32m[-] Done Updating\e[0m"
pause
updatetools ;;
"Back to Main")
clear
mainmenu ;;
*)
screwup
updatetools ;;
esac
break
done
}
######## Install Backdoor-Factory
function installbackdoorfactory {
if [ ! -f /opt/BypassAV/the-backdoor-factory/backdoor.py ]; then
echo -e "\e[1;31mThis option will install Backdoor-Factory!\e[0m"
echo -e "\e[1;31mPatch PE, ELF, Mach-O binaries with shellcode\e[0m"
echo -e "\e[1;31mHow to use backdoor-factory\e[0m"
echo -e "\e[1;32mhttps://www.youtube.com/watch?v=mnmeDfnaq7Q\e[0m"
echo -e ""
echo -e "Do you want to install it ? (Y/N)"
read install
if [[ $install = Y || $install = y ]] ; then
echo -e "\033[31m====== Installing Backdoor Factory ======\033[m"
sleep 2
git clone https://github.com/secretsquirrel/the-backdoor-factory.git /opt/BypassAV/the-backdoor-factory/
cd /opt/BypassAV/the-backdoor-factory/
./install.sh
else
echo -e "\e[32m[-] Ok,maybe later !\e[0m"
fi
else
echo -e "\e[32m[-] Backdoor Factory already installed !\e[0m"
fi
}
######## Install pyobfuscate
function installpyobfuscate {
if [ ! -f /opt/BypassAV/pyobfuscate-master/pyobfuscate.py ]; then
echo -e "\e[1;31mThis option will install pyobfuscate!\e[0m"
echo -e "\e[1;31mA pyobfuscate fork made specifically to randomize and obfuscate python based payloads\e[0m"
echo -e ""
echo -e "Do you want to install it ? (Y/N)"
read install
if [[ $install = Y || $install = y ]] ; then
echo -e "\033[31m====== Installing pyobfuscate ======\033[m"
sleep 2
git clone https://github.com/byt3bl33d3r/pyobfuscate.git /opt/BypassAV/pyobfuscate-master/
cd /opt/BypassAV/pyobfuscate-master/
python setup.py install
else
echo -e "\e[32m[-] Ok,maybe later !\e[0m"
fi
else
echo -e "\e[32m[-] pyobfuscate already installed !\e[0m"
fi
}
######## Install Shellter
function installshellter {
if [ ! -f /usr/bin/shellter ]; then
echo -e "\e[1;31mThis option will install Shellter!\e[0m"
echo -e "\e[1;31mShellter is a dynamic shellcode injection tool, and probably the first dynamic PE infector ever created.\e[0m"
echo -e "\e[1;31mHow to use shellter\e[0m"
echo -e "\e[1;32mhttps://www.youtube.com/watch?v=BIks4iLUI-8\e[0m"
echo -e ""
echo -e "Do you want to install it ? (Y/N)"
read install
if [[ $install = Y || $install = y ]] ; then
echo -e "\033[31m====== Installing Shellter ======\033[m"
sleep 2
apt-get -y install shellter
else
echo -e "\e[32m[-] Ok,maybe later !\e[0m"
fi
else
echo -e "\e[32m[-] Shellter already installed !\e[0m"
fi
}
######## Install Unicorn
function installunicorn {
if [ ! -f /opt/BypassAV/unicorn-master/unicorn.py ]; then
echo -e "\e[1;31mThis option will install Unicorn!\e[0m"
echo -e "\e[1;31mUnicorn is a simple tool for using a PowerShell downgrade attack and inject shellcode straight into memory.\e[0m"
echo -e "\e[1;31mHow to use unicorn\e[0m"
echo -e "\e[1;32mhttps://www.youtube.com/watch?v=23irqYIkIig\e[0m"
echo -e ""
echo -e "Do you want to install it ? (Y/N)"
read install
if [[ $install = Y || $install = y ]] ; then
echo -e "\033[31m====== Installing Unicorn ======\033[m"
sleep 2
git clone https://github.com/trustedsec/unicorn.git /opt/BypassAV/unicorn-master
else
echo -e "\e[32m[-] Ok,maybe later !\e[0m"
fi
else
echo -e "\e[32m[-] Unicorn already installed !\e[0m"
fi
}
######## Install autopwn
function installautopwn {
if [ ! -f /opt/autopwn-master/setup.py ]; then
echo -e "\e[1;31mThis option will install autopwn!\e[0m"
echo -e "\e[1;31mSpecify targets and run sets of tools against them\e[0m"
echo -e ""
echo -e "Do you want to install it ? (Y/N)"
read install
if [[ $install = Y || $install = y ]] ; then
echo -e "\033[31m====== Installing autopwn ======\033[m"
sleep 2
git clone https://github.com/nccgroup/autopwn.git /opt/autopwn-master/
cd /opt/autopwn-master/
pip install -r requirements.txt
python setup.py install
else
echo -e "\e[32m[-] Ok,maybe later !\e[0m"
fi
else
echo -e "\e[32m[-] autopwn already installed !\e[0m"
fi
}
######## Install mitmf
function installmitmf {
if [ ! -f /opt/MITMf-master/mitmf.py ]; then
echo -e "\e[1;31mThis option will install mitmf!\e[0m"
echo -e "\e[1;31mFramework for Man-In-The-Middle attacks\e[0m"
echo -e ""
echo -e "Do you want to install it ? (Y/N)"
read install
if [[ $install = Y || $install = y ]] ; then
echo -e "\033[31m====== Installing mitmf ======\033[m"
sleep 2
git clone https://github.com/byt3bl33d3r/MITMf.git /opt/MITMf-master/
cd /opt/MITMf-master
./kali_setup.sh
else
echo -e "\e[32m[-] Ok,maybe later !\e[0m"
fi
else
echo -e "\e[32m[-] autopwn already installed !\e[0m"
fi
}
######## Install commix
function installcommix {
if [ ! -f /opt/commix-master/commix.py ]; then
echo -e "\e[1;31mThis option will install commix!\e[0m"
echo -e "\e[1;31mAutomated All-in-One OS Command Injection and Exploitation Tool\e[0m"
echo -e "\e[1;31mHow to use commix\e[0m"
echo -e "\e[1;32mhttps://www.youtube.com/watch?v=5bDFLX4-d-8\e[0m"
echo -e ""
echo -e "Do you want to install it ? (Y/N)"
read install
if [[ $install = Y || $install = y ]] ; then
echo -e "\033[31m====== Installing commix ======\033[m"
sleep 2
git clone https://github.com/stasinopoulos/commix.git /opt/commix-master/
else
echo -e "\e[32m[-] Ok,maybe later !\e[0m"
fi
else
echo -e "\e[32m[-] commix already installed !\e[0m"
fi
}
######## Install EyeWitness
function installeyswitness {
if [ ! -f /opt/EyeWitness-master/EyeWitness.py ]; then
echo -e "\e[1;31mThis option will install EyeWitness!\e[0m"
echo -e "\e[1;31mEyeWitness is designed to take screenshots of websites, provide some server header info, and identify default credentials if possible.\e[0m"
echo -e ""
echo -e "Do you want to install it ? (Y/N)"
read install
if [[ $install = Y || $install = y ]] ; then
echo -e "\033[31m====== Installing EyeWitness ======\033[m"
sleep 2
git clone https://github.com/ChrisTruncer/EyeWitness.git /opt/EyeWitness-master/
cd /opt/EyeWitness-master/setup/
chmod a+x setup.sh
./setup.sh
else
echo -e "\e[32m[-] Ok,maybe later !\e[0m"
fi
else
echo -e "\e[32m[-] EyeWitness already installed !\e[0m"
fi
}
######## Install gcat
function installgcat {
if [ ! -f /opt/gcat-master/gcat.py ]; then
echo -e "\e[1;31mThis option will install gcat!\e[0m"
echo -e "\e[1;31mA fully featured backdoor that uses Gmail as a C&C server\e[0m"
echo -e "\e[1;31mHow to use gcat\e[0m"
echo -e "\e[1;32mhttps://www.youtube.com/watch?v=AI2ZWEwaSd0\e[0m"
echo -e ""
echo -e "Do you want to install it ? (Y/N)"
read install
if [[ $install = Y || $install = y ]] ; then
echo -e "\033[31m====== Installing gcat ======\033[m"
sleep 2
git clone https://github.com/byt3bl33d3r/gcat.git /opt/gcat-master/
else
echo -e "\e[32m[-] Ok,maybe later !\e[0m"
fi
else
echo -e "\e[32m[-] gcat already installed !\e[0m"
fi
}
######## Install maligno
function installmaligno {
if [ ! -f /opt/BypassAV/maligno/maligno_srv.py ]; then
echo -e "\e[1;31mThis option will install maligno!\e[0m"
echo -e "\e[1;31mMaligno is an open source penetration testing tool written in Python that serves Metasploit payloads. It generates shellcode with msfvenom and transmits it over HTTP or HTTPS. The shellcode is encrypted with AES and encoded prior to transmission.\e[0m"
echo -e "\e[1;31mHow to use Maligno\e[0m"
echo -e "\e[1;31mhttps://www.youtube.com/watch?v=b57d0IG_gaY\e[om"
echo -e ""
echo -e "Do you want to install it ? (Y/N)"
read install
if [[ $install = Y || $install = y ]] ; then
echo -e "\033[31m====== Installing maligno ======\033[m"
sleep 2
mkdir /opt/BypassAV/maligno
cd /opt/BypassAV/maligno
wget https://www.encripto.no/tools/maligno-2.2.tar.gz
tar -zxvf maligno-2.2.tar.gz
else
echo -e "\e[32m[-] Ok,maybe later !\e[0m"
fi
else
echo -e "\e[32m[-] maligno already installed !\e[0m"
fi
}
######## Install wig
function installwig {
if [ ! -f /opt/wig/wig.py ]; then
echo -e "\e[1;31mThis option will install wig!\e[0m"
echo -e "\e[1;31mWebApp Information Gatherer\e[0m"
echo -e "\e[1;31mHow to use wig\e[0m"
echo -e "\e[1;32mhttps://www.youtube.com/watch?v=vPVpE54W1KM\e[0m"
echo -e ""
echo -e "Do you want to install it ? (Y/N)"
read install
if [[ $install = Y || $install = y ]] ; then
echo -e "\033[31m====== Installing wig ======\033[m"
sleep 2
git clone https://github.com/jekyc/wig.git /opt/wig/
else
echo -e "\e[32m[-] Ok,maybe later !\e[0m"
fi