惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

J
Java Code Geeks
博客园 - 司徒正美
博客园 - 【当耐特】
爱范儿
爱范儿
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
IT之家
IT之家
人人都是产品经理
人人都是产品经理
雷峰网
雷峰网
酷 壳 – CoolShell
酷 壳 – CoolShell
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
大猫的无限游戏
大猫的无限游戏
月光博客
月光博客
宝玉的分享
宝玉的分享
V
V2EX
S
SegmentFault 最新的问题
V
Visual Studio Blog
阮一峰的网络日志
阮一峰的网络日志
Martin Fowler
Martin Fowler
Jina AI
Jina AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园_首页
L
LangChain Blog
D
Docker
腾讯CDC

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Scan MCP Servers for OWASP Vulnerabilities From Inside Cl...
razashariff · 2026-04-26 · via DEV Community

razashariff

Scan MCP Servers for OWASP Vulnerabilities From Inside Claude. Here's How.

Every MCP server tutorial teaches you how to build.

None of them teach you how to verify it's secure before deploying.

We built Cybersecify — an MCP security scanner you can run from inside your AI assistant. Claude, Cursor, Windsurf, any MCP client. One

config line, then ask it to scan.

No CLI. No separate tool. Just talk to your AI and it scans for you.

Why this matters

MCP adoption just crossed 97 million SDK downloads. There are 13,000+ servers in the wild. Most have no authentication, no signing, no input validation. We know because we scan them.

CVE-2026-39313 (CVSS 8.7) was a single missing size check in a popular MCP framework. The config existed. The enforcement didn't.

Nobody tested it before shipping.

OWASP now has six standards covering agent and MCP security. No tool tested against them. Until now.

Setup — 30 seconds

Add to your Claude Desktop config (claude_desktop_config.json):

Restart Claude. Done.

Use it

Ask Claude:

  • "Scan https://my-mcp-server.com for OWASP vulnerabilities"
  • "Check if this MCP server has authentication"
  • "Test this endpoint for injection vulnerabilities"
  • "Run the OWASP MCP Top 10 checks against my server"

Cybersecify runs the scan and returns results inline. Pass/fail per OWASP control. Remediation guidance included.

What it checks

  • OWASP MCP Top 10 (token exposure, privilege escalation, tool poisoning, injection, auth bypass, logging gaps, shadow servers)
  • Input validation (SQL injection, command injection, XSS, path traversal, SSRF, prompt injection)
  • Transport security (HTTPS, CORS, security headers)
  • Message signing (MCPS Section 7 — nonces, timestamps, signatures)
  • Tool integrity (hash pinning, definition stability)
  • Replay protection
  • Request body size limits (the CVE-2026-39313 check)

What you get back

Every check returns:

  • OWASP control ID (MCP01-01, AISVS-10.4.11, etc.)
  • Pass or fail
  • What was tested
  • What failed and why
  • Which OWASP standard it maps to
  • Remediation guidance

No grades, no scores, no dashboards. Just facts. Pass or fail against published OWASP controls.

Try it against DVMCP

Want to see what a vulnerable MCP server looks like? Scan our deliberately vulnerable server:

"Scan https://dvmcp.co.uk for OWASP MCP vulnerabilities"

It fails everything. That's the point — it's a training target. The MCP equivalent of OWASP Juice Shop.

The gap

Every developer building MCP servers today is deploying without security testing. The tools didn't exist. The standards were published but nobody built the automation to test against them.

Now you can scan from the same tool you use to build. No context switching. No separate CLI. Just ask your AI to check your work before you ship.

Cybersecify is free for basic scans. Built by CyberSecAI Ltd.