Initial commit: Cloudflare infrastructure with WAF Intelligence
- 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
This commit is contained in:
41
mcp/waf_intelligence/__init__.py
Normal file
41
mcp/waf_intelligence/__init__.py
Normal file
@@ -0,0 +1,41 @@
|
||||
"""
|
||||
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",
|
||||
]
|
||||
Reference in New Issue
Block a user