Skip to content

Commit a09fcc1

Browse files
committed
auto gen docs update
1 parent 2b4b058 commit a09fcc1

File tree

3 files changed

+192
-74
lines changed

3 files changed

+192
-74
lines changed

SYNTAX-REFERENCE.md

+66
Original file line numberDiff line numberDiff line change
@@ -1373,6 +1373,19 @@ Fuzzing describes schema to fuzz http requests
13731373
13741374
<div class="dd">
13751375
1376+
<code>analyzer</code> <i><a href="#analyzersanalyzertemplate">analyzers.AnalyzerTemplate</a></i>
1377+
1378+
</div>
1379+
<div class="dt">
1380+
1381+
Analyzer is an analyzer to use for matching the response.
1382+
1383+
</div>
1384+
1385+
<hr />
1386+
1387+
<div class="dd">
1388+
13761389
<code>self-contained</code> <i>bool</i>
13771390
13781391
</div>
@@ -2025,6 +2038,59 @@ Appears in:
20252038

20262039

20272040

2041+
## analyzers.AnalyzerTemplate
2042+
AnalyzerTemplate is the template for the analyzer
2043+
2044+
Appears in:
2045+
2046+
2047+
- <code><a href="#httprequest">http.Request</a>.analyzer</code>
2048+
2049+
2050+
2051+
2052+
2053+
<hr />
2054+
2055+
<div class="dd">
2056+
2057+
<code>name</code> <i>string</i>
2058+
2059+
</div>
2060+
<div class="dt">
2061+
2062+
Name is the name of the analyzer to use
2063+
2064+
2065+
Valid values:
2066+
2067+
2068+
- <code>time_delay</code>
2069+
</div>
2070+
2071+
<hr />
2072+
2073+
<div class="dd">
2074+
2075+
<code>parameters</code> <i>map[string]interface{}</i>
2076+
2077+
</div>
2078+
<div class="dt">
2079+
2080+
Parameters is the parameters for the analyzer
2081+
2082+
Parameters are different for each analyzer. For example, you can customize
2083+
time_delay analyzer with sleep_duration, time_slope_error_range, etc. Refer
2084+
to the docs for each analyzer to get an idea about parameters.
2085+
2086+
</div>
2087+
2088+
<hr />
2089+
2090+
2091+
2092+
2093+
20282094
## SignatureTypeHolder
20292095
SignatureTypeHolder is used to hold internal type of the signature
20302096

nuclei-jsonschema.json

+21
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
"$id": "https://templates.-template",
44
"$ref": "#/$defs/templates.Template",
55
"$defs": {
6+
"analyzers.AnalyzerTemplate": {
7+
"properties": {
8+
"name": {
9+
"type": "string"
10+
},
11+
"parameters": {
12+
"$ref": "#/$defs/map[string]interface {}"
13+
}
14+
},
15+
"additionalProperties": false,
16+
"type": "object",
17+
"required": [
18+
"name",
19+
"parameters"
20+
]
21+
},
622
"code.Request": {
723
"properties": {
824
"matchers": {
@@ -785,6 +801,11 @@
785801
"title": "fuzzin rules for http fuzzing",
786802
"description": "Fuzzing describes rule schema to fuzz http requests"
787803
},
804+
"analyzer": {
805+
"$ref": "#/$defs/analyzers.AnalyzerTemplate",
806+
"title": "analyzer for http request",
807+
"description": "Analyzer for HTTP Request"
808+
},
788809
"self-contained": {
789810
"type": "boolean"
790811
},

0 commit comments

Comments
 (0)