
Security News
GPT-6 Astra Attempts Supply Chain Attacks Against Open Source Maintainers in Testing
GPT-6 Astra hits 100% on ExploitBench and finds zero-days autonomously, while independent tests reveal scope violations and monitoring gaps.
@socketsecurity/registry
Advanced tools
Socket Registry - Core utilities and infrastructure for Socket.dev security tools
Query Socket Registry manifest data.
pnpm install @socketsecurity/registry
getManifestData() has three forms. Return type narrows based on arguments.
import { getManifestData } from '@socketsecurity/registry'
const pkg = getManifestData('npm', 'deep-equal')
// ManifestEntryData | ManifestEntry | undefined
console.log(pkg?.name) // '@socketregistry/deep-equal'
console.log(pkg?.version) // current override version
console.log(pkg?.categories) // ['cleanup']
Returns the raw [purl, data] tuples — iterate them, don't assume they're a map:
const entries = getManifestData('npm')
// ManifestEntry[] | undefined
for (const [purl, data] of entries ?? []) {
console.log(purl, data.package, data.version)
}
Zero-arg call returns every ecosystem. Useful for cross-ecosystem dashboards:
const manifest = getManifestData()
// Manifest
for (const [eco, entries] of Object.entries(manifest)) {
console.log(`${eco}: ${entries.length} overrides`)
}
import type {
CategoryString,
EcosystemString,
InteropString,
Manifest,
ManifestEntry,
ManifestEntryData,
PURLString,
} from '@socketsecurity/registry/types'
MIT
FAQs
Socket Registry - Core utilities and infrastructure for Socket.dev security tools
The npm package @socketsecurity/registry receives a total of 5,834 weekly downloads. As such, @socketsecurity/registry popularity was classified as popular.
We found that @socketsecurity/registry demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.

Security News
GPT-6 Astra hits 100% on ExploitBench and finds zero-days autonomously, while independent tests reveal scope violations and monitoring gaps.

Product
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.

Security News
pnpm 12 rewrites the package manager in Rust, cutting install times by up to 90% while preserving pnpm 11 workflows and lockfiles.