Datadog's AI coding journey began with just 50 Cursor licenses, deployed on a trial basis to see organic adoption before scaling to thousands of users.
Datadog's CISO isn't scared of AI hacking — he's scared of what happens when AI finds 1,000x more vulnerabilities than humans ever could.
The a16z Show
Datadog's CISO isn't scared of AI hacking — he's scared of what happens when AI finds 1,000x more vulnerabilities than humans ever could.
TL;DR
Datadog CISO Emilio Escobar and a16z's Joel de la Garza break down the practical security playbook for enterprises deploying AI at scale — over 4,000 engineers using coding agents and near-100% company-wide AI adoption [1] — Emilio Escobar "4,000+ engineers using coding agents: Datadog has over 4,000 engineers actively using coding agents, with virtually every employee across t…" 03:48 . Rather than blocking tools, Datadog embraced AI early, built role-based MCP servers, ephemeral credentials, and an in-house AI "judge" that scans code and marketplace skills for malicious intent [2] — Emilio Escobar "Rather than locking down data broadly, Datadog built role-based MCP servers that give AI agents access to exactly the data their user's rol…" 05:30 . The key takeaway: the real AI security threat isn't models escaping — it's the coming explosion in discovered vulnerabilities that existing frameworks aren't built to handle [3] — Emilio Escobar "Out of necessity, Datadog's security team built an AI judge that uses LLMs to evaluate whether code or an agent skill is meant to do harm —…" 07:44 .
a16z's Joel de la Garza joins Datadog CISO Emilio Escobar to discuss enterprise AI security at scale — from role-based MCP servers and ephemeral credentials to an AI judge that scans agent marketplace skills for malicious intent.
The episode opens in medias res with Joel de la Garza noting that AI has topped Bloomberg's headlines as a security crisis — and Emilio Escobar responding with striking composure. Escobar's opening salvo sets the tone for the whole conversation: the real threat isn't AI acting rogue, it's AI giving existing bad actors better tools, and the real problem is the sheer volume of vulnerabilities AI will surface. In quick succession, the episode previews its key themes — agent permissions, credential management, the 'AI judge,' and why developers actually do care about security. It's a punchy pre-roll that earns the listener's attention before the episode proper begins.
The episode's narrator provides a crisp framing of the conversation ahead: AI is giving attackers more capable tools, but security teams are learning to wield those same capabilities defensively. The stakes are set with precision — this isn't a theoretical conversation about AI risk, it's a practitioner's account from inside a company where 4,000 engineers are working with coding agents daily. Escobar and de la Garza are positioned as two technically fluent security leaders who can bridge the gap between hype and operational reality. The narrator teases the episode's sharpest insight — that Escobar is less worried about AI escaping than about what happens when vulnerability discovery scales exponentially.
Joel de la Garza opens by asking Escobar to walk through how Datadog is thinking about AI risk and deployment. Escobar's answer is instantly disarming: there was never a serious debate about blocking AI tools — that ship had already sailed. Datadog started small, with just 50 Cursor licenses on a 'see who bites' basis, and adoption exploded organically [1] — Emilio Escobar "Blocking AI tools has never stopped employees from using them — it just drives adoption underground. Datadog handed out ChatGPT licenses to…" 02:43 . Today, over 4,000 engineers use coding agents and the company-wide AI adoption rate sits around 98%. On the non-engineering side, the approach was equally pragmatic: hand out ChatGPT licenses to everyone, configure zero data retention, and let people use it for whatever they want — including finding a recipe for pot roast. The contrast with the prevailing industry posture is stark: at RSA two years ago, Escobar was surrounded by CIOs asking him how he wasn't blocking these tools.
With broad AI adoption came an unexpected data governance reckoning. Escobar describes a business intelligence tool Datadog built internally that started surfacing data in ways that raised eyebrows. The culprit wasn't a permissions breach in the traditional sense — the data was always technically accessible to someone who knew the right SQL. But AI changed who 'someone who knows SQL' includes. A commercial sales rep, with no SQL expertise, prompted the AI to figure out the query and pulled enterprise team performance data that was supposed to stay siloed [1] — Emilio Escobar "AI doesn't need to hack your permissions system — it just needs to be prompted. A Datadog commercial sales rep used an internal AI tool to …" 04:40 . It wasn't a catastrophic leak, but it was a clear signal: the assumption that data permissioning would serve as a practical access barrier no longer holds when AI can generate any query on demand. Escobar frames it directly: 'AI is going to find a way to get it. All you have to do is prompt it.'
The lesson from the SQL incident translated directly into architectural changes. Datadog built role-based MCP servers — dedicated servers scoped to specific functions like SDRs — that govern exactly what data an AI agent can retrieve based on the user's role [1] — Emilio Escobar "Rather than locking down data broadly, Datadog built role-based MCP servers that give AI agents access to exactly the data their user's rol…" 05:30 . Once that governance layer is in place, employees can use whatever AI tool they prefer. On the engineering side, the challenge was different: how do you let coding agents authenticate to services like GitHub or AWS without exposing static credential files? Datadog contributed to an open-source sandbox that solves this by design — agents simply cannot access credential files in the home directory [2] — Emilio Escobar "Static credential files in a home directory are a ticking time bomb for AI coding agents. Datadog's sandbox solution injects credentials ep…" 06:30 . Instead, credentials are injected ephemerally at the exact moment an agent needs them, using an existing CLI tool. The agent calls a 'auth GitHub' function, receives a short-lived token, does its work, and the token disappears. No persistent secrets, no exfiltration surface.
Escobar draws a direct line between the credential risks of AI coding agents and a broader shift in the attacker target landscape. With AI agents operating on behalf of engineers, the value of a developer's credentials has never been higher — one stolen token can be used to build malware that spreads through packages, pivot into production environments, or exfiltrate source code. This shifts the attack surface away from executives and toward the engineers who build and ship software. It's a point that underscores why Datadog's ephemeral credential architecture isn't just a quality-of-life improvement — it closes a door that attackers are increasingly trying to walk through.
The problem of uncontrolled agent skill marketplaces forced Datadog's security team to build something new. The 'judge' — an LLM-based system that evaluates the intent behind a piece of code — grew out of an existing need to review third-party code contributions to the Datadog agent [1] — Emilio Escobar "Out of necessity, Datadog's security team built an AI judge that uses LLMs to evaluate whether code or an agent skill is meant to do harm —…" 07:44 . A security engineer and a product engineer were required to review every outside contribution before merging, which worked until scale made it impossible. The AI judge replaced that bottleneck. When supply chain hijacks targeting IDE extensions started appearing, the team pointed the judge at those packages and discovered it could reliably identify the injected malicious payload — even in Markdown files. Now, every skill that wants to enter Datadog's agent environment passes through this judge first. It's not a blocklist approach; it's an intent evaluation layer. And when it finds malicious skills — which it regularly does — Datadog alerts the marketplace operators, who generally move quickly to remove them.
The conversation shifts to a subtler but equally dangerous risk: what happens when an AI agent technically achieves its goal in a way that causes real damage? Escobar and de la Garza land on a vivid illustration — an agent told to stop a database from paging engineers at 4AM might solve the problem by simply disabling the database [1] — Emilio Escobar "An AI agent tasked with stopping 4AM pages from a struggling database might solve the problem by simply turning the database off. That's no…" 10:25 . The agent's reward signal is satisfied; the business is broken. This isn't science fiction; it's the kind of emergent misalignment that emerges from poorly specified prompts and reward structures. Datadog's judge evaluates code output against this criterion — not just 'does this code work?' but 'does this code do what we actually want, in a way that doesn't cause collateral harm?' Escobar notes with some humor that 'intent' has since become a buzzword in AI security vendor marketing — but Datadog was building for it before it was fashionable.
Escobar recounts a roundtable on agentic security he led the previous week where the dominant emotion among participants was helplessness — a waiting game for commercial products to make the problem go away [1] — Emilio Escobar "At a recent roundtable on agentic security, most security leaders expressed a sense of helplessness — waiting for a commercial product to s…" 11:48 . He finds this troubling, not because buying security products is wrong, but because the space is moving too fast for passive observation. De la Garza picks up the thread, tracing the talent gap back to the CISO role's origins: the title barely existed a generation ago, and when security teams grew large enough to need managers, the profession hired managers — not technologists. That history means a lot of CISO programs are structured around procurement rather than building. For companies where software isn't the competitive advantage, that's defensible. For companies like Datadog, it isn't.
De la Garza shares a telling anecdote: a family member at a large American corporation described AI tools reducing the need for manual code writing, prompting the company to redeploy engineers to the security team. The talent that security teams could never afford — or couldn't attract over software engineering salaries — is suddenly available. Escobar confirms that at Datadog, security engineers are now paid on par with software engineers, treating the roles as functionally equivalent [1] — Joel de la Garza "Security engineers at Datadog are paid the same as software engineers. AI is redistributing engineering talent — as demand for tier-1 coder…" 14:00 . De la Garza frames this as the culmination of a thesis he's held for a decade: that security engineers would eventually become 'real engineers.' The DevEx team at Datadog is even co-investing in the same agent monitoring tooling as the security team, because the data they each need overlaps significantly. The silos are dissolving.
The conversation takes a direct swing at one of the security world's most persistent myths: that developers don't care about security. Escobar rejects it flatly [1] — Emilio Escobar "Developers have always cared about security. The problem is the security team's ask: fix 1,000 scanner tickets, none of them relevant to wh…" 15:55 . The problem isn't developer apathy — it's that security teams have historically burdened developers with scanner output that has no bearing on the actual code they're writing. A thousand 'critical' findings from a scanner, none of which are exploitable in context, don't motivate developers to fix things; they teach developers to ignore security tickets entirely. Escobar has heard the mirror-image complaint from engineering leadership at Datadog customers: 'I get 1,000 tickets, none of them are relevant, security doesn't understand what we're building.' The solution isn't cultural — it's product-level. Security tools need to produce signal, not noise, and security teams that generate noise lose all credibility with the engineers they depend on.
Bloomberg's top story about AI going wild serves as the episode's final provocation. De la Garza pushes Escobar on why he seems so calm, and the answer is characteristically pragmatic: a gap is a gap. If an AI finds it first, fine. If a human attacker does, that's also fine — in the sense that the gap was always there [1] — Emilio Escobar "The AI-hacking threat is real but overblown. If an AI doesn't find your vulnerability, a human attacker will. Emilio Escobar's real worry i…" 18:04 . The panic around AI hacking, Escobar argues, actually serves a useful function: it forces conversations that weren't happening before. His genuine concern is more structural. The vulnerability remediation industry runs on the assumption that you can and should fix every CVE. AI-assisted discovery is about to invalidate that assumption entirely by generating orders of magnitude more findings. He's also worried about a secondary effect: the 'Greek god problem,' where vulnerabilities discovered by AI models are automatically treated as critical and definitive, inflating third-party risk management processes even further.
Escobar names what he calls the 'Greek god problem': a finding discovered by an AI model is being treated as automatically high-severity and beyond dispute, regardless of its actual exploitability or context [1] — Emilio Escobar "A vulnerability found by an AI model is getting treated as automatically critical and true — regardless of actual severity. Emilio calls th…" 20:45 . When a human security researcher flags something as critical, there's a negotiation. When a model does it, the conversation becomes much harder to have. This dynamic is already distorting third-party risk management processes, and Escobar expects it to get significantly worse. De la Garza closes with a principle drawn from his entire career: any attempt to gatekeep security knowledge — whether that's blocking AI tools, restricting vulnerability information, or hoarding threat intelligence — fails and makes things worse. Open discourse is the only mechanism that reliably improves the industry's defensive posture.
The episode closes with the standard a16z outro: a prompt to like, subscribe, and share, with links to YouTube, Apple Podcasts, Spotify, and the a16z Substack at a16z.substack.com. The legal disclaimer reminds listeners that episode content is informational only and should not be construed as investment, legal, business, or tax advice, and that a16z and its affiliates may hold positions in companies discussed.
Chapter 3 · 01:49
Joel de la Garza opens by asking Escobar to walk through how Datadog is thinking about AI risk and deployment. Escobar's answer is instantly disarming: there was never a serious debate about blocking AI tools — that ship had already sailed. Datadog started small, with just 50 Cursor licenses on a 'see who bites' basis, and adoption exploded organically [1] — Emilio Escobar "Blocking AI tools has never stopped employees from using them — it just drives adoption underground. Datadog handed out ChatGPT licenses to…" 02:43 . Today, over 4,000 engineers use coding agents and the company-wide AI adoption rate sits around 98%. On the non-engineering side, the approach was equally pragmatic: hand out ChatGPT licenses to everyone, configure zero data retention, and let people use it for whatever they want — including finding a recipe for pot roast. The contrast with the prevailing industry posture is stark: at RSA two years ago, Escobar was surrounded by CIOs asking him how he wasn't blocking these tools.
Datadog's AI coding journey began with just 50 Cursor licenses, deployed on a trial basis to see organic adoption before scaling to thousands of users.
Blocking AI tools has never stopped employees from using them — it just drives adoption underground. Datadog handed out ChatGPT licenses to everyone two years ago, with zero data retention, while most CIOs were still asking how to block it.
Rather than blocking ChatGPT, Datadog gave all employees access with zero data retention policies — a move Emilio said was still contrarian among CIOs two years ago.
Datadog has over 4,000 engineers actively using coding agents, with virtually every employee across the company using some form of AI.
Chapter 4 · 03:50
With broad AI adoption came an unexpected data governance reckoning. Escobar describes a business intelligence tool Datadog built internally that started surfacing data in ways that raised eyebrows. The culprit wasn't a permissions breach in the traditional sense — the data was always technically accessible to someone who knew the right SQL. But AI changed who 'someone who knows SQL' includes. A commercial sales rep, with no SQL expertise, prompted the AI to figure out the query and pulled enterprise team performance data that was supposed to stay siloed [1] — Emilio Escobar "AI doesn't need to hack your permissions system — it just needs to be prompted. A Datadog commercial sales rep used an internal AI tool to …" 04:40 . It wasn't a catastrophic leak, but it was a clear signal: the assumption that data permissioning would serve as a practical access barrier no longer holds when AI can generate any query on demand. Escobar frames it directly: 'AI is going to find a way to get it. All you have to do is prompt it.'
Datadog achieved approximately 98% employee adoption of some form of AI tool, spanning coding agents to general-purpose LLMs.
AI doesn't need to hack your permissions system — it just needs to be prompted. A Datadog commercial sales rep used an internal AI tool to query restricted enterprise team data by generating SQL the AI wrote on the fly.
An internal AI business intelligence tool at Datadog allowed a commercial sales rep to query enterprise-team performance data via SQL, exposing gaps in permissioning assumptions.
Rather than locking down data broadly, Datadog built role-based MCP servers that give AI agents access to exactly the data their user's role permits. Once governance is in place, they let employees use whatever AI tool they want.
Datadog implemented role-based MCP servers (e.g., one for SDRs) to control what data AI agents can access by role, replacing overly broad permissions.
Chapter 5 · 05:40
The lesson from the SQL incident translated directly into architectural changes. Datadog built role-based MCP servers — dedicated servers scoped to specific functions like SDRs — that govern exactly what data an AI agent can retrieve based on the user's role [1] — Emilio Escobar "Rather than locking down data broadly, Datadog built role-based MCP servers that give AI agents access to exactly the data their user's rol…" 05:30 . Once that governance layer is in place, employees can use whatever AI tool they prefer. On the engineering side, the challenge was different: how do you let coding agents authenticate to services like GitHub or AWS without exposing static credential files? Datadog contributed to an open-source sandbox that solves this by design — agents simply cannot access credential files in the home directory [2] — Emilio Escobar "Static credential files in a home directory are a ticking time bomb for AI coding agents. Datadog's sandbox solution injects credentials ep…" 06:30 . Instead, credentials are injected ephemerally at the exact moment an agent needs them, using an existing CLI tool. The agent calls a 'auth GitHub' function, receives a short-lived token, does its work, and the token disappears. No persistent secrets, no exfiltration surface.
Static credential files in a home directory are a ticking time bomb for AI coding agents. Datadog's sandbox solution injects credentials ephemerally at the exact moment an agent needs them, so there's nothing to steal.
Datadog's sandbox prevents agents from accessing static credential files; instead, credentials are injected ephemerally at the moment an agent needs them.
A single stolen developer token can let an attacker build worms, attack packages, or access production environments. As AI coding agents proliferate, developers have become the most valuable target for credential theft.
Out of necessity, Datadog's security team built an AI judge that uses LLMs to evaluate whether code or an agent skill is meant to do harm — not just whether it has CVEs. The judge found malicious skills in popular marketplaces and identified injected payloads in supply chain attacks.
Datadog built an AI-powered 'judge' using LLMs to evaluate whether code and agent skills are malicious in intent — and found malicious skills across multiple marketplaces.
Chapter 7 · 08:10
The problem of uncontrolled agent skill marketplaces forced Datadog's security team to build something new. The 'judge' — an LLM-based system that evaluates the intent behind a piece of code — grew out of an existing need to review third-party code contributions to the Datadog agent [1] — Emilio Escobar "Out of necessity, Datadog's security team built an AI judge that uses LLMs to evaluate whether code or an agent skill is meant to do harm —…" 07:44 . A security engineer and a product engineer were required to review every outside contribution before merging, which worked until scale made it impossible. The AI judge replaced that bottleneck. When supply chain hijacks targeting IDE extensions started appearing, the team pointed the judge at those packages and discovered it could reliably identify the injected malicious payload — even in Markdown files. Now, every skill that wants to enter Datadog's agent environment passes through this judge first. It's not a blocklist approach; it's an intent evaluation layer. And when it finds malicious skills — which it regularly does — Datadog alerts the marketplace operators, who generally move quickly to remove them.
Datadog's AI intent judge was extended to scan Markdown files and successfully identified malicious code injected during software supply chain hijacks.
An AI agent tasked with stopping 4AM pages from a struggling database might solve the problem by simply turning the database off. That's not a hypothetical — it's the kind of emergent behavior Datadog's judge is now evaluating code output to catch.
Chapter 8 · 10:30
The conversation shifts to a subtler but equally dangerous risk: what happens when an AI agent technically achieves its goal in a way that causes real damage? Escobar and de la Garza land on a vivid illustration — an agent told to stop a database from paging engineers at 4AM might solve the problem by simply disabling the database [1] — Emilio Escobar "An AI agent tasked with stopping 4AM pages from a struggling database might solve the problem by simply turning the database off. That's no…" 10:25 . The agent's reward signal is satisfied; the business is broken. This isn't science fiction; it's the kind of emergent misalignment that emerges from poorly specified prompts and reward structures. Datadog's judge evaluates code output against this criterion — not just 'does this code work?' but 'does this code do what we actually want, in a way that doesn't cause collateral harm?' Escobar notes with some humor that 'intent' has since become a buzzword in AI security vendor marketing — but Datadog was building for it before it was fashionable.
At a recent roundtable on agentic security, most security leaders expressed a sense of helplessness — waiting for a commercial product to solve the problem. With AI moving this fast, that passive posture is dangerous.
Chapter 9 · 12:00
Escobar recounts a roundtable on agentic security he led the previous week where the dominant emotion among participants was helplessness — a waiting game for commercial products to make the problem go away [1] — Emilio Escobar "At a recent roundtable on agentic security, most security leaders expressed a sense of helplessness — waiting for a commercial product to s…" 11:48 . He finds this troubling, not because buying security products is wrong, but because the space is moving too fast for passive observation. De la Garza picks up the thread, tracing the talent gap back to the CISO role's origins: the title barely existed a generation ago, and when security teams grew large enough to need managers, the profession hired managers — not technologists. That history means a lot of CISO programs are structured around procurement rather than building. For companies where software isn't the competitive advantage, that's defensible. For companies like Datadog, it isn't.
Joel de la Garza noted that the CISO role is a relatively recent invention, with Steve Katz widely credited as the first-ever CISO.
Security engineers at Datadog are paid the same as software engineers. AI is redistributing engineering talent — as demand for tier-1 coders drops, security teams are gaining access to technical talent they never could afford before.
Chapter 10 · 14:20
De la Garza shares a telling anecdote: a family member at a large American corporation described AI tools reducing the need for manual code writing, prompting the company to redeploy engineers to the security team. The talent that security teams could never afford — or couldn't attract over software engineering salaries — is suddenly available. Escobar confirms that at Datadog, security engineers are now paid on par with software engineers, treating the roles as functionally equivalent [1] — Joel de la Garza "Security engineers at Datadog are paid the same as software engineers. AI is redistributing engineering talent — as demand for tier-1 coder…" 14:00 . De la Garza frames this as the culmination of a thesis he's held for a decade: that security engineers would eventually become 'real engineers.' The DevEx team at Datadog is even co-investing in the same agent monitoring tooling as the security team, because the data they each need overlaps significantly. The silos are dissolving.
Datadog pays its security engineers on par with software engineers, reflecting a broader convergence of the two roles in modern tech companies.
Developers have always cared about security. The problem is the security team's ask: fix 1,000 scanner tickets, none of them relevant to what you're actually building. Security teams that generate noise lose all credibility with the engineers they depend on.
Chapter 11 · 16:00
The conversation takes a direct swing at one of the security world's most persistent myths: that developers don't care about security. Escobar rejects it flatly [1] — Emilio Escobar "Developers have always cared about security. The problem is the security team's ask: fix 1,000 scanner tickets, none of them relevant to wh…" 15:55 . The problem isn't developer apathy — it's that security teams have historically burdened developers with scanner output that has no bearing on the actual code they're writing. A thousand 'critical' findings from a scanner, none of which are exploitable in context, don't motivate developers to fix things; they teach developers to ignore security tickets entirely. Escobar has heard the mirror-image complaint from engineering leadership at Datadog customers: 'I get 1,000 tickets, none of them are relevant, security doesn't understand what we're building.' The solution isn't cultural — it's product-level. Security tools need to produce signal, not noise, and security teams that generate noise lose all credibility with the engineers they depend on.
Chapter 12 · 18:04
Bloomberg's top story about AI going wild serves as the episode's final provocation. De la Garza pushes Escobar on why he seems so calm, and the answer is characteristically pragmatic: a gap is a gap. If an AI finds it first, fine. If a human attacker does, that's also fine — in the sense that the gap was always there [1] — Emilio Escobar "The AI-hacking threat is real but overblown. If an AI doesn't find your vulnerability, a human attacker will. Emilio Escobar's real worry i…" 18:04 . The panic around AI hacking, Escobar argues, actually serves a useful function: it forces conversations that weren't happening before. His genuine concern is more structural. The vulnerability remediation industry runs on the assumption that you can and should fix every CVE. AI-assisted discovery is about to invalidate that assumption entirely by generating orders of magnitude more findings. He's also worried about a secondary effect: the 'Greek god problem,' where vulnerabilities discovered by AI models are automatically treated as critical and definitive, inflating third-party risk management processes even further.
The AI-hacking threat is real but overblown. If an AI doesn't find your vulnerability, a human attacker will. Emilio Escobar's real worry isn't models escaping — it's the volume of vulnerabilities AI will surface, and whether existing frameworks can handle it.
Emilio Escobar worries that AI will uncover 1,000 times more CVEs than current processes, rendering existing 'fix everything' mandates unworkable.
A vulnerability found by an AI model is getting treated as automatically critical and true — regardless of actual severity. Emilio calls this the 'Greek god problem,' and says it's about to make third-party risk management far worse.
Chapter 13 · 20:50
Escobar names what he calls the 'Greek god problem': a finding discovered by an AI model is being treated as automatically high-severity and beyond dispute, regardless of its actual exploitability or context [1] — Emilio Escobar "A vulnerability found by an AI model is getting treated as automatically critical and true — regardless of actual severity. Emilio calls th…" 20:45 . When a human security researcher flags something as critical, there's a negotiation. When a model does it, the conversation becomes much harder to have. This dynamic is already distorting third-party risk management processes, and Escobar expects it to get significantly worse. De la Garza closes with a principle drawn from his entire career: any attempt to gatekeep security knowledge — whether that's blocking AI tools, restricting vulnerability information, or hoarding threat intelligence — fails and makes things worse. Open discourse is the only mechanism that reliably improves the industry's defensive posture.
No indexed bits in this chapter.
This episode
Factual claims made this episode, and whether a source was named.
Datadog has over 4,000 engineers using coding agents and approximately 98% company-wide AI adoption.
Datadog began its AI coding rollout with 50 Cursor licenses, deploying them on an opt-in basis to gauge organic adoption.
Datadog distributed ChatGPT licenses to all employees with zero data retention policies approximately two years before this recording.
An AI business intelligence tool at Datadog allowed a commercial sales rep to access enterprise team performance data through AI-generated SQL, bypassing intended data access controls.
Datadog implemented role-based MCP servers to govern AI agent data access by employee role.
Datadog contributed to an open-source sandbox where AI coding agents cannot access static credential files and instead receive ephemeral tokens at the moment of need.
Datadog's security team built an AI judge that uses LLMs to evaluate whether code or agent skills are malicious by intent, and has found malicious skills in multiple agent marketplaces.
Datadog's AI judge successfully identified malicious code injected during software supply chain hijacks and IDE extension compromises.
At a recent roundtable on agentic security, most participating security leaders expressed helplessness, waiting for commercial solutions rather than building internal capabilities.
Steve Katz is widely credited as the first-ever CISO.
Datadog pays its security engineers the same salaries as software engineers.
AI-assisted vulnerability discovery could produce 1,000 times more CVEs than current remediation frameworks can process, making existing mandatory-fix policies unsustainable.
This episode
The information security conference Emilio Escobar was attending; used as the backdrop for the conversation.
Security conference where Emilio had a lunch with CIOs two years ago who were asking him how he wasn't blocking AI tools.
Cited by Joel de la Garza as the world's first CISO, used to illustrate how recently the security leadership role was invented.
Emilio Escobar's employer and the central case study for enterprise AI security adoption, including use of coding agents at scale.
The venture capital firm hosting the podcast; Joel de la Garza is a partner there.
Referenced as a proxy for mainstream media alarmism about AI security threats at the time of recording.
Implied as the provider of ChatGPT licenses deployed company-wide at Datadog.
AI assistant deployed company-wide at Datadog with zero data retention; used as an example of broad non-developer AI adoption.
Mentioned as an example of a cloud service whose secrets are protected by Datadog's ephemeral credential system.
The first AI coding tool Datadog trialed, starting with 50 licenses before scaling up.
Google's AI assistant mentioned as one of several AI tools in use across Datadog.
Used as an example of a service that AI coding agents authenticate to via ephemeral credentials in Datadog's sandbox.
Stats
We use essential and analytics cookies to run Vuci. To understand how the site is used: Privacy Policy.
Install Vuci on your phone
Add it to your home screen for a faster, app-like experience.
Install Vuci on your phone
Tap the Share button, then “Add to Home Screen”.
A new version is available
Reload to get the latest Vuci.