File tree 3 files changed +192
-74
lines changed
3 files changed +192
-74
lines changed Original file line number Diff line number Diff line change @@ -1373,6 +1373,19 @@ Fuzzing describes schema to fuzz http requests
1373
1373
1374
1374
<div class="dd">
1375
1375
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
+
1376
1389
<code>self-contained</code> <i>bool</i>
1377
1390
1378
1391
</div>
@@ -2025,6 +2038,59 @@ Appears in:
2025
2038
2026
2039
2027
2040
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
+
2028
2094
# # SignatureTypeHolder
2029
2095
SignatureTypeHolder is used to hold internal type of the signature
2030
2096
Original file line number Diff line number Diff line change 3
3
"$id" : " https://templates.-template" ,
4
4
"$ref" : " #/$defs/templates.Template" ,
5
5
"$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
+ },
6
22
"code.Request" : {
7
23
"properties" : {
8
24
"matchers" : {
785
801
"title" : " fuzzin rules for http fuzzing" ,
786
802
"description" : " Fuzzing describes rule schema to fuzz http requests"
787
803
},
804
+ "analyzer" : {
805
+ "$ref" : " #/$defs/analyzers.AnalyzerTemplate" ,
806
+ "title" : " analyzer for http request" ,
807
+ "description" : " Analyzer for HTTP Request"
808
+ },
788
809
"self-contained" : {
789
810
"type" : " boolean"
790
811
},
You can’t perform that action at this time.
0 commit comments