Skip to content

Commit e91a79e

Browse files
authored
Merge pull request #550 from refractionPOINT/lc-proxy-support
LimaCharlie basic support for Proxy rule category.
2 parents 6359223 + 27bb07b commit e91a79e

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

tools/sigma/backends/limacharlie.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,22 @@ def _mapProcessCreationOperations(node):
177177
keywordField = None,
178178
postOpMapper = None
179179
),
180+
"/proxy/": SigmaLCConfig(
181+
topLevelParams = {
182+
"event": "HTTP_REQUEST",
183+
},
184+
preConditions = None,
185+
fieldMappings = {
186+
"c-uri|contains": "event/URL",
187+
"c-uri": "event/URL",
188+
"URL": "event/URL",
189+
"cs-uri-query": "event/URL",
190+
"cs-uri-stem": "event/URL",
191+
},
192+
isAllStringValues = False,
193+
keywordField = None,
194+
postOpMapper = None
195+
),
180196
}
181197

182198
class LimaCharlieBackend(BaseBackend):

0 commit comments

Comments
 (0)