explainx.ainewsletter3.5k
TrendingNewsPathwaysSkills
Pricing
explainx.ai

Upskill in AI — 16 free pathways, live workshops & bootcamps, and 50+ courses from practitioners. Plus the skills, tools, and MCP servers to practice on.

follow us

corporate training

support@explainx.ai

get started

Find your pathTake Free Evaluation

learn

pathways — start freeworkshopsbootcampscoursescertificationsmock testsexplainx universitycorporate traininglearn skills & mcp

discover

skillsmcp serversexplainx mcptoolsagentsllmsdesignsdictionaryagi trackerranks

company

aboutvisionmissionteaminstructorscommunityhackathonscareers

content

daily AI newsstate of AI — live resultsblogreleasespromptsgeneratorsresource libraryfor LLMsexplainx.ai kids

solutions

all solutionsdeveloper upskillingmarketing upskillingproduct manager upskillingleadership upskilling

newsletter · weekly

Get AI news, tools, and insights in your inbox.

supportprivacytermsdata rightshow we create contentsubmission guidelines

© 2026 AISOLO Technologies Pvt Ltd

On this page

  • TL;DR — What People Are Asking
  • The problem Antares targets
  • How Antares works (investigator loop)
  • VLoc Bench — why a new benchmark
  • Benchmark snapshot (vendor table)
  • Where Antares sits in the defender stack
  • Practical limits (read before you CI-gate)
  • Who should try it this week
  • Related on explainx.ai
← Back to blog

explainx / blog

Cisco Antares: Open-Weight SLMs for Vulnerability Localization

July 21, 2026: Cisco Foundation AI open-weights Antares-350M and Antares-1B for local vulnerability localization, plus a 500-task VLoc Bench.

Jul 24, 2026·6 min read·Yash Thakker
AI SecurityOpen WeightsCiscoVulnerability ResearchLocal LLM
go deep
Cisco Antares: Open-Weight SLMs for Vulnerability Localization

On July 21, 2026, Cisco Foundation AI introduced Antares — compact security SLMs built for one expensive job: vulnerability localization (map a CWE or advisory to the files that likely contain the flaw).

Two sizes ship open-weight now: Antares-350M and Antares-1B. A 3B sibling is in the family but not the open drop. With them comes VLoc Bench — a 500-task agentic benchmark — and a clear thesis: small models with learned search can beat token-heavy generalists on this narrow task while keeping code on-prem.

TL;DR — What People Are Asking

table · 2 cols
QuestionAnswer
What shipped?Antares-350M + Antares-1B open weights
Who?Cisco Foundation AI (Amin Karbasi et al.)
Task?Vulnerability localization — ranked files + terminal trace
Bench?VLoc Bench · 500 tasks · CWE-conditioned
Base models?IBM Granite 4.0 checkpoints
Training?SFT + GRPO (verifiable rewards on vuln repos)
3B open?Not in the July open drop
Replaces AppSec suite?No — triage aid, not full toolchain
Weekly digest3.5k readers

Catch up on AI

Curated AI updates on agents, skills, and MCP — delivered to your inbox. Unsubscribe anytime.

The problem Antares targets

Connecting public vulnerability knowledge (advisories, CWEs, databases) to your repo is slow: large trees, noisy signals, evidence scattered across files and call paths.

Static analysis helps but dumps triage debt. Frontier coding models can reason about code but are not optimized for security investigation + terminal navigation + structured localization. Antares aims at that middle ground.

Cisco’s own framing of the dual pressure: agents write more code and get better at exploiting it — so cheap, continuous verification has to sit close to the loop. Small local models are compelling because proprietary code never has to leave the machine.

How Antares works (investigator loop)

table · 2 cols
StepBehavior
StartVulnerability description / CWE-style context
SearchLook for relevant patterns in the repo
ReadInspect candidate files
ReviseIncorporate evidence; backtrack when a path is dead
OutputRanked file list + terminal exploration trace

Inspired by Cisco Foundation AI research that compact models can learn to search, reflect, revise, and backtrack — useful retrieval from strategy, not only from scale.

Workflows Cisco lists: CWE file localization, advisory-driven triage, augmenting SAST with model-driven exploration, early CI/CD review of likely vulnerable files, air-gapped / privacy-sensitive analysis.

VLoc Bench — why a new benchmark

table · 3 cols
Benchmark familyMeasuresGap
SWE-Bench-class / CodeScout-styleFind code for a software issueNot CWE/advisory localization
VLoc BenchNavigate unfamiliar repos and recognize vuln patterns for CWE categoriesSecurity-specific localization

500 tasks. Agent must navigate efficiently and recognize vulnerability patterns. That is closer to how triage actually fails than “did the agent open the right file for a feature bug?”

Benchmark snapshot (vendor table)

Numbers below are from Cisco / model-card reporting on File F1 (higher is better). Always re-run on your harness.

table · 3 cols
ModelScaleFile F1 (approx.)
GPT-5.5 (xhigh)Frontier0.229
Antares-3B (GRPO)3B0.223
Antares-1B (GRPO)1B0.209
GLM-5.2753B-class0.186
Gemini 3 ProFrontier0.152
Antares-350M (GRPO)350M0.135
Granite 4.0 1B (base)1B~0.000

explainx.ai read:

  • Post-training supplies essentially all the localization skill — base Granite is near zero under the same protocol.
  • GRPO improves File F1 and cuts run-to-run variance (Cisco reports double-digit % lifts) — important for CI.
  • Cost/runtime claims: full 500-task sweep on the order of ~15 minutes on one H100 / <$0.002 per task amortized in the technical report — orders of magnitude under some frontier API sweeps. Verify yourself.

Where Antares sits in the defender stack

Cisco ties Antares to a broader Foundation AI story:

table · 2 cols
PieceRole
Foundry Security SpecModel-agnostic blueprint for agentic security eval systems
CodeGuardSecure-by-default rules/skills for coding agents
AntaresCompact models + benchmark for repo-level localization

Compare to other Jul 2026 defender products we cover:

table · 2 cols
ProductAngle
OpenAI Daybreak / Codex SecurityAgentic defense workflows, gated cyber models
Claude SecurityAnthropic public-beta security scanning
AntaresOpen-weight, local, localization-first SLMs

Different trust boundaries: Antares optimizes for keeping source inside your network; frontier cyber products optimize for capability under access programs.

Practical limits (read before you CI-gate)

  • Localization ≠ exploit validation — ranked files still need human review.
  • Not SCA / secrets / DAST / containers — keep the rest of AppSec.
  • Antares-3B (strongest sibling in the table) is not the open July drop.
  • Phase B false-alarm rates and production FP economics need your own measurement.
  • Agent terminal navigation in CI needs the same sandbox discipline as any coding agent.

Who should try it this week

table · 2 cols
TeamMove
AppSec with air-gap rulesPull Antares-1B; run VLoc-style tasks on an internal mirror
University / public-sector securityPrefer 350M/1B local over sending repos to APIs
Platform engWire ranked-file output into existing triage queues — not as auto-close
Red/blue researchersRead the technical report; compare against your CodeScout/SWE harnesses

Related on explainx.ai

  • OpenAI Daybreak — Codex Security cyber defense
  • Claude Security Scan Fix public beta
  • Claude Mythos / Glasswing cybersecurity
  • Hugging Face autonomous agent breach
  • AI cyber guardrails blocking US defenders
  • Sakana Fugu — cyber orchestration
  • What is an agent harness?
  • Agent skills security threat verification
  • Is Claude Cowork safe?
  • Bonsai 27B — dense local models (different task)

Sources: Cisco — Introducing Antares · Cisco Foundation AI technical report / Hugging Face model cards (Jul 21, 2026)


Benchmarks and cost figures reflect Cisco Foundation AI’s July 21, 2026 materials and model cards. Security tooling results vary by codebase and harness — do not treat File F1 as a substitute for your vulnerability management SLAs.

Spotted something out of date? Let us know.
Yash Thakker

Written by

Yash Thakker

Yash is an AI expert with over 300K learners. Join his workshops →

Related posts

Jul 17, 2026

How to Run Kimi K3 Locally — Confirmed Hardware Tiers and vLLM Setup (2026)

Moonshot's Kimi K3 open weights went live July 26, 2026. This guide covers what actually changed once the download landed — confirmed license, real disk and VRAM numbers, a working vLLM serve command instead of a placeholder, and where community GGUF quants stand two days after release.

Aug 17, 2026

The AI Credit Resale Market: Is Cheap Claude/GPT Access Safe?

Sites like AI Credits, AICreditMart, and CheapCredits sell discounted Claude, GPT, and Gemini access — some backed by stolen cards, some by people simply reselling unused subscription value. For anyone routing an API key or a coding agent through one, the risk isn't just fraud.

Aug 17, 2026

Qwen Hits 3 Billion Downloads — What That Actually Measures

Alibaba's Qwen family passed 3 billion Hugging Face downloads, per an August 14, 2026 Hugging Face report — over 13x Google's count and 13x Meta's in the same window. We verified the figure against primary reporting and break down what download share tells you about an open-weight model, and what it leaves out.