Implemented chaining multiple encoding techniques for data transformation.

This commit is contained in:
Jakob Friedl
2025-11-21 20:14:21 +01:00
parent 6a20c25085
commit fb78ae16cc
5 changed files with 65 additions and 25 deletions

View File

@@ -44,9 +44,12 @@ suffix = ".######################################-####"
# placement = { type = "query", name = "id" }
# encoding = { type = "hex" }
# Example: Raw data in GET request body
# Example: Data encoded with multiple techniques in GET request body
# placement = { type = "body" }
# encoding = { "none" }
# encoding = [
# { type = "rot", key = 5 },
# { type = "base64" }
# ]
# Defines arbitrary URI parameters that are added to the request
[http-get.agent.parameters]