forked from 0xJin/awesome-bugbounty-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
awesome-bugbounty-build.sh
861 lines (613 loc) · 23 KB
/
awesome-bugbounty-build.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
#!/bin/bash
# This script is created by Jin.
RED="\e[31m"
GREEN="\e[32m"
YELLOW="\033[0;33m"
ENDCOLOR="\e[0m"
echo -e "${GREEN}UPDATING${ENDCOLOR}"
sudo apt-get update -y
sudo apt-get full-upgrade -y
echo -e "${GREEN}INSTALLING DEPENDENCIES${ENDCOLOR}"
sudo apt-get install python3-pip -y
sudo apt-get install python-pip -y
sudo apt-get install docker.io -y
sudo apt-get install libcurl4-openssl-dev -y
sudo apt-get install libssl-dev -y
sudo apt-get install jq -y
sudo apt-get install ruby-full -y
sudo apt-get install libcurl4-openssl-dev libxml2 libxml2-dev libxslt1-dev ruby-dev build-essential libgmp-dev zlib1g-dev -y
sudo apt-get install build-essential libssl-dev libffi-dev python-dev -y
sudo apt-get install python-setuptools -y
sudo apt-get install libldns-dev -y
sudo apt-get install python-dnspython -y
sudo apt-get install git -y
sudo apt-get install rename -y
sudo apt-get install xargs -y
sudo apt-get install golang -y
sudo apt install nodejs
sudo apt install npm
echo -e "${GREEN}This Automate Script is made by ----------------${ENDCOLOR}${RED}0xJin${ENDCOLOR}${GREEN}-----------------${ENDCOLOR}"
echo -e "${GREEN}########################################################################################################################${ENDCOLOR}"
echo -e " ${YELLOW}█████╗${ENDCOLOR} ${YELLOW}██╗ ██╗${ENDCOLOR}${YELLOW}███████╗${ENDCOLOR}${YELLOW}███████╗ ██████╗ ███╗ ███╗███████╗ ██████╗ ██╗ ██╗ ██████╗ ██████╗ ██████╗ ██╗ ██╗███╗ ██╗████████╗██╗ ██╗"
echo -e "${YELLOW}██╔══██╗${ENDCOLOR}${YELLOW}██║ ██║${ENDCOLOR}${YELLOW}██╔════╝${ENDCOLOR}${YELLOW}██╔════╝██╔═══██╗████╗ ████║██╔════╝ ██╔══██╗██║ ██║██╔════╝ ██╔══██╗██╔═══██╗██║ ██║████╗ ██║╚══██╔══╝╚██╗ ██╔╝"
echo -e "${YELLOW}███████║${ENDCOLOR}${YELLOW}██║ █╗ ██║${ENDCOLOR}${YELLOW}█████╗${ENDCOLOR} ${YELLOW}███████╗██║ ██║██╔████╔██║█████╗ ██████╔╝██║ ██║██║ ███╗██████╔╝██║ ██║██║ ██║██╔██╗ ██║ ██║ ╚████╔╝ "
echo -e "${YELLOW}██╔══██║${ENDCOLOR}${YELLOW}██║███╗██║${ENDCOLOR}${YELLOW}██╔══╝${ENDCOLOR} ${YELLOW}╚════██║██║ ██║██║╚██╔╝██║██╔══╝ ██╔══██╗██║ ██║██║ ██║██╔══██╗██║ ██║██║ ██║██║╚██╗██║ ██║ ╚██╔╝ "
echo -e "${YELLOW}██║ ██║${ENDCOLOR}${YELLOW}╚███╔███╔╝${ENDCOLOR}${YELLOW}███████${ENDCOLOR}╗${YELLOW}███████║╚██████╔╝██║ ╚═╝ ██║███████╗ ██████╔╝╚██████╔╝╚██████╔╝██████╔╝╚██████╔╝╚██████╔╝██║ ╚████║ ██║ ██║ "
echo -e "${YELLOW}╚═╝ ╚═╝${ENDCOLOR} ${YELLOW}╚══╝╚══╝${ENDCOLOR}${YELLOW}╚══════╝${ENDCOLOR}${YELLOW}╚══════╝ ╚═════╝ ╚═╝ ╚═╝╚══════╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝ "
echo -e "██████╗ ██╗ ██╗██╗██╗ ██████╗ ███████╗██████╗"
echo -e "██╔══██╗██║ ██║██║██║ ██╔══██╗██╔════╝██╔══██╗"
echo -e "██████╔╝██║ ██║██║██║ ██║ ██║█████╗ ██████╔╝"
echo -e "██╔══██╗██║ ██║██║██║ ██║ ██║██╔══╝ ██╔══██╗"
echo -e "██████╔╝╚██████╔╝██║███████╗██████╔╝███████╗██║ ██║"
echo -e "╚═════╝ ╚═════╝ ╚═╝╚══════╝╚═════╝ ╚══════╝╚═╝ ╚═╝"
echo -e "${GREEN}########################################################################################################################${ENDCOLOR}"
mkdir ~/Bugbounty
cd ~/Bugbounty/
# Install amass for find subdomains.
echo -e "${RED}Installation of AMASS OHMYGOD!${ENDCOLOR}"
sudo apt-get install amass
cd ~/Bugbounty/
echo -e "${GREEN}Successfully${ENDCOLOR}"
. <(curl -sLo- "https://git.io/progressbar")
bar::start
StuffToDo=("AMASS")
TotalSteps=${#StuffToDo[@]}
for Stuff in ${StuffToDo[@]}; do
# Do stuff
echo "Create ${Stuff} for scan every subdomain..."
StepsDone=$((${StepsDone:-0}+1))
bar::status_changed $StepsDone $TotalSteps
sleep 1
done
bar::stop
# Install HTTPX for see if someone is alive.
echo -e "${RED}Installation of HTTPX!${ENDCOLOR}"
git clone https://github.com/projectdiscovery/httpx.git
cd httpx/
cd cmd/
cd httpx/
go build
sleep 5
cp httpx /usr/local/bin
cd ~/Bugbounty/
echo -e "${GREEN}Successfully${ENDCOLOR}"
. <(curl -sLo- "https://git.io/progressbar")
bar::start
StuffToDo=("HTTPX")
TotalSteps=${#StuffToDo[@]}
for Stuff in ${StuffToDo[@]}; do
# Do stuff
echo "Create ${Stuff} for see host alive..."
StepsDone=$((${StepsDone:-0}+1))
bar::status_changed $StepsDone $TotalSteps
sleep 1
done
bar::stop
# Install GauPlus for extract WB Machines URL's.
echo -e "${RED}Gauplus for extract wayback machine URL'S${ENDCOLOR}"
git clone https://github.com/bp0lr/gauplus.git
cd gauplus/
go build
cp gauplus /usr/local/bin
cd ~/Bugbounty/
echo -e "${GREEN}Successfully${ENDCOLOR}"
. <(curl -sLo- "https://git.io/progressbar")
bar::start
StuffToDo=("Gauplus")
TotalSteps=${#StuffToDo[@]}
for Stuff in ${StuffToDo[@]}; do
# Do stuff
echo "Create ${Stuff} for extract URL's..."
StepsDone=$((${StepsDone:-0}+1))
bar::status_changed $StepsDone $TotalSteps
sleep 1
done
bar::stop
# Install KXSS for find XSS vulnerabilities.
echo -e "${RED}AHAHA This tool is AWESOME , You think i can't pwn your user?${ENDCOLOR}"
git clone https://github.com/Emoe/kxss.git
cd kxss/
go build
cp kxss /usr/local/bin
cd ~/Bugbounty/
echo -e "${GREEN}Successfully${ENDCOLOR}"
. <(curl -sLo- "https://git.io/progressbar")
bar::start
StuffToDo=("KXSS")
TotalSteps=${#StuffToDo[@]}
for Stuff in ${StuffToDo[@]}; do
# Do stuff
echo "Create ${Stuff} for pwn all users with XSS..."
StepsDone=$((${StepsDone:-0}+1))
bar::status_changed $StepsDone $TotalSteps
sleep 1
done
bar::stop
# Install SQLMAP for exploit SQL Injection vulnerabilities.
echo -e "${RED}GOOD BYE at your DATABASE${ENDCOLOR}"
sudo apt-get install sqlmap
echo -e "${GREEN}Successfully${ENDCOLOR}"
. <(curl -sLo- "https://git.io/progressbar")
bar::start
StuffToDo=("SQLMAP")
TotalSteps=${#StuffToDo[@]}
for Stuff in ${StuffToDo[@]}; do
# Do stuff
echo "Create ${Stuff} for pwn your database..."
StepsDone=$((${StepsDone:-0}+1))
bar::status_changed $StepsDone $TotalSteps
sleep 1
done
bar::stop
# Install evilwinrm
echo -e "${RED}This tool will get full access in windows${ENDCOLOR}"
git clone https://github.com/Hackplayers/evil-winrm.git
cd evil-winrm/
gem install evil-winrm
cd ~/Bugbounty/
echo -e "${GREEN}Successfully${ENDCOLOR}"
. <(curl -sLo- "https://git.io/progressbar")
bar::start
StuffToDo=("Evil-Winrm")
TotalSteps=${#StuffToDo[@]}
for Stuff in ${StuffToDo[@]}; do
# Do stuff
echo "Create ${Stuff} for pwn your Windows users..."
StepsDone=$((${StepsDone:-0}+1))
bar::status_changed $StepsDone $TotalSteps
sleep 1
done
bar::stop
# Install Arjun
echo -e "${RED}Arjun is powerfull tool for find parameter in a website${ENDCOLOR}"
git clone https://github.com/s0md3v/Arjun.git
cd Arjun/
chmod +x arjun.py
cd ~/Bugbounty/
echo -e "${GREEN}Successfully${ENDCOLOR}"
. <(curl -sLo- "https://git.io/progressbar")
bar::start
StuffToDo=("Arjun")
TotalSteps=${#StuffToDo[@]}
for Stuff in ${StuffToDo[@]}; do
# Do stuff
echo "Create ${Stuff} for fuzzing parameters..."
StepsDone=$((${StepsDone:-0}+1))
bar::status_changed $StepsDone $TotalSteps
sleep 1
done
bar::stop
# Install NoSQLMap
echo -e "${RED}Tool for hacking MongoDB${ENDCOLOR}"
git clone https://github.com/codingo/NoSQLMap.git
cd NoSQLMap/
sudo python setup.py install
sudo systemctl enable docker --now
sudo docker build -t nosqlmap .
sudo docker-compose build
sudo docker-compose run nosqlmap
cd ~/Bugbounty/
echo -e "${GREEN}Successfully${ENDCOLOR}"
. <(curl -sLo- "https://git.io/progressbar")
bar::start
StuffToDo=("MongoDB")
TotalSteps=${#StuffToDo[@]}
for Stuff in ${StuffToDo[@]}; do
# Do stuff
echo "Create ${Stuff} for pwn your non-relational DB..."
StepsDone=$((${StepsDone:-0}+1))
bar::status_changed $StepsDone $TotalSteps
sleep 1
done
bar::stop
# Install Sublist3r
echo -e "${RED}Tool for find subdomains if you don't like amass${ENDCOLOR}"
git clone https://github.com/aboul3la/Sublist3r.git
cd Sublist3r/
sudo pip install -r requirements.txt
sudo apt-get install python-requests
sudo pip install requests
sudo pip install argparse
cd ~/Bugbounty/
echo -e "${GREEN}Successfully${ENDCOLOR}"
. <(curl -sLo- "https://git.io/progressbar")
bar::start
StuffToDo=("Sublister")
TotalSteps=${#StuffToDo[@]}
for Stuff in ${StuffToDo[@]}; do
# Do stuff
echo "Create ${Stuff} for find other good subdomains..."
StepsDone=$((${StepsDone:-0}+1))
bar::status_changed $StepsDone $TotalSteps
sleep 1
done
bar::stop
# Install RustScan
echo -e "${RED}Tool for network scanning better than nmap${ENDCOLOR}"
alias rustscan='docker run -it --rm --name rustscan rustscan/rustscan:1.10.0'
echo -e "${GREEN}Successfully${ENDCOLOR}"
# Intall NMAP
echo -e "${RED}Tool for network scanning${ENDCOLOR}"
sudo apt-get install nmap
echo -e "${GREEN}Successfully${ENDCOLOR}"
# Install wapiti
echo -e "${RED}Tool for web application vulnerability scanner${ENDCOLOR}"
sudo apt-get install wapiti
echo -e "${GREEN}Successfully${ENDCOLOR}"
# Install nikto
echo -e "${RED}Tool for find CGI vulnerabilities${ENDCOLOR}"
sudo apt-get install nikto
echo -e "${GREEN}Successfully${ENDCOLOR}"
# Install hydra
echo -e "${RED}HYDRA Tool for bruteforce${ENDCOLOR}"
git clone https://github.com/vanhauser-thc/thc-hydra.git
cd thc-hydra/
./configure
sudo make install
cd ~/Bugbounty/
echo -e "${GREEN}Successfully${ENDCOLOR}"
. <(curl -sLo- "https://git.io/progressbar")
bar::start
StuffToDo=("Hydra")
TotalSteps=${#StuffToDo[@]}
for Stuff in ${StuffToDo[@]}; do
# Do stuff
echo "Create ${Stuff} for bruteforce everything..."
StepsDone=$((${StepsDone:-0}+1))
bar::status_changed $StepsDone $TotalSteps
sleep 1
done
bar::stop
# Install Utility Commands
sudo apt-get install binutils
echo -e "${GREEN}Successfully${ENDCOLOR}"
# Install php-reverse-shell.php
git clone https://github.com/pentestmonkey/php-reverse-shell.git
echo -e "${GREEN}Successfully${ENDCOLOR}"
# Powerfull tool for scanning website
echo -e "${RED}FUFF for bruteforcing directories${ENDCOLOR}"
git clone https://github.com/ffuf/ffuf
cd fuff/
go get
go build
cp ffuf /usr/local/bin
cd ~/Bugbounty/
echo -e "${GREEN}Successfully${ENDCOLOR}"
. <(curl -sLo- "https://git.io/progressbar")
bar::start
StuffToDo=("FFUF")
TotalSteps=${#StuffToDo[@]}
for Stuff in ${StuffToDo[@]}; do
# Do stuff
echo "Create ${Stuff} for fuzzing directories..."
StepsDone=$((${StepsDone:-0}+1))
bar::status_changed $StepsDone $TotalSteps
sleep 1
done
bar::stop
# Install gobuster
echo -e "${RED}GOBUSTER Another tool for Bruteforce directories${ENDCOLOR}"
apt-get install gobuster
cd ~/Bugbounty/
echo -e "${GREEN}Successfully${ENDCOLOR}"
# Installing Seclists
echo -e "${RED}Installing SECLISTS Best wordlists here${ENDCOLOR}"
git clone https://github.com/danielmiessler/SecLists.git
echo -e "${GREEN}Successfully${ENDCOLOR}"
# Install hash-identifier
echo -e "${RED}Powerfull tool for find hashes${ENDCOLOR}"
sudo apt-get install hash-identifier
echo -e "${GREEN}Successfully${ENDCOLOR}"
# Install john the ripper
echo -e "${RED}JOHN THE RIPPER best tool for cracking password${ENDCOLOR}"
apt-get install john
echo -e "${GREEN}Successfully${ENDCOLOR}"
. <(curl -sLo- "https://git.io/progressbar")
bar::start
StuffToDo=("John")
TotalSteps=${#StuffToDo[@]}
for Stuff in ${StuffToDo[@]}; do
# Do stuff
echo "Create ${Stuff} for crack all hashes..."
StepsDone=$((${StepsDone:-0}+1))
bar::status_changed $StepsDone $TotalSteps
sleep 1
done
bar::stop
# Install XSSMAP for find XSS vulnerabilities in automate.
echo -e "${RED}Install XSSMAP for find XSS vulnerabilities in automate${ENDCOLOR}"
git clone -b master https://github.com/Jewel591/xssmap.git
cd xssmap
pip3 install -r requirements.txt
chmod +x xssmap.py
cd ~/Bugbounty/
echo -e "${GREEN}Successfully${ENDCOLOR}"
. <(curl -sLo- "https://git.io/progressbar")
bar::start
StuffToDo=("XSSMAP")
TotalSteps=${#StuffToDo[@]}
for Stuff in ${StuffToDo[@]}; do
# Do stuff
echo "Create ${Stuff} for find xss vulnerabilities..."
StepsDone=$((${StepsDone:-0}+1))
bar::status_changed $StepsDone $TotalSteps
sleep 1
done
bar::stop
#Install GF powerfull tool for find parameters.
echo -e "${RED}Installing GF e PATTERNS for find parameters${ENDCOLOR}"
go get -u github.com/tomnomnom/gf
https://github.com/tomnomnom/gf.git
git clone https://github.com/1ndianl33t/Gf-Patterns
cd ~/go/bin
cp gf /usr/local/bin
mkdir /root/.gf
cd ~/Bugbounty/
cd /gf/examples
cp * /root/.gf
cd ~/Bugbounty/Gf-Patterns
cp * /root/.gf
cd ~/Bugbounty/
echo -e "${GREEN}Successfully${ENDCOLOR}"
. <(curl -sLo- "https://git.io/progressbar")
bar::start
StuffToDo=("GF")
TotalSteps=${#StuffToDo[@]}
for Stuff in ${StuffToDo[@]}; do
# Do stuff
echo "Create ${Stuff} for find all parameters vulnerable..."
StepsDone=$((${StepsDone:-0}+1))
bar::status_changed $StepsDone $TotalSteps
sleep 1
done
bar::stop
# Installing 403 Bypass.
echo -e "${RED}403 Bypass tool${ENDCOLOR}"
git clone https://github.com/iamj0ker/bypass-403.git
cd bypass-403/
chmod +x bypass-403.sh
cd ~/Bugbounty/
echo -e "${GREEN}Successfully${ENDCOLOR}"
. <(curl -sLo- "https://git.io/progressbar")
bar::start
StuffToDo=("403 Bypass")
TotalSteps=${#StuffToDo[@]}
for Stuff in ${StuffToDo[@]}; do
# Do stuff
echo "Create ${Stuff} for BYPASS everything..."
StepsDone=$((${StepsDone:-0}+1))
bar::status_changed $StepsDone $TotalSteps
sleep 1
done
bar::stop
# Install Smuggler for find HTTP-Request-Smuggling vulns.
echo -e "${RED}HTTP-request smuggling vulns.${ENDCOLOR}"
git clone https://github.com/defparam/smuggler.git
cd smuggler/
chmod +x smuggler.py
cd ~/Bugbounty/
echo -e "${GREEN}Successfully${ENDCOLOR}"
. <(curl -sLo- "https://git.io/progressbar")
bar::start
StuffToDo=("Smuggler")
TotalSteps=${#StuffToDo[@]}
for Stuff in ${StuffToDo[@]}; do
# Do stuff
echo "Create ${Stuff} for find http-request smuggling vuln..."
StepsDone=$((${StepsDone:-0}+1))
bar::status_changed $StepsDone $TotalSteps
sleep 1
done
bar::stop
# Istall API keys Scanner.
echo -e "${RED}Installing Api scanner for find Api-keys vulnerable${ENDCOLOR}"
git clone https://github.com/ozguralp/gmapsapiscanner.git
cd gmapsapiscanner/
chmod +x maps_api_scanner_python3.py
chmod +x maps_api_scanner.py
cd ~/Bugbounty/
echo -e "${GREEN}Successfully${ENDCOLOR}"
. <(curl -sLo- "https://git.io/progressbar")
bar::start
StuffToDo=("Api-keys scanner")
TotalSteps=${#StuffToDo[@]}
for Stuff in ${StuffToDo[@]}; do
# Do stuff
echo "Create ${Stuff} for check if api-keys if vulnerable..."
StepsDone=$((${StepsDone:-0}+1))
bar::status_changed $StepsDone $TotalSteps
sleep 1
done
bar::stop
# Install SSRF MAP for find SSRF vulnerabilities.
echo -e "${RED}Installing SSRF MAP for fins Server side vulnerabilities${ENDCOLOR}"
git clone https://github.com/swisskyrepo/SSRFmap
cd SSRFmap/
pip3 install -r requirements.txt
chmod +x ssrfmap.py
cd ~/Bugbounty/
echo -e "${GREEN}Successfully${ENDCOLOR}"
. <(curl -sLo- "https://git.io/progressbar")
bar::start
StuffToDo=("SSRF map scanner")
TotalSteps=${#StuffToDo[@]}
for Stuff in ${StuffToDo[@]}; do
# Do stuff
echo "Create ${Stuff} for check SSRF vulnerabilities..."
StepsDone=$((${StepsDone:-0}+1))
bar::status_changed $StepsDone $TotalSteps
sleep 1
done
bar::stop
# Installing qsreplace tool
echo -e "${RED}Installing qsreplace for change words as we want!${ENDCOLOR}"
go get -u github.com/tomnomnom/qsreplace
cd ~/go/bin
cp qsreplace /usr/local/bin
cd ~/Bugbounty/
echo -e "${GREEN}Successfully${ENDCOLOR}"
. <(curl -sLo- "https://git.io/progressbar")
bar::start
StuffToDo=("Qsreplace")
TotalSteps=${#StuffToDo[@]}
for Stuff in ${StuffToDo[@]}; do
# Do stuff
echo "Create ${Stuff} for generate some words..."
StepsDone=$((${StepsDone:-0}+1))
bar::status_changed $StepsDone $TotalSteps
sleep 1
done
bar::stop
# Installing TPLMAP for find SSTI vulnerabilities.
echo -e "${RED}Installing TPLmap for find SSTI vulnerabilities${ENDCOLOR}"
git clone https://github.com/epinna/tplmap.git
cd tplmap/
chmod +x tplmap.py
cd ~/Bugbounty/
echo -e "${GREEN}Successfully${ENDCOLOR}"
. <(curl -sLo- "https://git.io/progressbar")
bar::start
StuffToDo=("TPLmap")
TotalSteps=${#StuffToDo[@]}
for Stuff in ${StuffToDo[@]}; do
# Do stuff
echo "Create ${Stuff} for find SSTI vulns..."
StepsDone=$((${StepsDone:-0}+1))
bar::status_changed $StepsDone $TotalSteps
sleep 1
done
bar::stop
# Installing exiftool.
echo -e "${RED}Installing exiftool for inject payload in image${ENDCOLOR}"
sudo apt-get install exiftool
echo -e "${GREEN}Successfully${ENDCOLOR}"
# Installing commix for command injection.
echo -e "${RED}Installing COMMIX for command injection${ENDCOLOR}"
sudo apt-get install commix
echo -e "${GREEN}Successfully${ENDCOLOR}"
echo -e "${GREEN}DONE.. All tool are installed corretly${ENDCOLOR}"
# Installing CSRF Tool
echo -e "${RED}Installing XSRF tool${ENDCOLOR}"
git clone https://github.com/0xInfection/XSRFProbe.git
cd XSRFProbe/
python3 setup.py install
cd ~/Bugbounty/
echo -e "${GREEN}Successfully${ENDCOLOR}"
. <(curl -sLo- "https://git.io/progressbar")
bar::start
StuffToDo=("CSRF TOOL")
TotalSteps=${#StuffToDo[@]}
for Stuff in ${StuffToDo[@]}; do
# Do stuff
echo "Create ${Stuff} for find csrf vulns..."
StepsDone=$((${StepsDone:-0}+1))
bar::status_changed $StepsDone $TotalSteps
sleep 1
done
bar::stop
# Installing Paramspider tool
echo -e "${RED}Installing PARAMSPIDER tool for find vulnerable parameters${ENDCOLOR}"
git clone https://github.com/devanshbatham/ParamSpider.git
cd ParamSpider/
pip3 install -r requirements.txt
chmod +x paramspider.py
cd ~/Bugbounty/
echo -e "${GREEN}Successfully${ENDCOLOR}"
. <(curl -sLo- "https://git.io/progressbar")
bar::start
StuffToDo=("paramspider")
TotalSteps=${#StuffToDo[@]}
for Stuff in ${StuffToDo[@]}; do
# Do stuff
echo "Create ${Stuff} for find Parameters to exploit..."
StepsDone=$((${StepsDone:-0}+1))
bar::status_changed $StepsDone $TotalSteps
sleep 1
done
bar::stop
# Installing XXE Exploiter
echo -e "${RED}Installing XXE exploiter tool for find xxe vulns${ENDCOLOR}"
git clone https://github.com/luisfontes19/xxexploiter.git
cd xxexploiter/
npm install -g xxexploiter
npm install
npm run build
cd ~/Bugbounty/
echo -e "${GREEN}Successfully${ENDCOLOR}"
. <(curl -sLo- "https://git.io/progressbar")
bar::start
StuffToDo=("XXE EXPLOITER")
TotalSteps=${#StuffToDo[@]}
for Stuff in ${StuffToDo[@]}; do
# Do stuff
echo "Create ${Stuff} for find XXE vulns..."
StepsDone=$((${StepsDone:-0}+1))
bar::status_changed $StepsDone $TotalSteps
sleep 1
done
bar::stop
# Installing RUSH
echo -e "${RED}Installing RUSH TOOL${ENDCOLOR}"
git clone https://github.com/shenwei356/rush.git
cd rush/
go build
cp rush /usr/local/bin
cd ~/Bugbounty/
echo -e "${GREEN}Successfully${ENDCOLOR}"
. <(curl -sLo- "https://git.io/progressbar")
bar::start
StuffToDo=("RUSH")
TotalSteps=${#StuffToDo[@]}
for Stuff in ${StuffToDo[@]}; do
# Do stuff
echo "Create ${Stuff} i'm more fast then parallel..."
StepsDone=$((${StepsDone:-0}+1))
bar::status_changed $StepsDone $TotalSteps
sleep 1
done
bar::stop
# Installing LFISuite tool
echo -e "${RED}Installing LFI TOOL${ENDCOLOR}"
git clone https://github.com/D35m0nd142/LFISuite.git
cd LFISuite/
chmod +x lfisuite.py
cd ~/Bugbounty/
echo -e "${GREEN}Successfully${ENDCOLOR}"
. <(curl -sLo- "https://git.io/progressbar")
bar::start
StuffToDo=("LFISuite")
TotalSteps=${#StuffToDo[@]}
for Stuff in ${StuffToDo[@]}; do
# Do stuff
echo "Create ${Stuff} i want find ../../../../../etc/passwd..."
StepsDone=$((${StepsDone:-0}+1))
bar::status_changed $StepsDone $TotalSteps
sleep 1
done
bar::stop
# Installing NUCLEI + Template
echo -e "${RED}Installing NUCLEI TOOL + TEMPLATE${ENDCOLOR}"
apt-get install nuclei
git clone https://github.com/projectdiscovery/nuclei-templates.git
cd ~/Bugbounty/
echo -e "${GREEN}Successfully${ENDCOLOR}"
. <(curl -sLo- "https://git.io/progressbar")
bar::start
StuffToDo=("LFISuite")
TotalSteps=${#StuffToDo[@]}
for Stuff in ${StuffToDo[@]}; do
# Do stuff
echo "Create ${Stuff} i want find all CVES"
StepsDone=$((${StepsDone:-0}+1))
bar::status_changed $StepsDone $TotalSteps
sleep 1
done
bar::stop
echo -e "${GREEN}This Automate Script is made by ----------------${ENDCOLOR}${RED}0xJin${ENDCOLOR}${GREEN}-----------------${ENDCOLOR}"
echo -e " ${GREEN}██╗██╗███╗ ██╗${ENDCOLOR}"
echo -e " ${GREEN}██║██║████╗ ██║${ENDCOLOR}"
echo -e " ${GREEN}██║██║██╔██╗ ██║${ENDCOLOR}"
echo -e "${GREEN}██ ██║██║██║╚██╗██║${ENDCOLOR}"
echo -e "${GREEN}╚█████╔╝██║██║ ╚████║${ENDCOLOR}"
echo -e " ${GREEN}╚════╝ ╚═╝╚═╝ ╚═══╝${ENDCOLOR}"
echo -e "${GREEN}I HOPE YOU WILL GET SO MUCH MONEY FROM BUG BOUNTY :-)${ENDCOLOR}"