Enterprise AI RiskGenAI SecurityLLM Risk ManagementCISO AI FrameworkAI Governance EnterpriseData Leakage AIAI PolicyEnterprise LLM Security
Enterprise GenAI Risk Management Framework: A Four-Pillar Approach for CISOs
Share
Share
Enterprise adoption of generative AI has outpaced risk governance at most organisations. This framework gives security and compliance leaders a practical, board-ready structure for managing GenAI risk across four dimensions: People, Process, Policy, and Platform. Applicable regardless of which LLM vendors or deployment models your organisation uses.
The Five GenAI Risks Boards Care About
When boards and C-suite executives ask about GenAI risk, they are typically asking about five categories:
Data leakage — Confidential business data, customer PII, or IP sent to third-party LLM APIs and used for model training
Hallucination and misinformation — AI-generated content presented as fact causing regulatory, legal, or reputational harm
Intellectual property exposure — Model outputs that reproduce copyrighted training data; code generation that incorporates open-source code under incompatible licences
Regulatory non-compliance — AI decisions that violate employment law, financial regulation, privacy law, or sector-specific AI governance rules
Feng Ning (风宁)
11 min read
...
Supply chain and model risk — Compromised model weights, poisoned fine-tuning data, malicious plugins, or insecure AI API dependencies
Most GenAI risk frameworks address one or two of these. This framework addresses all five systematically.
The Four-Pillar GenAI Risk Framework
Pillar 1: People — Governance Ownership and AI Literacy
The governance problem: Most organisations have no clear owner for GenAI risk. IT owns infrastructure, Legal owns contracts, HR owns usage policies, and the CISO owns security incidents — but nobody owns the intersection where all four meet in a GenAI deployment.
Required roles:
| Role | Responsibility | Trigger for Escalation |
|------|----------------|----------------------|
| CISO | Security controls, model risk, incident response | Data breach, adversarial attack, model failure |
| Chief AI Officer (or DPO) | Regulatory compliance, data governance, ethics review | Regulatory inquiry, bias complaint, AI act audit |
| General Counsel | IP risk, contractual liability, employment law compliance | IP claim, wrongful termination using AI, regulatory action |
| Business AI Champions | Use-case validation, user training, feedback collection | Hallucination-caused business error, misuse incident |
| Model Risk Officer | Model validation, drift monitoring (for MAS-regulated entities) | Performance degradation, MAS TRAI preparation |
AI literacy programme: The most common GenAI security incident is an employee sending confidential data to a public LLM API because they didn't know it was prohibited. Before technical controls, run a targeted awareness programme:
What data classifications can and cannot be sent to GenAI tools
How to verify AI-generated outputs before acting on them
How to report suspected GenAI security incidents
What the organisation's approved AI tools are (versus unsanctioned ones)
Shadow AI problem: Employees who cannot access approved GenAI tools will find unsanctioned ones. The governance goal is not prohibition — it is controlled enablement. Organisations that restrict access without providing approved alternatives consistently experience higher shadow AI usage.
Pillar 2: Process — AI Lifecycle Governance
The process gap: Most organisations apply security and compliance review to software they build but not to AI they procure. A new CRM vendor gets procurement due diligence; a new LLM API integration gets none.
Required processes:
AI use-case intake:
Before any GenAI tool is deployed, require a structured intake that captures:
What data will be processed? (Classification: public / internal / confidential / restricted)
What decisions will be influenced by AI output? (Impact: low / medium / high / critical)
Who is the business owner? Who reviews AI outputs before action?
Which regulations apply? (PDPA, MAS TRM, employment law, sector rules)
What is the rollback plan if the AI system fails or produces harmful outputs?
AI vendor due diligence checklist:
System Output
☐ Data processing agreement: Does the vendor commit not to train on customer data?
☐ Data residency: Is data processed in Singapore / approved jurisdictions?
☐ Model transparency: What model version? What training cutoff? What safety training?
☐ Security certifications: SOC 2 Type II, ISO 27001, CSA STAR?
☐ Incident notification: What is the vendor's SLA for notifying customers of breaches?
☐ Right to audit: Can we audit the vendor's AI security controls?
☐ Model update policy: How are customers notified of model version changes?
☐ Data retention: How long does the vendor retain conversation data?
AI output review process: For high-impact AI uses (customer communications, financial analysis, medical information, HR decisions), implement a mandatory human review step before AI output is acted upon. Define:
What percentage of outputs are reviewed (statistical sampling for low-risk; 100% for high-risk)
Who reviews (domain expert, not the AI user)
What constitutes a review failure requiring escalation
How review decisions and overrides are logged
Incident response for AI failures: Extend your existing incident response plan to cover GenAI-specific failure modes:
Data exfiltration via prompt injection
Hallucinated financial or legal advice acted upon
AI-generated phishing content using company credentials
Vendor AI API outage affecting business operations
Pillar 3: Policy — Acceptable Use and Data Classification
The policy requirement: Employees need clear, actionable rules — not a 40-page AI ethics document. The most effective GenAI policies are short, specific, and linked to data classification.
Recommended GenAI Acceptable Use Policy structure:
Always allowed (no approval required):
Processing publicly available information with approved AI tools
Drafting internal communications (non-sensitive)
Code suggestions for non-production, non-sensitive code
Summarising public research papers and articles
Brainstorming and ideation without confidential context
Allowed with care (with specific controls):
Customer communications: must be reviewed before sending; no customer PII in prompt
Code generation for production systems: must pass security review; no credentials in prompt
Internal analysis using internal data: use only approved enterprise AI tools with DPA in place
Competitive research synthesis: mark AI-generated content clearly; human verification required
Never allowed (prohibited):
Sending customer PII, financial records, or health data to public LLM APIs
Using AI to generate or modify audit trails, compliance records, or legal documents without human attestation
Using AI to make final employment decisions (hire, fire, promote) without documented human review
Sending code containing authentication credentials, API keys, or connection strings to any AI tool
Data classification alignment:
| Data Class | Examples | Approved AI Tools | Prohibited |
|-----------|----------|------------------|------------|
| Public | Marketing copy, public docs | Any approved tool | None |
| Internal | Strategy docs, org charts | Enterprise AI (with DPA) | Public AI APIs |
| Confidential | Customer data, financial records | Enterprise AI (Singapore-hosted) | All third-party APIs |
| Restricted | Trade secrets, M&A info | None (AI prohibited) | All AI tools |
Pillar 4: Platform — Technical Controls
The technical layer: Policies without controls are intentions. The platform layer makes policies enforceable.
Data Loss Prevention (DLP) for AI:
Traditional DLP tools detect PII, credit card numbers, and classified data in emails and file transfers. Modern DLP must extend to AI API calls:
Intercept API calls to LLM endpoints (OpenAI, Anthropic, Google, Azure OpenAI)
Scan prompt content for classified data before transmission
Block or alert on prompts containing PII, financial identifiers, or confidential terms
Log all API calls with user identity, prompt hash, and data classification verdict
Enterprise AI gateway tools (including Azure AI Content Safety, AWS Guardrails for Bedrock, and Anthropic's Constitutional AI layer) provide native DLP capabilities. For organisations using multiple LLM providers, a centralised AI gateway with unified policy enforcement is more practical than per-vendor configuration.
Prompt injection defence:
For any AI application that processes user-supplied content and has access to tools, data, or external systems:
Implement instruction-pattern filtering on user inputs
Separate user content from system instructions at the prompt construction layer (not just in system prompt text)
Apply content safety classifiers to both inputs and outputs
Implement hard limits on AI-initiated actions (require explicit user confirmation for any action with external effects)
Model output monitoring:
System Output
AI Output Monitoring Checklist:
├── Hallucination detection: fact-check high-stakes outputs against authoritative sources
├── Toxicity filtering: screen outputs for harmful, discriminatory, or inappropriate content
├── PII detection in outputs: prevent AI from revealing PII from RAG corpus
├── Citation tracking: log what retrieved content informed each response
├── Confidence calibration: flag low-confidence outputs for human review
└── Anomaly detection: alert on unusual output patterns (sudden topic shifts, refusal spikes)
Approved AI tool registry:
Maintain a centralised registry of approved AI tools, updated quarterly:
| Tool Category | Approved | Data Class Limit | Review Cycle |
|--------------|---------|-----------------|-------------|
| Coding assistant | GitHub Copilot (Enterprise) | Internal | Quarterly |
| Document drafting | Microsoft 365 Copilot | Confidential | Quarterly |
| Customer service | [Vendor-specific with DPA] | Confidential | Quarterly |
| Security analysis | Nora Veridic | Restricted | Annual |
| Public research | Claude.ai (free tier) | Public only | Annual |
Mapping GenAI Risks to Controls
| GenAI Risk | People Control | Process Control | Policy Control | Platform Control |
|-----------|---------------|-----------------|----------------|-----------------|
| Data leakage | AI literacy training | Vendor DPA requirement | Data classification rules | DLP on AI API calls |
| Hallucination | Human review requirement | Output review process | "Verify before act" rule | Confidence thresholds |
| IP exposure | Legal awareness | IP risk assessment in intake | No copyrighted reproduction | Output scanning |
| Regulatory breach | Compliance owner | Use-case intake form | Prohibited uses list | Audit logging |
| Supply chain risk | Vendor scrutiny | Due diligence checklist | Approved tool registry | Model hash verification |
| Prompt injection | Security awareness | Incident response | Prohibited external content | Input sanitisation |
Implementation Roadmap: 90 Days to Baseline Governance
Days 1–30: Governance foundation
Assign GenAI risk ownership (CISO + legal + business lead)
Publish Acceptable Use Policy (start simple, update quarterly)
Create AI tool registry with current deployed tools
Run initial AI literacy training for all staff
Days 31–60: Process implementation
Deploy AI use-case intake process
Complete vendor due diligence for all current AI tools
Implement DLP scanning on primary LLM API endpoints
Establish AI output review process for highest-risk use cases
Days 61–90: Platform controls
Deploy centralised AI gateway (if using 3+ LLM providers)
Implement prompt injection defences on production AI applications
Establish AI incident response procedure
Run first AI risk assessment against use-case inventory
Singapore-Specific Considerations
MAS-regulated entities: GenAI risk management must satisfy MAS TRM Section 6.4 adversarial robustness requirements. The Four-Pillar Framework maps directly to MAS TRM governance requirements but requires additional:
Independent model validation evidence
Drift monitoring with 24h alert thresholds
Inference audit trails meeting MAS Notice 644 retention standards
PDPA compliance: All four pillars must reflect Singapore's PDPA requirements. The Policy pillar's data classification table should align with PDPA sensitivity categories. The Platform pillar's DLP must prevent transmission of Singapore NRIC, passport numbers, and financial identifiers to non-PDPC-compliant AI processors.
AI Verify alignment: The Four-Pillar Framework aligns with Singapore's AI Verify Foundation toolkit requirements, particularly the Governance and Accountability domain. Organisations implementing all four pillars can use the resulting documentation as AI Verify evidence for the governance assessment.
How Innora.ai Supports Enterprise GenAI Risk
AI Security Audit — Gap assessment against the Four-Pillar Framework with deliverables structured for board presentation and regulatory examination
Founder of Innora.ai. Sovereign Architect bridging offensive security and autonomous coding. Building the Autonomous Architect reality with zero external dependencies.