Skip to main content
Logo-300x300-colored-3
  • Home
  • Services
    • Offensive Security
    • Defensive Security
    • Privacy Engineering
    • AI Advisory
    • AI Assessment
    • AI Integration
  • Products
  • About
    • About Us
    • FAQ's
  • Resources
    • Blog
    • In The Media
    • Podcasts
    • All Resources
Get a Free Assessment
Back to Blog
AI Security Metasploit Agentic AI Hacker In The Loop Hugging Face Cursor

OpenAI's Models Hacked Hugging Face. Every Agentic System Needs a Hacker in the Loop

Jacob Krell August 19, 2026 7 min read
OpenAI Hugging Face
Table of Contents

     

    At a Glance

    • OpenAI's models escaped a sandboxed evaluation by discovering a zero-day in a package registry proxy, then chained privilege escalation and lateral movement to breach Hugging Face's production systems and steal ExploitGym benchmark answers.

    • The models treated the sandbox boundary as another obstacle to optimize past. This is a recurring failure mode when constraints are expressed through instructions but not independently enforced by architecture.

    • Autonomous agentic hacking systems require defense in depth, with deny-by-default network egress, capability-scoped tools, command validation, and human approval for actions that cross predefined risk thresholds.

    • A hacker without agentic tooling is slow. An agentic system without a hacker is dangerous. The future is an autonomous agent with programmatic hooks that escalate to a human operator when something crosses a boundary.

    • I've watched my own agentic tooling abandon CTF challenges to Google for writeups instead of persisting through hypotheses. This is the same underlying optimization pattern that drove OpenAI's models to hack Hugging Face for the answers rather than solve the challenges directly.

     

    OpenAI's GPT-5.6 Sol and a more capable prerelease model [compromised Hugging Face's production infrastructure](https://openai.com/index/hugging-face-model-evaluation-security-incident/) during an internal cyber-capability evaluation. The models escaped OpenAI's research environment, reached the open internet, and obtained ExploitGym solutions from Hugging Face's production database.

    The evaluation environment had infrastructure-level containment, but the models discovered an exploitable path through it. Once that path existed, model alignment was insufficient to keep them within the intended boundary.

    OpenAI ran the evaluation with reduced cyber refusals and without its normal production classifiers. Whatever containment controls were present were insufficient to prevent the models from crossing from an isolated research environment into a third party's production infrastructure. The organization responsible for both the capability and the evaluation is now proposing the access controls and guardrails that the rest of the industry should adopt.

    Why Autonomous Agents Go Off the Rails

    When I run agentic tooling against Capture the Flag (CTF) machines, the system frequently gets stuck on a challenge, abandons the hypothesis it was testing, and decides to Google for published writeups of the machine instead of persisting through more creative approaches. The model calculates that reading someone else's solution is faster than developing and testing its own. This is the same underlying optimization pattern OpenAI's models exhibited, expressed at a radically different scale. OpenAI's models were supposed to solve ExploitGym challenges. They compromised Hugging Face's production infrastructure to obtain the solutions.

    Prompt instructions are not enforceable security boundaries. They influence model behavior, but they cannot guarantee that an agent will not pursue an unintended path when that path appears to advance its objective. I've been building agentic offensive security tooling for over a year. I've had models attack targets I never specified because the agent calculated it was the fastest route, and I've watched agents attempt exploitation techniques that were explicitly excluded from engagement rules. The behavior is not sufficiently predictable to make prompt instructions the final enforcement layer.

    OpenAI's models spent "substantial inference compute" finding a way past their containment. The sandbox was an obstacle. Hugging Face's infrastructure was a resource. The model treated both accordingly.

    Programmatic Controls for Agentic Hacking Systems

    The agent runs autonomously until a hook fires. Then I step in. That is the operating model for any agentic security system that touches live infrastructure.

    The agent does the work. It scans, enumerates, exploits, and pivots without waiting for permission on every action. Prompt-based constraints cannot guarantee it will stay inside the boundaries you set, so the controls operate outside the model's reasoning loop entirely, firing only when the agent crosses a predefined threshold. The stronger design is defense in depth, with deny-by-default network egress, destination allowlists enforced below the agent layer, isolated credentials, capability-scoped tools, and human escalation when a hook trips.

    In my current tooling, I implement several layers of this architecture:

    Scope enforcement via CLI hooks. Every command the agent issues passes through a hard-coded regex filter that scans for IP addresses and hostnames, matches them against a defined scope file, and blocks anything targeting an out-of-scope address, escalating to the operator instead. These hooks catch obvious scope violations before execution, but they are one layer in the architecture. An agent can reach unintended destinations through shell variables, command substitution, DNS aliases, or API calls made through local tools. Network-level controls like deny-by-default egress and destination allowlists enforced below the agent layer prevent the evasion paths that command-level regex will miss.

    Tool-based escalation. I implement this through a Cursor hook function that intercepts the agent's CLI tool calls and checks for red flags via regex, catching things like attempted use of EternalBlue or other high-impact exploit modules before they fire. Exploitation frameworks like Metasploit, scanning tools like Nmap, and data exfiltration commands all route through this hook, which surfaces a Cursor dialog for the operator to review and approve or block before anything executes. The agent may understand that an EternalBlue attempt carries greater operational risk than directory enumeration, but understanding a policy is not the same as reliably enforcing it. That distinction is why the human operator exists.

    Denial-of-service risk guards. Agents don't understand the difference between a resilient production load balancer and a fragile development instance running on a single VM. Without rate limiting, an agent will run masscan at full speed or hammer a login endpoint with credential stuffing without considering whether the target can absorb the load. An unconstrained agent on a shared network segment can easily take down adjacent production services alongside the test environment it was scoped against. Programmatic rate limits on scanning frequency, concurrent connections, and request volume are the difference between a pentest and an outage.

    The Hybrid Model

    A hacker without agentic tooling is slow. An agentic system without a hacker is dangerous.

    Hugging Face's investigation examined more than 17,000 recorded events from a campaign involving many thousands of individual actions across a swarm of short-lived sandboxes over a weekend. A human operator running that same campaign manually needs a team and weeks of calendar time. An autonomous agent running without controls is what OpenAI just demonstrated, a capability that will find the shortest path to any objective without regard for whose infrastructure is in the way.

    The future of offensive cybersecurity sits between these two failure modes. Agents provide speed, breadth, and the ability to run dozens of attack paths simultaneously. Human operators provide authorization, contextual judgment, and accountability. Programmatic controls enforce the boundaries that neither prompts nor human vigilance can enforce alone.

    This is how I run every engagement now. The agent operates autonomously until a hook fires, and then I make the call. The false positive rate means I'm stepping in regularly, but between those interventions the agent is working at a speed and breadth no human operator can match.

    Building the Hacker-in-the-Loop Model

    OpenAI's evaluation had models operating in a sandbox whose controls failed to prevent them from crossing organizational boundaries. The outcome was predictable.

    Suzu Labs has published a full build-along walkthrough where we construct an agentic hacking system from scratch using Ollama, Metasploit, and Cursor, wiring in the command interception and human approval controls described above. The video walks through each engineering decision and provides deeper insight into agentic engineering for offensive operations. Watch the full build on our YouTube channel.

     

    Sources

    • OpenAI and Hugging Face partner to address security incident during model evaluation (OpenAI, July 21, 2026)

    • Security incident disclosure — July 2026 (Hugging Face, July 16, 2026)

    • OpenAI says its AI models hacked Hugging Face during testing (BleepingComputer, July 21, 2026)

    Share
    Tags: AI Security Metasploit Agentic AI Hacker In The Loop Hugging Face Cursor
    Jacob Krell
    Jacob Krell

    Jacob Krell builds systems that are hard to break and breaks systems that appear resilient. He is an offensive security leader specializing in advanced penetration testing and red teaming across cloud, web, mobile, Active Directory, and AI-enabled environments, helping organizations expose real-world risk and validate their defenses against modern adversaries. In parallel, he is a full-stack software engineer who develops custom cybersecurity tooling, intelligent automation platforms, and production-grade applications that embed security directly into the technology lifecycle. Ranked 25th globally on Hack The Box with more than 1,000 flags captured and holding many elite certifications, including OSCE3, CISSP, OSCP, CCNP Security, and CSIE, Jacob combines hands-on technical depth with the ability to translate complex cyber risk into clear business strategy.

    Stay ahead of the threat landscape

    AI security insights, threat intelligence, and research from our team. No spam, unsubscribe anytime.

    Subscribe
    ← Previous Your Security Appliances Are the Attack Surface

    Latest Posts

    View All
    OpenAI's Models Hacked Hugging Face. Every Agentic System Needs a Hacker in the Loop
    AI Security
    Aug 19, 2026 Jacob Krell

    OpenAI's Models Hacked Hugging Face. Every Agentic System Needs a Hacker in the Loop

    At a Glance OpenAI's models escaped a sandboxed evaluation by discovering a zero-day in a package registry proxy, then ...

    Read More: OpenAI's Models Hacked Hugging Face. Every Agentic System Needs a Hacker in the Loop
    Your Security Appliances Are the Attack Surface
    Zero-Day
    Aug 18, 2026 Jacob Krell

    Your Security Appliances Are the Attack Surface

    Your Security Appliances Are the Attack Surface Security and networking appliances now represent the most consistently ...

    Read More: Your Security Appliances Are the Attack Surface
    Trump's Hack-Back Memo: Building the Civilian Component
    AI Security
    Aug 13, 2026 Mike Bell

    Trump's Hack-Back Memo: Building the Civilian Component

    The short version On August 12, 2026, President Trump signed a National Security Presidential Memorandum (NSPM), ...

    Read More: Trump's Hack-Back Memo: Building the Civilian Component
    The Agent Identity Problem: Non-Human Identities Outnumber Humans 45 to 1 and AI Agents Are Making It Worse
    MCP Security
    Jul 24, 2026 Jacob Krell

    The Agent Identity Problem: Non-Human Identities Outnumber Humans 45 to 1 and AI Agents Are Making It Worse

    The Agent Identity Problem: Non-Human Identities Outnumber Humans 45 to 1 and AI Agents Are Making It Worse At a Glance ...

    Read More: The Agent Identity Problem: Non-Human Identities Outnumber Humans 45 to 1 and AI Agents Are Making It Worse
    CMMC's Third-Party Assessments Are Paused. The Standard of Care Isn't
    Government Security
    Jul 20, 2026 Denis Calderone

    CMMC's Third-Party Assessments Are Paused. The Standard of Care Isn't

    On July 13 the Department of War suspended Phase 2 of CMMC, the third party certification requirement that was set to ...

    Read More: CMMC's Third-Party Assessments Are Paused. The Standard of Care Isn't
    The Training Tax
    AI Economics
    Jul 20, 2026 Jacob Krell

    The Training Tax

    At a Glance Training is a one-time bill. Inference compounds.GPT-4 cost over $100M to train. Serving GPT-4o at ...

    Read More: The Training Tax
    Why Mobile Applications Need Real Penetration Testing
    Cybersecurity
    Jul 20, 2026 Suzu Labs

    Why Mobile Applications Need Real Penetration Testing

    Mobile applications have become a primary interface between organizations and their customers, handling everything from ...

    Read More: Why Mobile Applications Need Real Penetration Testing
    Cloud Security Means More Than Securing the Cloud
    Penetration Testing
    Jul 16, 2026 Suzu Labs

    Cloud Security Means More Than Securing the Cloud

    As organizations connect more IoT devices to cloud platforms, the attack surface expands well beyond the device itself. ...

    Read More: Cloud Security Means More Than Securing the Cloud
    Third-Party Risks: When Trusted Connections Become Attack Paths
    Penetration Testing
    Jul 16, 2026 Suzu Labs

    Third-Party Risks: When Trusted Connections Become Attack Paths

    Modern applications rarely operate alone. They rely on API gateways, webhooks, cloud services, SaaS platforms, and ...

    Read More: Third-Party Risks: When Trusted Connections Become Attack Paths
    VPNs Aren't the Risk. The Network Paths Around Them Are.
    Cybersecurity
    Jul 14, 2026 Suzu Labs

    VPNs Aren't the Risk. The Network Paths Around Them Are.

    Virtual Private Networks (VPNs) remain one of the most common ways organizations provide secure remote access to ...

    Read More: VPNs Aren't the Risk. The Network Paths Around Them Are.
    Top 7 AI Security Risks in 2026
    Cybersecurity
    Jul 10, 2026 Hannah Perez

    Top 7 AI Security Risks in 2026

    Quick guide: 7 AI security risks every CISO should know Data poisoning: Attackers corrupt training datasets to ...

    Read More: Top 7 AI Security Risks in 2026
    Pipeline Security Testing: Securing Your Software Supply Chain
    Penetration Testing
    Jul 09, 2026 Suzu Labs

    Pipeline Security Testing: Securing Your Software Supply Chain

    Modern development teams rely on CI/CD pipelines to build, test, and deploy software faster than ever before. But the ...

    Read More: Pipeline Security Testing: Securing Your Software Supply Chain
    Understanding API Risk: Focus on What Attackers Actually Use
    Penetration Testing
    Jul 08, 2026 Suzu Labs

    Understanding API Risk: Focus on What Attackers Actually Use

    Application Programming Interfaces (APIs) have become the backbone of modern software. They connect web applications, ...

    Read More: Understanding API Risk: Focus on What Attackers Actually Use
    Enterprise AI Security Solutions for Mid-Sized Tech 2026
    AI Security
    Jul 08, 2026 Hannah Perez

    Enterprise AI Security Solutions for Mid-Sized Tech 2026

    Finding the Right AI Security Partner for Your Growing Tech Company Your engineering team just deployed a new ...

    Read More: Enterprise AI Security Solutions for Mid-Sized Tech 2026
    MFA Gaps: Why Strong Authentication Doesn't Always Mean Strong Security
    MFA
    Jul 06, 2026 Suzu Labs

    MFA Gaps: Why Strong Authentication Doesn't Always Mean Strong Security

    Multi-factor authentication (MFA) has become a foundational security control, and for good reason. It significantly ...

    Read More: MFA Gaps: Why Strong Authentication Doesn't Always Mean Strong Security
    Understanding Application Attack Paths: Beyond the Vulnerability List
    Penetration Testing
    Jul 03, 2026 Suzu Labs

    Understanding Application Attack Paths: Beyond the Vulnerability List

    Modern web applications are made up of countless interactions between users, APIs, databases, and third-party services. ...

    Read More: Understanding Application Attack Paths: Beyond the Vulnerability List
    AI Jailbreaking: Finding the Gaps Before Attackers Do
    Cybersecurity
    Jul 01, 2026 Suzu Labs

    AI Jailbreaking: Finding the Gaps Before Attackers Do

    As organizations rapidly integrate large language models into customer-facing applications, internal tools, and ...

    Read More: AI Jailbreaking: Finding the Gaps Before Attackers Do
    Understanding Attack Paths: Seeing Security the Way an Attacker Does
    Penetration Testing
    Jul 01, 2026 Suzu Labs

    Understanding Attack Paths: Seeing Security the Way an Attacker Does

    When a security incident occurs, an audit identifies gaps, or your organization introduces new applications, cloud ...

    Read More: Understanding Attack Paths: Seeing Security the Way an Attacker Does
    The AI Industry's Prescott Moment
    LLM
    Jun 30, 2026 Jacob Krell

    The AI Industry's Prescott Moment

    Intel killed its fastest chip in 2004 because clock speed had become the wrong metric. AI is approaching the same ...

    Read More: The AI Industry's Prescott Moment
    The Kylie Effect: How Meta Just Normed the Smart Glasses Privacy Dilemma
    Data Privacy
    Jun 30, 2026 Hannah Perez

    The Kylie Effect: How Meta Just Normed the Smart Glasses Privacy Dilemma

    When tech companies first tried to put cameras on our faces, the public reaction was loud, clear, and overwhelmingly ...

    Read More: The Kylie Effect: How Meta Just Normed the Smart Glasses Privacy Dilemma
    The Extortion Market Has Matured, And the Response Industry Is Part of It
    Threat Intelligence
    Jun 25, 2026 Denis Calderone

    The Extortion Market Has Matured, And the Response Industry Is Part of It

    In May, a criminal extortion group told 9,000 schools to hire breach coaches and negotiate ransom payments ...

    Read More: The Extortion Market Has Matured, And the Response Industry Is Part of It
    The ICS Exploit Pipeline Is Built for Destruction, Not Theft
    Vulnerability Management
    Jun 22, 2026 Jacob Krell

    The ICS Exploit Pipeline Is Built for Destruction, Not Theft

    The vulnerability pipeline feeding ICS attackers is structurally optimized for breaking infrastructure, not stealing ...

    Read More: The ICS Exploit Pipeline Is Built for Destruction, Not Theft
    973 MCP Packages, 71% Single-Maintainer: A Practitioner's Guide to AI Developer Security
    Prompt Injection
    Jun 17, 2026 Jacob Krell

    973 MCP Packages, 71% Single-Maintainer: A Practitioner's Guide to AI Developer Security

    At a Glance AI security tooling adoption lags behind AI coding tool adoption by an order of magnitude. Download ratios: ...

    Read More: 973 MCP Packages, 71% Single-Maintainer: A Practitioner's Guide to AI Developer Security
    The AI Governance Gap: Verizon's 2026 DBIR Shows Attackers Scaling AI While Employees Leak Data Through It
    AI Governance
    May 28, 2026 Jacob Krell

    The AI Governance Gap: Verizon's 2026 DBIR Shows Attackers Scaling AI While Employees Leak Data Through It

    On May 20, 2026, Verizon published the 2026 Data Breach Investigations Report with a dedicated AI section built on ...

    Read More: The AI Governance Gap: Verizon's 2026 DBIR Shows Attackers Scaling AI While Employees Leak Data Through It
    The Remediation Paradox: Verizon's 2026 DBIR Shows Exploitation Winning While Defenders Patch Slower
    Mean Time to Exploit
    May 21, 2026 Jacob Krell

    The Remediation Paradox: Verizon's 2026 DBIR Shows Exploitation Winning While Defenders Patch Slower

    On May 20, 2026, Verizon published the [2026 Data Breach Investigations ...

    Read More: The Remediation Paradox: Verizon's 2026 DBIR Shows Exploitation Winning While Defenders Patch Slower
    The Extension Blind Spot: How One VS Code Plugin Gave Attackers GitHub's Source Code
    Cybersecurity
    May 20, 2026 Jacob Krell

    The Extension Blind Spot: How One VS Code Plugin Gave Attackers GitHub's Source Code

    GitHub's 3,800 Repositories Stolen Through a Single IDE Extension On May 19, 2026, a single VS Code extension on a ...

    Read More: The Extension Blind Spot: How One VS Code Plugin Gave Attackers GitHub's Source Code
    The Cost of a Click: Why Passive Cookie Consent Is Your Biggest Compliance Liability
    May 20, 2026 Hannah Perez

    The Cost of a Click: Why Passive Cookie Consent Is Your Biggest Compliance Liability

    If you think a basic pop-up banner that reads "By continuing to browse this site, you accept cookies" protects your ...

    Read More: The Cost of a Click: Why Passive Cookie Consent Is Your Biggest Compliance Liability
    Five Years of US Privacy Breach Data Tell a Story Security Leaders Cannot Ignore
    Data Privacy
    May 19, 2026 Jacob Krell

    Five Years of US Privacy Breach Data Tell a Story Security Leaders Cannot Ignore

    In April 2026 alone, the ShinyHunters extortion group breached ADT (5.5 million customers), Amtrak (2.1 million ...

    Read More: Five Years of US Privacy Breach Data Tell a Story Security Leaders Cannot Ignore
    Mean Time to Exploit Has Gone Negative. Security Strategy Has to Change.
    Vulnerability Management
    May 05, 2026 Jacob Krell

    Mean Time to Exploit Has Gone Negative. Security Strategy Has to Change.

    Mandiant's M-Trends 2026 report puts estimated mean time to exploit at negative seven days. That number should reset ...

    Read More: Mean Time to Exploit Has Gone Negative. Security Strategy Has to Change.
    When AI Billing Breaks Trust: What the Claude Code Backlash Says About AI Governance
    Prompt Injection
    Apr 30, 2026 Hannah Perez

    When AI Billing Breaks Trust: What the Claude Code Backlash Says About AI Governance

    When AI Billing Breaks Trust: Lessons from the Claude Code Backlash AI adoption is accelerating, but trust is still ...

    Read More: When AI Billing Breaks Trust: What the Claude Code Backlash Says About AI Governance
    From Army Ranger to Ethical Hacker: What Cybersecurity Can Learn from the Battlefield
    Cybersecurity
    Apr 29, 2026 Suzu Labs

    From Army Ranger to Ethical Hacker: What Cybersecurity Can Learn from the Battlefield

    Cybersecurity doesn’t start with tools, it starts with mindset. In this episode featuring Aaron Colclough, we get a ...

    Read More: From Army Ranger to Ethical Hacker: What Cybersecurity Can Learn from the Battlefield
    When Elite Cyber Teams Can't Crack Web Security
    Cybersecurity
    Apr 23, 2026 Jacob Krell

    When Elite Cyber Teams Can't Crack Web Security

    HTB's 2025 benchmark tested 796 security teams. Only 21% passed web security challenges. The Security Illusion Security ...

    Read More: When Elite Cyber Teams Can't Crack Web Security
    The Invisible Threat: Business Logic Flaws in Modern Applications and Why Scanners Miss Them
    Cybersecurity
    Apr 22, 2026 Jacob Krell

    The Invisible Threat: Business Logic Flaws in Modern Applications and Why Scanners Miss Them

    In today's security landscape, some of the most dangerous vulnerabilities aren't flagged by automated scanners at all. ...

    Read More: The Invisible Threat: Business Logic Flaws in Modern Applications and Why Scanners Miss Them
    Suzu Labs Acquires Emulated Criminals
    Apr 20, 2026 Hannah Perez

    Suzu Labs Acquires Emulated Criminals

    Bridging the gap between theory and the threat reality, Suzu Labs is proud to announce the acquisition of Emulated ...

    Read More: Suzu Labs Acquires Emulated Criminals
    The Wall Around Claude 4.7 Does Not Extend to Dread
    Cybersecurity
    Apr 17, 2026 Suzu Labs

    The Wall Around Claude 4.7 Does Not Extend to Dread

    Anthropic released Claude Opus 4.7 on April 16, 2026 with automated cybersecurity safeguards and a Cyber Verification ...

    Read More: The Wall Around Claude 4.7 Does Not Extend to Dread
    The Engagement Ratchet: How YouTube, Instagram, and Amazon Trained Users to Accept Less Control
    youtube
    Apr 10, 2026 Jacob Krell

    The Engagement Ratchet: How YouTube, Instagram, and Amazon Trained Users to Accept Less Control

    Earlier this year, YouTube began rolling out a row of algorithmically recommended videos at the top of the ...

    Read More: The Engagement Ratchet: How YouTube, Instagram, and Amazon Trained Users to Accept Less Control
    The AI Revolution: How Jobs Will Change by 2030
    Cybersecurity
    Apr 07, 2026 Suzu Labs

    The AI Revolution: How Jobs Will Change by 2030

    Host Phillip Wylie sits down with Nicolas Chaillan to discuss the sobering reality of AI replacement, the critical need ...

    Read More: The AI Revolution: How Jobs Will Change by 2030
    The Rosie Protocol: Is AI-Driven Personalized Medicine Finally Here?
    Generative AI
    Apr 01, 2026 Hannah Perez

    The Rosie Protocol: Is AI-Driven Personalized Medicine Finally Here?

    In late 2024, Sydney tech entrepreneur Paul Conyngham was told his rescue dog, Rosie, had months to live. She was ...

    Read More: The Rosie Protocol: Is AI-Driven Personalized Medicine Finally Here?
    From Analog Hacks to Agentic AI: The Evolution of Offensive Security with Denis Calderone
    Cybersecurity
    Mar 30, 2026 Suzu Labs

    From Analog Hacks to Agentic AI: The Evolution of Offensive Security with Denis Calderone

    The world of cybersecurity has undergone a massive transformation in just a few decades. In this episode of Simply ...

    Read More: From Analog Hacks to Agentic AI: The Evolution of Offensive Security with Denis Calderone
    While TSA Made Headlines, CISA Went Dark
    Critical Infrastructure
    Mar 30, 2026 Jacob Krell

    While TSA Made Headlines, CISA Went Dark

    The Department of Homeland Security has been partially shut down for over 45 days. In that time, 460 TSA officers have ...

    Read More: While TSA Made Headlines, CISA Went Dark
    The Purple Team Advantage: Bridging the Gap Between Hacking and Management with Chris Marks
    AI Security
    Mar 30, 2026 Suzu Labs

    The Purple Team Advantage: Bridging the Gap Between Hacking and Management with Chris Marks

    In cybersecurity, we often operate in silos. The red team breaks things, the blue team fixes them, and management ...

    Read More: The Purple Team Advantage: Bridging the Gap Between Hacking and Management with Chris Marks
    Claude Mythos and the Cybersecurity Risk That Was Already Here
    Threat Intelligence
    Mar 27, 2026 Jacob Krell

    Claude Mythos and the Cybersecurity Risk That Was Already Here

    On March 26, Anthropic confirmed the existence of Claude Mythos, an unreleased AI model described internally as "a step ...

    Read More: Claude Mythos and the Cybersecurity Risk That Was Already Here
    BPFdoor in Telecom Networks: The FCC Is Securing the Edge, but China's Hackers Are Already Past It
    Critical Infrastructure
    Mar 26, 2026 Mike Bell

    BPFdoor in Telecom Networks: The FCC Is Securing the Edge, but China's Hackers Are Already Past It

    Rapid7's research reveals China-linked kernel implants deep inside telecom signaling infrastructure. Here's what ...

    Read More: BPFdoor in Telecom Networks: The FCC Is Securing the Edge, but China's Hackers Are Already Past It
    Securing the AI Frontier: Suzu Labs Sweeps 4 Global InfoSec Awards 2026
    Cybersecurity
    Mar 23, 2026 Hannah Perez

    Securing the AI Frontier: Suzu Labs Sweeps 4 Global InfoSec Awards 2026

    We are incredibly proud to announce a monumental achievement. At this year’s Global InfoSec Awards 2026, hosted by ...

    Read More: Securing the AI Frontier: Suzu Labs Sweeps 4 Global InfoSec Awards 2026
    From Cockpits to Code: Josh Mason on Bridging the Gap Between Military and Cybersecurity
    Cybersecurity
    Mar 17, 2026 Suzu Labs

    From Cockpits to Code: Josh Mason on Bridging the Gap Between Military and Cybersecurity

    In the world of cybersecurity, we often talk about "gatekeeping" or the "skills gap," but rarely do we find individuals ...

    Read More: From Cockpits to Code: Josh Mason on Bridging the Gap Between Military and Cybersecurity
    Simply Offensive Podcast: The Future of Pentesting: AI, Automation, and Better Reporting with Dan DeCloss
    Cybersecurity
    Mar 16, 2026 Phillip Wylie

    Simply Offensive Podcast: The Future of Pentesting: AI, Automation, and Better Reporting with Dan DeCloss

    The Future of Pentesting: AI, Automation, and Better Reporting with Dan DeCloss In this episode of Simply Offensive, ...

    Read More: Simply Offensive Podcast: The Future of Pentesting: AI, Automation, and Better Reporting with Dan DeCloss
    From Silence to Strike: Tracking Iran's Cyber Escalation in Real Time
    Critical Infrastructure
    Mar 13, 2026 Denis Calderone

    From Silence to Strike: Tracking Iran's Cyber Escalation in Real Time

    On March 12, medical technology giant Stryker confirmed a cyberattack that wiped devices across 79 countries. The ...

    Read More: From Silence to Strike: Tracking Iran's Cyber Escalation in Real Time
    Internal Analysis: Even Realities G2 Smart Glasses Security & Privacy Investigation
    Social Engineering
    Mar 09, 2026 Suzu Labs Intelligence

    Internal Analysis: Even Realities G2 Smart Glasses Security & Privacy Investigation

    Executive Summary Even Realities markets its G2 smart glasses as the privacy-conscious alternative to Meta Ray-Bans. ...

    Read More: Internal Analysis: Even Realities G2 Smart Glasses Security & Privacy Investigation
    The Company Reviewing Your Meta Glasses Footage Has a Security Problem
    Threat Intelligence
    Mar 06, 2026 Mike Bell

    The Company Reviewing Your Meta Glasses Footage Has a Security Problem

    Last week, Swedish journalists revealed that Meta sends video footage from Meta Ray-Ban smart glasses to human data ...

    Read More: The Company Reviewing Your Meta Glasses Footage Has a Security Problem
    The Death of the CTF: How Agentic AI Is Reshaping Competitive Hacking
    CTF
    Mar 03, 2026 Jacob Krell

    The Death of the CTF: How Agentic AI Is Reshaping Competitive Hacking

    View White Paper Abstract: Agentic AI systems are compressing competitive hacking timelines faster than the ...

    Read More: The Death of the CTF: How Agentic AI Is Reshaping Competitive Hacking
    Logo copy 3-1

    Fortified Security. Intelligent Innovation.

    +1 (702) 766-6257
    P.O. Box 750111
    Las Vegas, Nevada 89136

    Follow Us

    About

    • About Us
    • Contact
    • FAQ's

    Solutions

    • AI Advisory
    • AI Assessment
    • Offensive Security
    • Defensive Security
    • Privacy Engineering
    • Adversarial Operations
    • Social Engineering
    • Products

    Resources

    • Blog
    • In The Media
    • Podcasts
    © 2026 All rights reserved.
    • Privacy Policy
    • Terms & Conditions