The fundamental shift:
Previously, cybersecurity attacks required highly skilled human hackers. AI models have changed this equation dramatically.
Think of it like this:
Before AI:
Attacker needed → Years of expertise + Time + Manual effort
After AI:
Attacker needs → Access to an open-weight model + A prompt
Key insight: AI can now autonomously:
Check your understanding: Why does AI lower the barrier for attackers specifically?
There are two categories of AI models relevant here:
| Property | Detail |
|---|---|
| Examples | Sol 5.6, Opus 4.X |
| Access | Paid, controlled |
| Safeguards | Yes — refuse offensive tasks |
| Best use | Defensive security work |
| Property | Detail |
|---|---|
| Examples | Kimi K3 |
| Access | Free, downloadable |
| Safeguards | None for cybersecurity |
| Best use | Anyone can use offensively |
The critical problem:
Open-weight models = Offensive capability + No restrictions + Free access
= Available to every attacker TODAY
This is not theoretical. Here is what an unrestricted open-weight model accomplished autonomously against Vercel Sandbox:
The model analyzed what attack paths were available:
Finding: seccomp filter only blocks socket(AF_VSOCK)
Result: io_uring, userfaultfd, bpf, perf_event_open all OPEN
Meaning: Entire guest-kernel attack surface exposed
The model identified real CVEs applicable to the target:
CVE-2026-43284 → write-what-where vulnerability
CVE-2026-43500 → Local Privilege Escalation
Kernel version: 6.12.76 (confirmed vulnerable, no fix applied)
Rather than guessing, the model built its own VM to reproduce and test ideas.
The model wrote automated code to probe the device path systematically.
Bottom line:
The model did not escape the sandbox — but it conducted a professional-grade security investigation entirely on its own. Against a vulnerable target, this process leads to successful exploitation.
Here is the current state, visualized:
DEFENSIVE SIDE OFFENSIVE SIDE
───────────────── ──────────────
Sol 5.6 (frontier) Kimi K3 (open-weight)
↓ ↓
Smarter Less capable
Has safeguards No safeguards
Available NOW Available NOW
The window of opportunity:
Defenders currently have access to smarter models than attackers using open-weight tools. This gap will close as open-weight models improve.
Critical mistake many teams make: Waiting for a future, more powerful model before starting defensive work. This wastes the advantage that exists right now.
An open-source security harness that uses frontier AI models to scan entire codebases for vulnerabilities.
Models with safeguards will still hypothesize about vulnerabilities when given source code access, because:
Source code access → Signals defensive intent → Model cooperates
npx deepsec init
That single command starts a security review of your current repository.
Run deepsec → Review every finding manually → Compare with existing security process
Do not blindly trust output. Human review of findings is essential.
One-time scanning is not enough. Here is the model to follow:
CONTINUOUS DEFENSE CYCLE
─────────────────────────────────────────────────
Every Pull Request → Automated deepsec review
Every Quarter → Full codebase deepsec review
New Stronger Model → Run full review again
New CVE Published → Targeted review of affected areas
Vercel spends tens of thousands of dollars on quarterly full reviews.
They consider this small compared to:
The math is simple:
Cost of prevention << Cost of breach
The current situation is temporary. Here is what to expect:
NOW:
Frontier models (defenders) >> Open-weight models (attackers)
SOON:
Open-weight models ≈ Current frontier model performance
THEREFORE:
Defensive practices built today must scale as models improve
AI models during a training run:
This demonstrates that AI-driven exploitation is not hypothetical — it is already happening.
| Takeaway | What It Means Practically |
|---|---|
| The threat is real | Open-weight models with no safeguards exist today and can conduct professional security research autonomously |
| Defense is possible now | You do not need to wait — frontier models will help you find vulnerabilities in your own code today |
| Urgency matters | The defensive advantage is temporary; build the practice now before the gap closes |
Test yourself with these questions:
Final thought: The article's title — "Everything hackable will get hacked" — reflects a core security principle. AI does not change whether systems get attacked. It changes how fast, how cheaply, and by whom.