Listen to this Post

Introduction
July 2026 has fundamentally reshaped the cybersecurity, privacy, and artificial intelligence governance landscape across Europe and beyond. With the AI Omnibus (Regulation (EU) 2026/1744) entering into force on 27 July 2026, the Dutch Data Protection Authority publishing its GDPR self-assessment framework for generative AI, and the European Data Protection Board adopting groundbreaking guidelines on web scraping and anonymisation for generative AI, organisations face an unprecedented convergence of regulatory obligations. The NIS2 Directive transposition deadlines have passed, with the Dutch Cyberbeveiligingswet taking effect on 15 August 2026, and the AI Act’s transparency obligations becoming enforceable from 2 August 2026. This article provides a comprehensive technical and operational roadmap for navigating these concurrent regulatory waves.
Learning Objectives
- Understand the key regulatory changes from July 2026, including the AI Omnibus, EDPB guidelines, and NIS2 implementation updates, and their practical implications for security and privacy programmes.
- Master the technical implementation of AI transparency obligations, including machine-readable content marking, deepfake disclosure, and user notification mechanisms.
- Implement GDPR-compliant data governance for AI systems, including web scraping controls, anonymisation techniques, and legitimate interest assessments.
- Apply NIS2 cybersecurity risk-management measures across cloud infrastructure, data centres, and critical services using practical Linux and Windows commands.
- Develop a compliance roadmap that integrates AI governance, privacy, and cybersecurity requirements into a unified operational framework.
- AI Omnibus: Extended Timelines, Expanded Powers, and Immediate Transparency Obligations
What This Means
The AI Omnibus (Regulation (EU) 2026/1744) postpones certain high-risk AI compliance deadlines while simultaneously strengthening enforcement mechanisms and introducing new prohibited AI practices. Stand-alone high-risk AI systems under Annex III now have until 2 December 2027, and AI systems embedded in products covered by Annex I until 2 August 2028. However, the AI Act’s transparency obligations under 50 remain on track and become enforceable from 2 August 2026, with fines of up to €15 million or 3% of global turnover.
Critically, the European AI Office now holds exclusive supervisory responsibility for certain AI systems built on general-purpose AI models and those integrated into very large online platforms, with powers to launch investigations, compel information production, carry out inspections, and impose periodic penalty payments of up to 5% of average daily turnover.
Step‑by‑Step Guide: Implementing AI Transparency Obligations
Step 1: Classify your AI systems
Linux: Use this script to inventory AI systems across your infrastructure
sudo find /opt /usr/local /var -type f -1ame "ai" -o -1ame "model" 2>/dev/null | grep -E ".(py|js|jar|bin)$" > ai_inventory.txt
Windows PowerShell
Get-ChildItem -Path C:\ -Recurse -ErrorAction SilentlyContinue | Where-Object { $_.Name -match "ai|model|inference" } | Select-Object FullName > ai_inventory.txt
Step 2: Map each system against Annex III use cases – employment, education, credit assessment, law enforcement, critical infrastructure, and biometric identification. Document the classification using a risk matrix.
Step 3: Implement user notification mechanisms – From 2 August 2026, disclose when users are interacting with an AI system. For web applications, add a persistent banner:
<!-- HTML snippet for AI interaction disclosure --> <div id="ai-1otification" style="background:f0f0f0; padding:8px; text-align:center; font-size:14px;"> ⚡ You are interacting with an AI‑powered system. For transparency information, <a href="/ai-transparency">click here</a>. </div>
Step 4: Label AI‑generated content and deepfakes – Implement machine‑readable markings using the C2PA (Coalition for Content Provenance and Authenticity) standard. For systems already on the market before 2 August 2026, a grace period until 2 December 2026 applies.
Python: Add C2PA manifest to generated images
from c2pa import Manifest, Signer, create_from_json
manifest = Manifest.from_json({
"claim_generator": "YourCompany AI v1.0",
"format": "image/png",
"assertions": [{
"label": "ai_generated",
"data": {"model": "GPT-4o", "timestamp": "2026-08-08T00:00:00Z"}
}]
})
signer = Signer.from_der("private_key.der")
create_from_json(manifest, signer, "output.png", "signed_output.png")
Step 5: Prepare for emotion recognition and biometric categorisation notifications – Under the transparency rules, organisations must notify users when these systems are in use. Update privacy notices and consent mechanisms accordingly.
- EDPB Web Scraping and Anonymisation Guidelines: GDPR Compliance for AI Training
What This Means
On 8 July 2026, the EDPB adopted draft Guidelines 03/2026 on web scraping for generative AI and Guidelines 02/2026 on anonymisation, open for consultation until 30 October 2026. The EDPB confirms that the GDPR governs web scraping wherever personal data is collected. Key requirements include: data minimisation even for large training datasets, documented legitimate interest assessments (LIAs), and strict handling of special category personal data.
On anonymisation, the EDPB relies on three core criteria: no singling out, no linkage, and no inference.
Step‑by‑Step Guide: GDPR‑Compliant Web Scraping for AI Training
Step 1: Define precise collection criteria – Document the specific purpose of scraping, the types of data needed, and why that data is necessary.
Step 2: Respect robots.txt and ai.txt files – Implement crawler configuration to honour exclusion directives:
Python: robots.txt compliance check
import requests
from urllib.parse import urlparse
def check_robots_txt(url):
parsed = urlparse(url)
robots_url = f"{parsed.scheme}://{parsed.netloc}/robots.txt"
try:
response = requests.get(robots_url, timeout=5)
if response.status_code == 200:
if "Disallow: /" in response.text:
print(f"⚠️ {url}: scraping disallowed by robots.txt")
return False
except:
pass
return True
Step 3: Conduct a documented Legitimate Interest Assessment (LIA) – The LIA must identify the legitimate purpose, show necessity, and balance against individuals’ rights. Use this template:
| Element | Assessment |
|||
| Purpose | [Define specific, legitimate purpose] |
| Necessity | [Explain why scraping is necessary] |
| Balancing test | [Weigh business interest vs. individual rights] |
| Mitigating measures | [List measures to reduce impact, e.g., anonymisation, data minimisation] |
Step 4: Implement data minimisation – Exclude categories of websites likely to contain personal data about vulnerable individuals, and exclude sources that object to scraping:
Python: Filter sensitive domains SENSITIVE_DOMAINS = ['.gov', '.edu', '.health', '.hospital', '.clinic'] EXCLUDED_PATTERNS = ['/profile', '/account', '/user', '/patient'] def is_sensitive_url(url): for domain in SENSITIVE_DOMAINS: if domain in url: return True for pattern in EXCLUDED_PATTERNS: if pattern in url: return True return False
Step 5: Handle special category data (SCPD) – Implement detection and filtering of sensitive data (health, biometric, racial/ethnic origin, etc.):
Python: Detect sensitive personal data in scraped text
import re
SENSITIVE_PATTERNS = {
'health': r'\b(medical|diagnosis|treatment|hospital|patient|healthcare)\b',
'biometric': r'\b(fingerprint|facial|biometric|iris|DNA)\b',
'racial': r'\b(race|ethnic|nationality|origin)\b'
}
def detect_sensitive_data(text):
for category, pattern in SENSITIVE_PATTERNS.items():
if re.search(pattern, text, re.IGNORECASE):
return category
return None
- NIS2 Implementation: Governance, Cloud Security, and Incident Response
What This Means
The EU NIS2 Directive transposition deadline has passed, with national implementations now in force or imminent. The Dutch Cyberbeveiligingswet (Cbw) was adopted on 7 July 2026 and takes effect on 15 August 2026 with no transition period. The Irish NCSC published governance guidance on 7 July 2026, making it clear that cybersecurity is no longer solely a technical issue but a governance and risk‑management matter requiring active oversight at “the highest levels of executive management”. Management bodies are now accountable for failures to comply.
Cloud computing services and data centre services must ensure compliance with the NIS2 Directive, including conducting thorough assessments against Commission Implementing Regulation (EU) 2024/2690. Cloud intrusions surged by 136% during the first half of 2025 compared with all of 2024, underscoring the urgency.
Step‑by‑Step Guide: NIS2 Compliance for Cloud and Critical Infrastructure
Step 1: Identify your main establishment – Determine the applicable jurisdiction for registration. For cloud providers operating across multiple EU member states, this is critical.
Step 2: Conduct a cybersecurity risk‑management assessment – Map your existing measures against Annex of Commission Implementing Regulation (EU) 2024/2690:
Linux: Audit open ports and services (NIS2 requires network segmentation)
sudo nmap -sS -p- -T4 target_ip_range -oA nis2_network_scan
Windows: Use PowerShell for service enumeration
Get-Service | Where-Object { $_.Status -eq 'Running' } | Select-Object Name, DisplayName, StartType
Step 3: Implement incident detection and reporting – Integrate the criteria for significant incidents, as defined in Commission Implementing Regulation (EU) 2024/2690, into your incident response plans:
Python: Incident severity scoring based on NIS2 criteria
def nis2_severity_score(incident):
score = 0
if incident.get('critical_infrastructure_impact'): score += 3
if incident.get('data_breach_count', 0) > 10000: score += 2
if incident.get('service_disruption_duration', 0) > 240: score += 2 4+ hours
if incident.get('financial_loss', 0) > 1000000: score += 2
Significant if score >= 4
return 'SIGNIFICANT' if score >= 4 else 'NON-SIGNIFICANT'
Step 4: Adopt a risk‑based framework – The Irish NCSC recommends the Cyber Fundamentals (CyFun) framework. Implement foundational scoping, risk‑management measures, and ongoing review activities over a 24‑month implementation programme.
Step 5: Strengthen cloud security posture – Given the 136% surge in cloud intrusions, implement zero‑trust architecture and advanced encryption:
Azure: Enable just-in-time VM access
az vm update --resource-group MyRG --1ame MyVM --set jitPolicy.enabled=true
AWS: Enforce S3 bucket encryption
aws s3api put-bucket-encryption --bucket my-bucket --server-side-encryption-configuration '{"Rules":[{"ApplyServerSideEncryptionByDefault":{"SSEAlgorithm":"AES256"}}]}'
Step 6: Board‑level oversight – Ensure management bodies approve cybersecurity risk‑management measures, oversee implementation, undergo training, and maintain ongoing oversight. Document board decisions and establish reporting and escalation processes.
- Generative AI and GDPR: The Dutch AP Self‑Assessment Framework
What This Means
On 13 July 2026, the Dutch Data Protection Authority (AP) published a practical self‑assessment tool and guidance on generative AI systems under the GDPR. The framework addresses three phases: foundational data governance, selection of GDPR‑compliant AI systems, and ongoing governance requirements. The AP emphasises that generative AI cannot be deployed based on vague objectives – organisations must define clear, specific, and legitimate purposes.
Step‑by‑Step Guide: GDPR‑Compliant Generative AI Deployment
Step 1: Foundational data governance – Maintain an up‑to‑date record of processing activities (ROPA), map personal data flows to AI systems, implement appropriate access controls, and ensure processor agreements cover cloud providers.
-- SQL: Create a ROPA for AI processing activities CREATE TABLE ai_ropa ( id UUID PRIMARY KEY, system_name VARCHAR(255), purpose TEXT, data_categories TEXT[], legal_basis VARCHAR(100), retention_period INTERVAL, processors TEXT[], safeguards TEXT[], last_reviewed TIMESTAMP );
Step 2: Choose a GDPR‑compliant generative AI system – Apply the GDPR’s core principles: purpose limitation, data minimisation, storage limitation, integrity and confidentiality. Document the selection process and conduct a Data Protection Impact Assessment (DPIA).
Step 3: Implement ongoing governance – Establish monitoring mechanisms, conduct regular compliance audits, and update documentation. Use the AP’s questionnaire‑based tool to evaluate readiness.
Step 4: Address AI literacy – Under the AI Omnibus, providers and deployers are required to “support the development” of AI literacy, with a clarified focus on support from the Commission and Member States rather than guaranteeing specific levels for individuals.
5. Agentic AI and Emerging Governance Challenges
What This Means
On 20 July 2026, the CNIL and the French Council for AI and Digital Affairs published an exploratory note on agentic AI and personal data protection. Agentic AI systems – capable of acting autonomously in the user’s environment, using multiple services, and retaining persistent memory – introduce new risks: loss of user control, hyper‑personalisation, complex data flows, and difficulty in allocating responsibilities. The GDPR and AI Act already apply, but implementation must adapt to these more autonomous architectures.
Step‑by‑Step Guide: Governance for Agentic AI Systems
Step 1: Map agentic AI capabilities – Document all autonomous actions, data flows, and memory persistence mechanisms. Identify which services the agent interacts with and what data it accesses.
Step 2: Implement user control mechanisms – Ensure users can view, modify, and delete persistent memory. Provide clear opt‑out options for autonomous actions.
Step 3: Establish responsibility allocation – Document roles: who is the controller, who is the processor, and who is the deployer. Update vendor due diligence and product planning processes.
What Undercode Say
- Regulatory convergence is the new normal. July 2026 demonstrates that cyber, privacy, and AI governance are no longer siloed. The AI Omnibus, EDPB guidelines, and NIS2 implementations are interconnected – a breach in cloud infrastructure can trigger AI Act transparency obligations, GDPR breach notification, and NIS2 incident reporting simultaneously. Organisations must unify compliance programmes rather than managing them separately.
-
Transparency is the immediate priority. While high‑risk AI deadlines have been extended, transparency obligations under 50 of the AI Act become enforceable from 2 August 2026. With fines of up to €15 million or 3% of global turnover, organisations cannot afford to treat this as a “delay”. The AI Omnibus is not a regulatory pause – it is a recalibration that shifts focus to immediate, actionable obligations.
-
Web scraping for AI training is now under regulatory scrutiny. The EDPB guidelines make it clear that GDPR applies to web scraping wherever personal data is collected. Organisations must implement documented LIAs, data minimisation, and special category data controls. The public consultation until 30 October 2026 provides an opportunity to shape these rules.
-
Governance, not just technology. NIS2 and the AI Act both emphasise board‑level accountability. Cybersecurity is no longer solely a technical issue but a governance and risk‑management matter. Management bodies can be held accountable for failures. Security professionals must engage with boards and document decisions.
-
Agentic AI requires proactive governance. The CNIL’s exploratory note signals that regulators are already looking beyond traditional AI to autonomous systems. Organisations should not wait for final rules – they should start mapping agentic capabilities and implementing user control mechanisms now.
Prediction
-
+1 The AI Omnibus will stimulate innovation by providing extended timelines and simplified compliance for SMEs and small mid‑cap companies. Regulatory sandboxes expanded under the Omnibus will enable controlled testing of high‑risk AI systems, accelerating safe deployment.
-
+1 The EDPB’s anonymisation guidelines will create a clearer pathway for organisations to process personal data for AI training without consent, enabling responsible data sharing and innovation while maintaining privacy protections.
-
-1 The 136% surge in cloud intrusions, combined with NIS2 enforcement beginning in August 2026, will lead to a significant increase in regulatory penalties and breach notifications. Organisations that fail to implement zero‑trust architecture and advanced encryption will face substantial fines and reputational damage.
-
-1 Agentic AI systems will outpace regulatory frameworks, creating enforcement gaps and consumer protection risks. The difficulty in allocating responsibilities among actors will lead to legal disputes and regulatory uncertainty, potentially slowing adoption of beneficial autonomous systems.
-
+1 The convergence of cyber, privacy, and AI governance will drive the development of integrated compliance platforms, creating new opportunities for security professionals who can bridge these domains. Organisations that unify their compliance programmes will gain competitive advantage through operational efficiency and reduced regulatory risk.
▶️ Related Video (72% Match):
https://www.youtube.com/watch?v=-Hjt6rKR0JQ
🎯Let’s Practice For Free:
🎓 Live Courses & Certifications:
Join Undercode Academy for Verified Certifications
🚀 Request a Custom Project:
Secure, high-velocity infrastructure and disruptive technological engineering. Contact our engineering team for high-tier development and proprietary systems:
[email protected]
💎 Smart Architecture | 🛡️ Secure by Design | ⭐ Trusted by Thousands
IT/Security Reporter URL:
Reported By: Federico Pontani – Hackers Feeds
Extra Hub: Undercode MoN
Basic Verification: Pass ✅


