-
Notifications
You must be signed in to change notification settings - Fork 36
/
config-example.yaml
42 lines (39 loc) · 1.11 KB
/
config-example.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
rules:
CallbackFuzz:
description: Test for open redirects and potential SSRFs by checking for certain responses or callbacks to your server
extraParams:
- "url"
- "redirectUri"
injections:
- "http://[[domain]].example.net/"
- "//example.net?targetUrl=[[fullurl]]"
- "https://example.net?target=[[domain]][[path]]"
expectation:
responseContents:
- Example Domain
SqlInjectionCheck:
description: Test for potential SQL injections by injecting characters to break SQL statements
injections:
- "[[originalvalue]]'"
- )
expectation:
responseCodes:
- 500
heuristics:
injection: "[[originalvalue]]''"
baselineMatches:
- "responseCode"
XssDetection:
description: Test for XSS by discovering potentially unsanitized/encoded input in responses
extraParams:
- "param"
injections:
- '[[originalvalue]]"><h2>asd</h2>'
expectation:
responseContents:
- '<h2>asd</h2>'
responseHeaders:
Content-Type: html
slack:
channel: "#channel-name"
botToken: "MY-BOT-TOKEN"