New to Claude Skills? Learn how to install them →

mukul975 on GitHub

Detecting Dependency Confusion

Free

Secure your software supply chain from namespace attacks.

Get this skill

Free · Opens the source repo

What Detecting Dependency Confusion does

Detecting Dependency Confusion is a skill designed to help developers and security professionals identify and mitigate risks associated with dependency confusion attacks. These attacks occur when a malicious actor publishes a package to a public registry that has the same name as an internal package, exploiting the way package managers resolve dependencies. This skill employs tools like confused and OWASP dep-scan to enumerate internal package names that are vulnerable to such attacks and provides guidance on how to enforce source restrictions to prevent them.

The skill works by first identifying all dependency manifests within a project, including those used by npm, PyPI, Maven, and other package managers. It then scans these manifests to determine which internal package names are not registered on public registries, making them potential targets for confusion attacks. By pinning dependencies to private registries and registering placeholder packages for unclaimed names, organizations can significantly reduce their attack surface.

This skill is particularly useful during the onboarding of repositories into a supply-chain security program, when auditing existing projects for vulnerabilities, or after a security incident where internal package names may have been exposed. It is designed for teams that need to conduct ongoing assessments of their dependency management practices and ensure that their CI/CD pipelines are secure against namespace hijacking.

By treating dependency confusion as an ongoing attack-surface management problem rather than a one-time check, this skill helps organizations maintain a proactive stance on supply chain security. It is suitable for developers, DevSecOps teams, and security auditors looking to enhance their software development lifecycle with robust security practices.

When to use it

Use this skill when onboarding repositories to a security program, auditing for confusable dependencies, or after incidents that may have exposed internal package names.

When not to use it

This skill is not necessary for projects that exclusively use private registries without any public dependency resolution or for teams not concerned with supply chain security risks.

What you can build with it

Onboarding to Supply Chain Security

Use this skill when integrating a new repository into a supply chain security program to baseline internal package vulnerabilities.

Auditing Existing Projects

Employ this skill to audit lockfiles and manifests for confusable dependencies in existing projects to enhance security.

Incident Response

After a security incident, use this skill to assess potential leaks of internal package names and implement preventive measures.

How to install Detecting Dependency Confusion

View source

1. Install with the skills CLI

npx skills add mukul975/anthropic-cybersecurity-skills/detecting-dependency-confusion --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by mukul975

Detecting Dependency Confusion

Legal Notice: This skill is for authorized security testing, defensive engineering, and educational purposes only. Registering or claiming package namespaces you do not own, or testing build pipelines without written authorization, may be illegal and may violate the terms of service of public registries. Only run namespace-claiming or resolution-testing activities against names and infrastructure you control or are explicitly authorized to assess.

Overview

Dependency confusion (also called a substitution or namespace-shadowing attack) was popularized by Alex Birsan in 2021 when he forced malicious code into the internal build systems of Apple, Microsoft, PayPal, and dozens of others. The root cause is that many package managers, when configured to resolve from both an internal/private registry and a public one, will prefer whichever copy has the higher version number rather than honoring the source. An attacker who learns the name of a private package (@acme/internal-utils, acme-billing-sdk) can publish a malicious package of the same name to the public registry (npmjs.com, PyPI, Maven Central) with a very high version (e.g. 99.0.0). When the victim's CI/CD runner or a developer machine resolves dependencies, it pulls the attacker's public package, executes its install scripts, and the supply chain is compromised.

This skill covers both halves of the problem: detection — enumerating internal package names that are not registered (squatted defensively) on public registries and are therefore claimable, using confused and OWASP dep-scan — and prevention — pinning scopes/namespaces to private registries, registering placeholder packages, and enforcing source restrictions in .npmrc, pip.conf/pyproject.toml, and Maven settings.xml. Internal package names leak constantly: in committed lockfiles, sourcemaps, public JS bundles, Docker layers, and error stack traces, so this is treated as an attack-surface management problem, not a one-time check.

When to Use

  • When onboarding a repository or organization to a supply-chain security program and you need to baseline which internal packages are claimable on public registries.
  • When CI/CD pipelines resolve dependencies from both private and public registries (mixed/hybrid feeds).
  • After any incident where internal package names may have been exposed (leaked source, public bundle, breached repo).
  • When auditing package.json, requirements.txt, pom.xml, composer.json, or Gemfile.lock files for confusable dependencies.
  • As a recurring scheduled control to detect newly added internal packages that have not yet been defensively registered.

Prerequisites

  • Go 1.20+ to install confused:
    go install github.com/visma-prodsec/confused@latest
    # binary lands in $(go env GOPATH)/bin/confused
    
  • Python 3.10+ for OWASP dep-scan:
    pip install owasp-depscan
    # or container: docker pull ghcr.io/owasp-dep-scan/dep-scan
    
  • Node.js + npm (for .npmrc and npm config remediation) and access to your private registry (Artifactory, Nexus, Azure Artifacts, GitHub Packages, AWS CodeArtifact).
  • Read access to the repositories / lockfiles being assessed and write access to your private registry for defensive registration.

Objectives

  • Enumerate every internal dependency declared in project manifests across npm, PyPI, Maven, Composer, and RubyGems.
  • Determine which internal names are not present on the corresponding public registry and are therefore claimable.
  • Distinguish true exposure from false positives (scoped packages, already-mirrored names).
  • Apply registry-pinning and scope-restriction controls that make public substitution impossible.
  • Defensively register placeholder packages for unclaimed internal names.
  • Establish a recurring detection control in CI to catch newly introduced confusable dependencies.

MITRE ATT&CK Mapping

Technique IDTechnique NameRelevance
T1195.001Supply Chain Compromise: Compromise Software Dependencies and Development ToolsCore technique — attacker substitutes a malicious public package for an internal dependency.
T1195.002Supply Chain Compromise: Compromise Software Supply ChainBroader category covering the compromised build artifacts produced once confusion succeeds.
T1059.007Command and Scripting Interpreter: JavaScriptnpm preinstall/postinstall lifecycle scripts execute attacker JavaScript on resolution.
T1071.001Application Layer Protocol: Web ProtocolsSubstituted package beacons stolen environment/credentials to attacker HTTP(S) endpoint.

Workflow

1. Inventory manifests across the codebase

Locate every dependency manifest so nothing is missed.

# Find all supported manifests in a monorepo
find . -type f \( \
  -name package.json -o \
  -name requirements.txt -o \
  -name pom.xml -o \
  -name composer.json -o \
  -name Gemfile.lock \
\) -not -path '*/node_modules/*' -print

2. Scan npm manifests with confused

confused reads the manifest and reports every dependency name not found on the public registry — those are candidates for confusion.

# npm (default language is npm)
confused -l npm package.json

# Treat your known-good scopes as secure to suppress false positives (supports wildcards)
confused -l npm -s '@acme/*,@acme-internal/*' package.json

# Verbose, to see each lookup
confused -l npm -v package.json

3. Scan PyPI, Maven, Composer, and RubyGems manifests

The -l flag selects the ecosystem; each maps to its standard manifest file.

confused -l pip requirements.txt          # PyPI  -> requirements.txt
confused -l mvn pom.xml                    # Maven -> pom.xml
confused -l composer composer.json        # PHP   -> composer.json
confused -l rubygems Gemfile.lock         # Ruby  -> Gemfile.lock

4. Cross-check with OWASP dep-scan private-namespace mode

dep-scan confirms confusion exposure for declared private namespaces and folds it into a broader risk audit.

# Flag private namespaces accidentally claimable on public registries
depscan --src $PWD --reports-dir ./reports \
  --private-ns acme,acme_internal,@acme

# Enable deep package risk audit (npm + pypi): typosquats, takeover risk, etc.
depscan --src $PWD --reports-dir ./reports --risk-audit

5. Triage candidates and confirm claimability

For each flagged name, verify it is genuinely absent on the public registry (a 404 means claimable).

# npm: a 404 status means the name is unregistered on the public registry
curl -s -o /dev/null -w "%{http_code}\n" https://registry.npmjs.org/@acme%2finternal-utils

# PyPI: 404 from the JSON API means the project name is free
curl -s -o /dev/null -w "%{http_code}\n" https://pypi.org/pypi/acme-billing-sdk/json

6. Remediate npm with scope-to-registry pinning

Bind every internal scope to the private registry so a public package of the same name can never be resolved.

# .npmrc (project root, committed)
@acme:registry=https://artifactory.example.com/api/npm/npm-internal/
//artifactory.example.com/api/npm/npm-internal/:_authToken=${NPM_TOKEN}

# Force the default registry to a single proxy that does NOT merge public + private
registry=https://artifactory.example.com/api/npm/npm-virtual/

Verify the resolution source before installing:

npm config get @acme:registry
npm install --dry-run   # confirm @acme/* resolves from the private host

7. Remediate PyPI and Maven

Pin Python index resolution and Maven mirroring so public sources cannot shadow internal artifacts.

# pyproject.toml (PEP 621 / pip >= 23): explicit index pinning
[tool.pip]
index-url = "https://artifactory.example.com/api/pypi/pypi-internal/simple/"
# Do NOT use extra-index-url for internal packages — pip merges and picks highest version.
<!-- ~/.m2/settings.xml: mirror everything through a single virtual repo -->
<mirrors>
  <mirror>
    <id>internal-virtual</id>
    <mirrorOf>*</mirrorOf>
    <url>https://artifactory.example.com/artifactory/maven-virtual</url>
  </mirror>
</mirrors>

8. Defensively register placeholder packages

For names you cannot fully isolate, claim the public name yourself with an empty, non-functional placeholder so an attacker cannot.

# npm placeholder claim (scoped, public)
mkdir acme-internal-utils && cd acme-internal-utils
npm init -y
npm pkg set version=0.0.1-placeholder description="Reserved internal name. Do not use."
npm publish --access public

9. Wire detection into CI

Fail the pipeline if any new confusable dependency appears.

# .github/workflows/depconfusion.yml
name: dependency-confusion
on: [push, pull_request]
jobs:
  confused:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: actions/setup-go@v5
        with: { go-version: '1.22' }
      - run: go install github.com/visma-prodsec/confused@latest
      - name: Scan npm manifest
        run: $(go env GOPATH)/bin/confused -l npm -s '@acme/*' package.json

10. Run the bundled helper for batch triage

Use the included agent.py to scan a tree and emit a structured report combining confused and live registry probes.

python scripts/agent.py --path . --ecosystem npm \
  --secure-namespaces '@acme/*,@acme-internal/*' \
  --output report.json

Tools and Resources

ToolPurposeSource
confusedDetect lingering free namespaces for declared dependencieshttps://github.com/visma-prodsec/confused
ConfusedDotnetSame check for NuGet/.NEThttps://github.com/visma-prodsec/ConfusedDotnet
OWASP dep-scanRisk audit incl. --private-ns confusion checkhttps://github.com/owasp-dep-scan/dep-scan
OWASP CI/CD Top 10CICD-SEC-03 Dependency Chain Abusehttps://owasp.org/www-project-top-10-ci-cd-security-risks/
Birsan researchOriginal dependency confusion writeuphttps://medium.com/@alex.birsan/dependency-confusion-4a5d60fec610
npm scopes docsScope-to-registry pinning referencehttps://docs.npmjs.com/cli/v10/using-npm/scope

Validation Criteria

  • All dependency manifests in the codebase enumerated.
  • confused run for every relevant ecosystem with secure namespaces supplied.
  • OWASP dep-scan --private-ns run and reconciled with confused output.
  • Each flagged name confirmed claimable (404) or dismissed as a false positive.
  • Internal scopes pinned to the private registry in .npmrc / pip config / Maven mirror.
  • extra-index-url and merged virtual feeds reviewed for highest-version pull risk.
  • Placeholder packages registered for names that cannot be isolated.
  • CI job enforces the check on every push/PR.
  • Findings documented with owner and remediation status.

Frequently asked questions about Detecting Dependency Confusion

Similar skills