-
Notifications
You must be signed in to change notification settings - Fork 0
/
bounty.yaml
68 lines (53 loc) · 1.83 KB
/
bounty.yaml
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
vars:
URL: "urls.txt"
USAGE: "rayder -w workflow.yaml URL=urls.txt"
parallel: false
modules:
- name: gau
silent: true
cmds:
- cat {{URL}} | gauu | tee gau_result.txt
- name: katana
silent: true
cmds:
- cat {{URL}} | katana -d 5 -jc -jsl -xhr -kf all -fx -fs dn | tee katana_result.txt
- name: conform
silent: true
cmds:
- cat gau_result.txt katana_result.txt | anew | tee urls_result.txt
- name: sensitive
silent: true
cmds:
- cat urls_result.txt | gff intersting_ext_bounty | httpx -silent -fc 404 | tee sensitive_result.txt
- name: lfi
silent: true
cmds:
- cat urls_result.txt | gff lfi | uro | sed 's/=.*/=/' | anew | nuclei -t ~/nuclei-tripse/dast/lfi/ -dast | tee lfi_result.txt
- name: sqli
silent: true
cmds:
- cat urls_result.txt | gff sqli | uro | sed 's/=.*/=/' | anew | nuclei -t ~/nuclei-tripse/dast/sqli/ -dast | tee sqli_result.txt
- name: xss
silent: true
cmds:
- cat urls_result.txt | gff xss | uro | sed 's/=.*/=/' | anew | dalfox pipe -o xss_result.txt
- name: ssrf
silent: true
cmds:
- cat urls_result.txt | gff ssrf | uro | sed 's/=.*/=/' | anew | nuclei -t ~/nuclei-tripse/dast/ssrf/ -dast | tee ssrf_result.txt
- name: rce
silent: true
cmds:
- cat urls_result.txt | gff rce | uro | sed 's/=.*/=/' | anew | nuclei -t ~/nuclei-tripse/dast/cmdi/ -dast | tee rce_result.txt
- name: ssti
silent: true
cmds:
- cat urls_result.txt | gff ssti | uro | sed 's/=.*/=/' | anew | nuclei -t ~/nuclei-tripse/dast/ssti/ -dast | tee ssti_result.txt
- name: nuclei
silent: true
cmds:
- cat urls_result.txt | nuclei -t ~/nuclei-tripse/bounty | tee bounty_template_result.txt
- name: clean
silent: true
cmds:
- rm -rf gau_result.txt katana_result.txt