Rapid7 · Schema

TokenReplacement

SecurityVulnerability ManagementSIEMXDRCloud SecuritySOARApplication Security

Properties

Name Type Description
extraction_token_location string
extraction_token_regex string
injection_token_location string
injection_token_regex string
View JSON Schema on GitHub

JSON Schema

rapid7-tokenreplacement-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TokenReplacement",
  "title": "TokenReplacement",
  "properties": {
    "extraction_token_location": {
      "type": "string",
      "enum": [
        "REQUEST_URL",
        "REQUEST_HEADER",
        "REQUEST_BODY",
        "RESPONSE_HEADER",
        "RESPONSE_BODY",
        "REQUEST_COOKIE"
      ]
    },
    "extraction_token_regex": {
      "type": "string"
    },
    "injection_token_location": {
      "type": "string",
      "enum": [
        "REQUEST_URL",
        "REQUEST_HEADER",
        "REQUEST_BODY",
        "RESPONSE_HEADER",
        "RESPONSE_BODY",
        "REQUEST_COOKIE"
      ]
    },
    "injection_token_regex": {
      "type": "string"
    }
  }
}