-
Notifications
You must be signed in to change notification settings - Fork 36
/
burp.ini
69 lines (66 loc) · 2.04 KB
/
burp.ini
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
[components]
; specify modules that contain components that implment any of
; the interfaces from gds.burp.api (i.e., INewScanIssueHandler,
; IRepeaterRequestHandler, etc)
;
; ex.
; myplugins.test.TestPlugin = enabled
; myplugins.blah.* = enabled
;
; note: all components in a module will be imported, not just
; the class specified. In order to use a component to process
; requests or responses for specific tools, i.e., Component's
; that implement an interface to hook a specific tool's request
; or response (from BurpExtender.processHttpMessage), the
; component needs to be specified exactly by class under an
; option name in the [handlers] section in the format of:
;
; [handlers]
; toolname.(request|response) = Plugin1, Plugin2, ...
;
[menus]
; specify the module and class name you want enabled here
;
; ex.
; module.containing.menus.YourMenuItem = enabled
;
; or you can specify a wildcard to register all classes within
; a module that implements the IMenuItemHandler interface.
;
; ex.
; module.containing.menus.* = enabled
;
gds.burp.menu.console.ConsoleMenu = enabled
; to enable the following, you must init the burp-extensions submodule
;gds.burpext.jsonmenu.* = enabled
[handlers]
; specify the plugin classes you want enabled for each tool
; request or response (similar to Java filter chain's).
;
; ex.
; proxy.request = FuzzSomeHeaderPlugin, ManipulateRangeHeader
; proxy.response = RemoveJSInputValidationPlugin
; intruder.request = EncodeSomeValuePlugin, ManipulateRangeHeader
; intruder.response = LogResponsePlugin
;
; In the above examples, only those plugins specified for each
; tool will be called when a request or response is received AND
; implements the appropriate Interface methods.
;
; see code in `gds.burp.dispatchers.PluginDispatcher` for details
; on how this works.
;
intruder.request =
intruder.response =
proxy.request =
proxy.response =
repeater.request =
repeater.response =
scanner.request =
scanner.response =
sequencer.request =
sequencer.response =
spider.request =
spider.response =
target.request =
target.response =