Use Claude Security

adithyaharish1 pts0 comments

Use Claude Security | Claude Help CenterSkip to main content

Search for articles...

Use Claude Security

Updated over 2 weeks ago

Table of contents

Overview

Claude Security is a capability built into Claude that scans codebases for security vulnerabilities and suggests targeted patches for human review. It helps teams find and fix issues that traditional methods often miss. Learn more about Claude security .

Claude Security is now available in public beta for users on Enterprise plans.

Claude Security allows you to:

Scan your code in parallel — Claude Security understands context, traces data flows across files, and identifies complex, multi-component vulnerability patterns that traditional scanners might not detect.

Validate findings — Every finding goes through multi-stage verification, with Claude challenging its own results before surfacing them. The result: more real issues reported and fewer false positives.

Review and patch — Move from a finding into a Claude Code session to review the proposed fix. Resolve vulnerabilities quickly instead of growing a backlog.

Learn how to get started and how leading enterprises use the tool here: Getting started with Claude Security .

Enable Claude Security

An organization owner can enable Claude Security by going to Organization settings > Claude Security and switching the Turn on for your organization toggle on.

Finding types

Finding falls into these example categories below.

Injection (SQL, Command, Code, XSS): Untrusted input changes query structure or gets executed. E.g., ' OR 1=1--, ; rm -rf /, in a comment.

Injection (XXE, ReDoS): Parsers or regex abused by crafted input. E.g., XML reading /etc/passwd.

Path & Network (Path traversal, SSRF, Open redirect): Input controls file paths, request destinations, or redirects. E.g., ../../etc/passwd, fetching http://169.254.169.254/.

Auth & Access (AuthN bypass, PrivEsc, IDOR/BOLA, CSRF, Race): Access checks missing, skippable, or racey. E.g., GET /orders/123 returns someone else's order.

Memory Safety (Buffer/integer overflow, UAF, unsafe misuse): Input writes past bounds, wraps arithmetic, or hits freed memory. Mostly C/C++/Rust unsafe.

Cryptography (Timing leaks, algorithm confusion, weak primitives): Secret-dependent branches, JWT alg=none, or MD5/SHA-1/DES/ECB in security paths.

Deserialization (Arbitrary type instantiation): Untrusted bytes drive object construction — pickle, Java readObject, YAML load. Often equals RCE.

Protocol & Encoding (Cache safety, encoding confusion, length-prefix trust): Layers disagree or trust declared sizes. E.g., cache poisoning via Host header.

Severities

Severity is assigned per finding based on exploitability in your codebase, not the category itself—so the same category can land at different severities in different repos.

Severity

Criteria

Typical example

High

Exploitable by an unauthenticated remote attacker against a default deployment, with no meaningful preconditions

Unauthenticated command injection in a public API endpoint

Medium

Exploitable behind authentication, or needs 1–2 realistic preconditions (specific role, known identifier, user interaction)

SQL injection behind auth requiring knowledge of table schema

Low

Needs 3+ preconditions, local-only access, or lacks a concrete demonstrated attack path

Timing side-channel requiring network proximity and thousands of requests

Finding structure

Each finding contains the following fields:

Title — short descriptive name of the finding

Details — description of what the finding is and why it matters

Location — file path and line number, linked to the source

Impact — what could go wrong if this isn’t addressed

Reproduction steps — ordered list of steps to reproduce or observe the issue

Recommended fix — guidance on how to resolve it

Severity — HIGH / MEDIUM / LOW

Status — Open / Dismissed / Resolved

Category — finding type

Repository — repository identifier

Branch — branch name the finding was produced against

Date created — date the finding was created

Shown only if the finding was dismissed:

Dismissal reason

Dismissal note — optional

Troubleshooting

The security page keeps redirecting to "Install GitHub App"

The claude.ai/security page runs a per-user check against your own connected GitHub account, so this can fail for you even though the organization-wide installation is working for others. There are a few potential causes:

No GitHub account connected in Claude. Go to Customize > Connectors to check this.

The connected GitHub account isn’t a member of the GitHub organization where the app is installed. Connect the account that belongs to that organization.

SSO isn't authorized for that organization. If your GitHub organization requires SSO, you must authorize the Claude app for it separately. Follow the steps in Use the GitHub integration .

Your GitHub organization's IP allow list is blocking the check. GitHub's "Enable IP allow list configuration for installed...

claude security finding organization github injection

Related Articles