You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `before` and `after` properties are optional (there may be no content before/after the matched text) and will contain at most 25 bytes of content appearing before and after the match.
54
+
The `before` and `after` properties are optional (there may be no content before/after the matched text) and will contain at most 15 bytes of content appearing before and after the match.
47
55
48
56
Below are a few examples of payload matches:
49
57
@@ -52,15 +60,15 @@ Below are a few examples of payload matches:
52
60
"http.request.uri": {
53
61
"before": "/admin",
54
62
"content": "/.git/",
55
-
"after": "config",
63
+
"after": "config"
56
64
}
57
65
}
58
66
```
59
67
60
68
```json title="Header value match"
61
69
{
62
70
"http.request.headers.values[3]": [
63
-
{ "content": "phar://", "after": "example" },
71
+
{ "content": "phar://", "after": "example" }
64
72
]
65
73
}
66
74
```
@@ -70,7 +78,7 @@ Below are a few examples of payload matches:
70
78
"http.request.body.raw": {
71
79
"before": "NY>",
72
80
"content": "<!ENTITY xxe SYSTEM \"file:///dev/random\">] > ",
0 commit comments