- Complete Cloudflare Terraform configuration (DNS, WAF, tunnels, access) - WAF Intelligence MCP server with threat analysis and ML classification - GitOps automation with PR workflows and drift detection - Observatory monitoring stack with Prometheus/Grafana - IDE operator rules for governed development - Security playbooks and compliance frameworks - Autonomous remediation and state reconciliation
42 lines
958 B
Python
42 lines
958 B
Python
"""
|
|
WAF Intelligence Engine - Analyze, audit, and generate Cloudflare WAF rules.
|
|
|
|
This module provides tools to:
|
|
- Analyze existing WAF rules for gaps and compliance issues
|
|
- Generate new WAF rules based on threat models
|
|
- Map rules to compliance frameworks (NIST, PCI-DSS, GDPR, etc.)
|
|
- Validate Terraform WAF configurations
|
|
|
|
Export primary classes and functions:
|
|
"""
|
|
|
|
from mcp.waf_intelligence.analyzer import (
|
|
WAFRuleAnalyzer,
|
|
RuleViolation,
|
|
AnalysisResult,
|
|
)
|
|
from mcp.waf_intelligence.generator import (
|
|
WAFRuleGenerator,
|
|
GeneratedRule,
|
|
)
|
|
from mcp.waf_intelligence.compliance import (
|
|
ComplianceMapper,
|
|
FrameworkMapping,
|
|
)
|
|
from mcp.waf_intelligence.orchestrator import (
|
|
WAFIntelligence,
|
|
WAFInsight,
|
|
)
|
|
|
|
__all__ = [
|
|
"WAFRuleAnalyzer",
|
|
"WAFRuleGenerator",
|
|
"ComplianceMapper",
|
|
"WAFIntelligence",
|
|
"WAFInsight",
|
|
"RuleViolation",
|
|
"AnalysisResult",
|
|
"GeneratedRule",
|
|
"FrameworkMapping",
|
|
]
|