DEV Community

Cover image for Live WAF and Security Rule Tuning — No Java Restart (Kiponos SDK)
Devops Kiponos
Devops Kiponos

Posted on • Originally published at github.com

Live WAF and Security Rule Tuning — No Java Restart (Kiponos SDK)

During an attack, security teams tighten WAF rules now. During false-positive storms, they loosen them now. Java gateways read live policy:

int botThreshold = kiponos.path("waf", "bot").getInt("block_score");
boolean strictMode = kiponos.path("waf", "modes").getBool("strict");
Enter fullscreen mode Exit fullscreen mode

SOC edits thresholds in Kiponos; next HTTP evaluation uses new values. No gateway pod restart mid-incident.

kiponos.io · github.com/kiponos-io/kiponos-io

Top comments (0)