How to: Change Bot Anomaly Configuration¶
In this example, we override the score and action of the default bot configuration:
{
"policy": {
"name": "bot_anomalies_and_signatures",
"template": {
"name": "POLICY_TEMPLATE_RATING_BASED"
},
"applicationLanguage": "utf-8",
"enforcementMode": "blocking",
"bot-defense": {
"mitigations": {
"anomalies": [
{
"name": "Suspicious HTTP Headers",
"action": "alarm",
"scoreThreshold": 50
},
{
"name": "Invalid HTTP Headers",
"action": "block",
"scoreThreshold": 99
}
]
}
}
}
}