
Research
/Security News
Mini Shai-Hulud Campaign Hits Red Hat Cloud Services npm Packages
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.
@bulkhead-ai/core
Advanced tools
Cascading content protection engine — PII detection, secret scanning, prompt injection defense
Cascading content protection engine -- detects and redacts PII, secrets, prompt injection, and system prompt leakage in text before it reaches LLMs.
Part of the Bulkhead project.
npm install @bulkhead-ai/core
Also available as @floatingsidewal/bulkhead-core via GitHub Packages.
import { createEngine } from "@bulkhead-ai/core";
const engine = createEngine();
// Fast regex-only scan (sub-millisecond)
const result = await engine.analyze("My SSN is 123-45-6789 and key is AKIAIOSFODNN7EXAMPLE");
console.log(result.passed); // false
console.log(result.detections); // [{ entityType: "US_SSN", ... }, { entityType: "AWS_ACCESS_KEY", ... }]
// Scan and redact
const redacted = await engine.scan("Call me at 555-867-5309");
console.log(redacted.redactedText); // "Call me at [REDACTED-US_PHONE]"
| Category | Coverage |
|---|---|
| PII | 45+ entity types across 20+ countries (SSN, credit cards, IBAN, phone, email, medical IDs, national IDs) |
| Secrets | 154 patterns across 13 categories (AWS, Azure, GCP, GitHub, Slack, Stripe, database credentials, private keys) |
| Prompt Injection | 16+ patterns (role-play attacks, DAN mode, instruction override) |
| System Prompt Leakage | 7+ patterns (prompt extraction, "repeat everything above") |
All structured patterns include checksum validation where applicable (Luhn, IBAN mod-97, Verhoeff).
import { createEngine, getPolicy } from "@bulkhead-ai/core";
const engine = createEngine({
enabled: true,
debounceMs: 500,
guards: {
pii: { enabled: true },
secret: { enabled: true },
injection: { enabled: true },
contentSafety: { enabled: false },
},
cascade: {
modelEnabled: false,
escalationThreshold: 0.75,
contextSentences: 3,
modelId: "Xenova/bert-base-NER",
},
policy: "strict",
});
const policy = getPolicy("strict");
const { risk } = await engine.policyScan(inputText, policy);
console.log(risk.level); // "critical" | "high" | "medium" | "low" | "none"
console.log(risk.issues); // classified issues by category and severity
console.log(risk.testDataFlags); // synthetic/eval data detected
For contextual entities like names, locations, and organizations:
npm install @huggingface/transformers
const engine = createEngine({
// ...
cascade: { modelEnabled: true, /* ... */ },
});
const result = await engine.deepScan("Send the report to John Smith at Acme Corp");
The BERT model (~29 MB) downloads on first inference and runs in a worker thread. No GPU required.
See the How-To Guide for comprehensive examples and the full documentation for architecture, deployment, and API reference.
MIT
FAQs
Cascading content protection engine — PII detection, secret scanning, prompt injection defense
We found that @bulkhead-ai/core demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.

Research
/Security News
The North Korean malware loader hides in a Packagist-listed package and its GitHub branch to fetch and execute remote code in a likely Contagious Interview-style lure.

Security News
The Rust project is moving toward formal rules on LLM use in contributions after months of internal debate over maintainer burden, code quality, and contributor experience.