πŸ”‘ Secrets Scanner: Scanning for Exposed Credentials...

SkillSecurity

Use this skill when the user says 'scan for secrets', 'check for leaked keys', 'secrets scanner', 'hardcoded credentials', 'API key leak', or needs to detect exposed secrets in source code. Do NOT use for dependency vulnerabilities or RLS auditing.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the πŸ”‘ Secrets Scanner: Scanning for Exposed Credentials... skill

What this skill tells your AI

The instructions your AI receives, as published by cwinvestments/memstack in skills/security/secrets-scanner/SKILL.md and read by ahel’s review.

Scan a codebase for hardcoded secrets, leaked API keys, and credential exposure across files and git history.

Activation

When this skill activates, output:

πŸ”‘ Secrets Scanner: Scanning for Exposed Credentials...

Then execute the protocol below.

Context Guard

ContextStatus
User asks to scan for secrets/keysACTIVE: full scan
User mentions credential exposureACTIVE: full scan
User asks about .env securityACTIVE: targeted .env audit
Pre-deployment security reviewACTIVE: full scan
User is creating .env filesDORMANT: let them work

⚠️ Enforcement lives in CLAUDE.md, not here

This skill cannot be the control that prevents secret leaks. Skill matching is semantic and probabilistic: it misses. In a real session that leaked a live SendGrid production key, the query "rotate object storage credentials S3 bucket key move secrets rotation" scored this skill at 0.24 and it never loaded. The task was credential handling end to end.

Therefore the hard rule ("never print a secret value") belongs in always-loaded context, a project CLAUDE.md block, which loads unconditionally regardless of matching, MCP reachability, or hooks. This skill carries the operational how-to below; CLAUDE.md carries the prohibition. If you are reading this skill and the project has no secrets block in CLAUDE.md, adding one is the highest-value fix available, ahead of any scan.

Safe Inspection Patterns (use these any time you touch a secrets file)

Rule: allowlist names, never denylist values

Redaction by denylist is the single most common way secrets leak during "safe" inspection. A pattern that redacts KEY=, SECRET=, PASSWORD= looks thorough and silently fails on SENDGRID_API_KEY_PROD=, STRIPE_SECRET_KEY_TEST=, DB_PASSWORD_2=: any suffixed variant. Never enumerate what to hide. Emit only what is provably safe: names.

# βœ… Variable names only, values are never read into the output stream
cut -d= -f1 .env | grep -vE '^#|^$' | sort

# βœ… Whole-file structure with every value destroyed before display
sed 's/=.*/=<redacted>/' .env

# βœ… Existence / non-emptiness as a boolean
grep -qE '^VARNAME=.+' .env && echo set || echo unset

# ❌ NEVER, denylist; misses every suffixed variant
sed -E 's/(KEY|SECRET|PASSWORD)=.*/\1=[REDACTED]/' .env

# ❌ NEVER, "just the first few characters" is still printing the secret
sed -E 's/=(.{6}).*/=\1…/' .env

Verifying a value without revealing it

Most real questions ("is it the right key?", "did the paste get mangled?", "do prod and dev match?") are answerable without the value:

# Length: catches truncated/padded pastes. A stray trailing "." in a 64-char R2 secret
# produced SignatureDoesNotMatch and was diagnosed purely from length + charset.
awk -F= '/^VARNAME=/{print length($2)}' .env

# Character-class sanity, no value emitted
grep '^VARNAME=' .env | cut -d= -f2- | tr -d '"' \
  | grep -qE '^[0-9a-f]{64}$' && echo "64-hex OK" || echo "unexpected format"

# Fingerprint: safe to log, paste, and compare across machines
grep '^VARNAME=' .env | cut -d= -f2- | tr -d '"' | sha256sum | cut -c1-8

# Do two environments hold the same value? Compare fingerprints, never values.
for h in prod dev; do ssh $h "grep '^VARNAME=' .env | cut -d= -f2- \
  | tr -d '\"' | sha256sum | cut -c1-8"; done

# Does a stored hash match a known password? Boolean only.
python -c "from werkzeug.security import check_password_hash; print(check_password_hash(h, pw))"

Atomic .env editing

Never edit .env in place, and never leave a plaintext backup. A .env.bak recreates exactly the exposure that rotation exists to remove.

import os, tempfile
p = '/path/.env'
orig = open(p, 'rb').read(); st = os.stat(p)
out = [transform(l) for l in orig.split(b'\n')]          # byte mode: no newline rewriting
fd, tmp = tempfile.mkstemp(dir=os.path.dirname(p), prefix='.envtmp')
os.write(fd, b'\n'.join(out)); os.fsync(fd); os.close(fd)
os.chmod(tmp, st.st_mode & 0o777); os.chown(tmp, st.st_uid, st.st_gid)
os.replace(tmp, p)                                        # atomic; no half-written window

# Prove correctness by reporting WHICH KEYS changed: never the values
after = open(p, 'rb').read().split(b'\n')
diffs = [i for i, (a, b) in enumerate(zip(orig.split(b'\n'), after)) if a != b]
print("changed keys:", [after[i].split(b'=')[0].decode() for i in diffs])

Read and write in byte mode. Python text mode applies universal-newline translation and silently rewrites every line ending in a CRLF file, turning a one-line edit into a whole-file diff.

Secrets that do not look like secrets

  • Capability URLs. An unguessable object key, presigned URL, or invite link is a credential, its security is precisely that nobody has seen it. Printing one to a transcript, a commit message, or a log destroys it. Treat like a password.
  • Endpoints containing account IDs. https://<account-id>.r2.cloudflarestorage.com is not a credential but is an infrastructure identifier; prefer not to broadcast it.
  • Parsed env dicts in tracebacks. A script that loads .env into a dict can print that dict from an exception handler. Ensure no parsed-env variable can reach an error path.

If a secret prints anyway

  1. Stop. Do not finish the task first.
  2. Flag it immediately and explicitly: name the variable, say where it went.
  3. Rotation is mandatory, not a judgement call. A value in a transcript is compromised regardless of who you think can read the transcript.
  4. Audit the same output for co-leaked values before rotating, so rotation happens once.

Protocol

Step 1: Scan for Hardcoded Secrets (Check 1)

Search all tracked files for strings matching known secret patterns:

API Key Patterns:

# Stripe
grep -rn "sk_live_[a-zA-Z0-9]\{20,\}\|sk_test_[a-zA-Z0-9]\{20,\}\|pk_live_[a-zA-Z0-9]\{20,\}" --include="*.ts" --include="*.tsx" --include="*.js" --include="*.json" --include="*.md" --include="*.yaml" --include="*.yml" .

# Supabase
grep -rn "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9\." --include="*.ts" --include="*.tsx" --include="*.js" .

# AWS
grep -rn "AKIA[0-9A-Z]\{16\}" --include="*.ts" --include="*.tsx" --include="*.js" --include="*.json" --include="*.env*" .

# GitHub tokens
grep -rn "ghp_[a-zA-Z0-9]\{36\}\|gho_[a-zA-Z0-9]\{36\}\|github_pat_[a-zA-Z0-9_]\{30,\}" .

# Slack tokens
grep -rn "xoxb-[0-9]\{10,\}\|xoxp-[0-9]\{10,\}\|xoxs-[0-9]\{10,\}" .

# Generic high-entropy strings assigned to obvious secret variables
grep -rn "api_key\s*=\s*['\"][a-zA-Z0-9]\{20,\}['\"]\|apiKey\s*[:=]\s*['\"][a-zA-Z0-9]\{20,\}['\"]" .

Authentication Patterns:

# Bearer tokens hardcoded
grep -rn "Bearer [a-zA-Z0-9_\-\.]\{20,\}" --include="*.ts" --include="*.tsx" --include="*.js" .

# Passwords in code
grep -rn "password\s*[:=]\s*['\"][^'\"]\{4,\}['\"]\|PASSWORD\s*=\s*['\"][^'\"]\{4,\}['\"]" --include="*.ts" --include="*.tsx" --include="*.js" --include="*.json" .

Private Keys:

# RSA/EC/DSA/OpenSSH private keys
grep -rn "BEGIN.*PRIVATE KEY\|BEGIN RSA PRIVATE\|BEGIN EC PRIVATE\|BEGIN DSA PRIVATE\|BEGIN OPENSSH PRIVATE" \
  --include="*.ts" --include="*.tsx" --include="*.js" --include="*.json" --include="*.pem" --include="*.key" --include="*.yaml" --include="*.yml" --include="*.md" .

Flag as CRITICAL if found in any tracked file. Private keys should never be committed, use environment variables or secret managers.

Base64-Encoded Secrets:

# Look for base64-encoded strings assigned to secret-like variables
# These are often used to obfuscate secrets in source code
grep -rn "\(secret\|key\|token\|password\|credential\).*['\"][ ]*[A-Za-z0-9+/]\{40,\}=*['\"]" \
  --include="*.ts" --include="*.tsx" --include="*.js" --include="*.json" .

# Check for Buffer.from(... 'base64') with hardcoded strings
grep -rn "Buffer\.from(['\"][A-Za-z0-9+/]\{20,\}=*['\"].*base64\|atob(['\"][A-Za-z0-9+/]\{20,\}" \
  --include="*.ts" --include="*.tsx" --include="*.js" .

Flag as WARNING if a base64 string is assigned to a variable with secret, key, token, or password in its name. Developers sometimes base64-encode secrets thinking it hides them: it doesn't.

Connection Strings:

# Database URLs with credentials
grep -rn "postgres://[^:]\+:[^@]\+@\|mysql://[^:]\+:[^@]\+@\|mongodb://[^:]\+:[^@]\+@\|redis://:[^@]\+@" .

# Supabase/Firebase URLs with keys inline
grep -rn "supabase\.co.*service_role\|firebaseio\.com.*AIza" --include="*.ts" --include="*.tsx" --include="*.js" .

Exclude false positives:

  • Files in node_modules/, .git/, dist/, .next/
  • Test fixtures with obviously fake values (e.g., sk_test_fake123)
  • Environment variable references (process.env.STRIPE_SECRET_KEY is safe, the variable itself, not a value)
  • Documentation showing example formats

Step 2: Audit .env File Security (Check 2)

Check if .env files are gitignored:

# Are .env files in .gitignore?
grep -n "\.env" .gitignore

# Are any .env files currently tracked?
git ls-files | grep -i "\.env"

# Were .env files ever committed?
git log --all --diff-filter=A --name-only --pretty=format: | grep -i "\.env" | sort -u

Flag as CRITICAL if:

  • .env or .env.local is currently tracked by git
  • .env was previously committed (secrets in git history even if now removed)
  • .gitignore does not contain .env patterns

Check .env.example exists:

  • Should contain all required env var names with placeholder values
  • Should NOT contain real secrets (scan for patterns from Check 1)

Step 3: Scan Config and Documentation Files (Check 3)

Secrets often leak into files developers don't think about:

# Check CLAUDE.md, README, docs
grep -rn "sk_\|pk_\|AKIA\|ghp_\|password\s*[:=]" *.md docs/ CLAUDE.md README.md 2>/dev/null

# Check config files
grep -rn "sk_\|pk_\|AKIA\|secret\|password\|token" \
  --include="*.json" --include="*.yaml" --include="*.yml" --include="*.toml" \
  --exclude-dir=node_modules .

# Check CI/CD config files
grep -rn "sk_\|pk_\|AKIA\|password\|token" \
  .github/workflows/*.yml .gitlab-ci.yml Dockerfile docker-compose*.yml 2>/dev/null

Flag as CRITICAL if real secrets found in any committed documentation or config.

Step 3b: Scan Deployment Platform Configs (Check 3b)

Secrets can leak into platform-specific deployment configurations:

# Netlify config
grep -rn "password\|secret\|token\|api_key\|AKIA\|sk_\|pk_" \
  netlify.toml netlify.yml 2>/dev/null

# Vercel config
grep -rn "password\|secret\|token\|api_key\|AKIA\|sk_\|pk_" \
  vercel.json .vercel/project.json 2>/dev/null

# Railway config
grep -rn "password\|secret\|token\|api_key" \
  railway.json railway.toml 2>/dev/null

# Render config
grep -rn "password\|secret\|token\|api_key" \
  render.yaml 2>/dev/null

# Fly.io config
grep -rn "password\|secret\|token\|api_key" \
  fly.toml 2>/dev/null

Flag as CRITICAL if:

  • Real secret values are hardcoded in any deployment config file
  • netlify.toml [build.environment] section contains secret values (these are committed to git, use Netlify UI environment variables instead)
  • vercel.json contains environment variable values (use vercel env CLI or Dashboard instead)

Flag as WARNING if:

  • Deployment configs reference environment variable names without values (usually OK, but verify the names match what's configured in the platform)

Step 4: Check Environment Variable Usage (Check 4)

Verify env vars are validated at application startup:

Search for unvalidated env var usage:

# Direct process.env usage without validation
grep -rn "process\.env\.\(.*SECRET\|.*KEY\|.*TOKEN\|.*PASSWORD\|.*DATABASE_URL\)" \
  --include="*.ts" --include="*.tsx" --include="*.js" .

Flag as WARNING if:

  • process.env.SECRET_NAME used directly without checking if defined
  • No env validation library (e.g., @t3-oss/env-nextjs, envalid, zod env schema)
  • Missing env vars would cause runtime errors instead of startup errors

Correct pattern:

// Good: validated at startup
import { z } from 'zod';
const env = z.object({
  DATABASE_URL: z.string().url(),
  STRIPE_SECRET_KEY: z.string().startsWith('sk_'),
}).parse(process.env);

Step 5: Check Client-Side Secret Exposure (Check 5)

Server-only secrets must never reach the browser:

Search for secrets in client code:

# In React/Next.js, only NEXT_PUBLIC_ vars are safe for client
grep -rn "process\.env\." --include="*.tsx" --include="*.jsx" \
  src/app/ src/components/ src/pages/ app/ components/ pages/ 2>/dev/null \
  | grep -v "NEXT_PUBLIC_"

Flag as CRITICAL if:

  • SUPABASE_SERVICE_ROLE_KEY referenced in client components
  • STRIPE_SECRET_KEY (not STRIPE_PUBLISHABLE_KEY) in client code
  • DATABASE_URL in client code
  • Any non-NEXT_PUBLIC_ env var in files under app/, components/, pages/ (client-rendered paths)

Flag as WARNING if:

  • API keys passed as props from server to client components
  • Secrets embedded in client-side API calls via headers

Step 6: Scan Git History (Check 6)

Previously committed secrets remain in git history even after removal:

# Search git history for known secret patterns
git log -p --all -S "sk_live" --oneline -- "*.ts" "*.tsx" "*.js" "*.json" "*.env" 2>/dev/null | head -20
git log -p --all -S "AKIA" --oneline 2>/dev/null | head -20
git log -p --all -S "ghp_" --oneline 2>/dev/null | head -20
git log -p --all -S "password" --oneline -- "*.env" "*.env.*" 2>/dev/null | head -20

Flag as CRITICAL if:

  • Any real secret pattern found in git history
  • .env files appear in historical commits

Remediation for exposed history:

  1. Rotate the exposed credential immediately
  2. Use git filter-branch or BFG Repo-Cleaner to purge from history
  3. Force-push the cleaned history (coordinate with team)

Step 7: Check Docker/Container Files (Check 7)

# Secrets in Dockerfiles
grep -rn "ENV.*SECRET\|ENV.*KEY\|ENV.*PASSWORD\|ENV.*TOKEN\|ARG.*SECRET" \
  Dockerfile* docker-compose*.yml 2>/dev/null

# Secrets passed as build args
grep -rn "build-arg.*secret\|build-arg.*key\|build-arg.*password" \
  Dockerfile* .github/workflows/*.yml 2>/dev/null

Flag as CRITICAL if:

  • Secrets hardcoded in Dockerfile ENV instructions
  • Secrets in docker-compose.yml without using Docker secrets or env_file

Flag as WARNING if:

  • Secrets passed as Docker build args (visible in image layers)

Step 8: Generate Report

πŸ”‘ Secrets Scanner Report
Project: <project-name>
Files scanned: <count>
Git history checked: <yes/no>

## Findings

| # | File | Line | Type | Pattern | Risk | Status |
|---|------|------|------|---------|------|--------|
| 1 | src/lib/stripe.ts | 14 | Stripe Secret Key | sk_live_... | πŸ”΄ CRIT | Hardcoded |
| 2 | .env | none | Environment File | .env tracked | πŸ”΄ CRIT | In git |
| 3 | docker-compose.yml | 23 | Database Password | password= | ⚠️ WARN | Inline |
| 4 | src/app/page.tsx | 8 | Server Env in Client | DATABASE_URL | πŸ”΄ CRIT | Client-exposed |
| 5 | README.md | 45 | API Key Example | sk_test_... | ℹ️ INFO | Test key |

## Critical Issues
1. **Stripe secret key hardcoded** in `src/lib/stripe.ts:14`
   β†’ Fix: Move to `.env.local` as `STRIPE_SECRET_KEY`, reference via `process.env.STRIPE_SECRET_KEY`
   β†’ Then: Rotate the key in Stripe Dashboard immediately: it's been committed

2. **.env file tracked in git**
   β†’ Fix: `git rm --cached .env && echo ".env" >> .gitignore && git commit`
   β†’ Then: Rotate ALL credentials that were in the .env file

3. **DATABASE_URL in client component**
   β†’ Fix: Move database access to server-side API route or Server Component

## Git History
- ⚠️ Found `sk_live_` pattern in commit `a1b2c3d` (2024-03-15)
  β†’ Credential was removed but remains in history
  β†’ Fix: Rotate the key, then clean history with BFG Repo-Cleaner

## Environment File Audit
- .gitignore: βœ… Contains .env patterns
- .env tracked: πŸ”΄ Yes: remove immediately
- .env.example: ⚠️ Missing: create with placeholder values
- Env validation: ⚠️ No startup validation found

## Summary
- πŸ”΄ Critical: <count>
- ⚠️ Warning: <count>
- ℹ️ Info: <count>
- Files with secrets: <count>
- Git history exposures: <count>

Step 9: Generate .env.example

If no .env.example exists, offer to create one:

# Extract all env var names from the codebase
grep -roh "process\.env\.[A-Z_]\+" --include="*.ts" --include="*.tsx" --include="*.js" . \
  | sort -u \
  | sed 's/process\.env\.//' \
  > /tmp/env_vars.txt

Generate .env.example with all discovered variables and placeholder values:

# Database
DATABASE_URL=postgresql://user:password@localhost:5432/dbname

# Supabase
NEXT_PUBLIC_SUPABASE_URL=https://your-project.supabase.co
NEXT_PUBLIC_SUPABASE_ANON_KEY=your-anon-key
SUPABASE_SERVICE_ROLE_KEY=your-service-role-key

# Stripe
STRIPE_SECRET_KEY=sk_test_your-key
NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY=pk_test_your-key
STRIPE_WEBHOOK_SECRET=whsec_your-secret

Step 10: Pre-Rotation Checklist

Before rotating any exposed credential, verify:

  1. Is the secret actively used in production? Check deployment environment variables (Vercel/Netlify/Railway dashboard) to see if the exposed value matches what's currently configured. If the production value is already different, the exposure is historical only, still rotate, but priority is lower.
  2. What services depend on this secret? A Stripe key rotation affects webhook verification, payment processing, and customer portal links. Map all dependencies before rotating.
  3. Can you rotate without downtime? Some services (Stripe, AWS) support rolling two active keys simultaneously. Others (single JWT secret) require coordinated deployment.
  4. Who else has access? If the repo is public or shared with contractors, assume the secret is fully compromised regardless of git history depth.

Rotation priority:

Secret TypeUrgencyReason
Payment keys (Stripe, Square)ImmediateFinancial fraud risk
Database credentialsImmediateFull data access
Auth secrets (JWT, session)ImmediateSession hijacking
API keys (SendGrid, OpenAI)HighAbuse/cost risk
Monitoring tokens (Sentry, Datadog)MediumLimited blast radius
Internal service keysMediumDepends on what they access

Step 11: Provide Recommendations

Always conclude with:

  1. Rotate any exposed credentials immediately, assume they've been compromised (see pre-rotation checklist above)
  2. Add .env patterns to .gitignore before any new commits
  3. Create .env.example with placeholder values for onboarding
  4. Use env validation (@t3-oss/env-nextjs or Zod schema) to catch missing vars at startup
  5. Store secrets in CI/CD environment variables (Vercel, GitHub Actions secrets), never in code
  6. Use NEXT_PUBLIC_ prefix only for values safe to expose to browsers
  7. Clean git history if secrets were previously committed (BFG Repo-Cleaner)

Risk Levels

LevelMeaningAction
πŸ”΄ CRITICALLive secret exposed in code or git historyRotate immediately, then fix
⚠️ WARNINGWeak secret hygiene or missing safeguardsFix before next deploy
ℹ️ INFOTest/example keys or minor hygiene issueReview and confirm acceptable
βœ… OKProperly managedNo action needed

Secret Pattern Reference

PatternServiceExample
sk_live_* / sk_test_*Stripe Secretsk_live_51J...
pk_live_* / pk_test_*Stripe Publishablepk_live_51J...
whsec_*Stripe Webhookwhsec_abc...
AKIA* (20 chars)AWS Access KeyAKIAIOSFODNN7EXAMPLE
ghp_* (36 chars)GitHub PATghp_xxxxxxxxxxxx
gho_*GitHub OAuthgho_xxxxxxxxxxxx
github_pat_*GitHub Fine-grained PATgithub_pat_11A...
xoxb-*Slack Bot Tokenxoxb-123-456-abc
xoxp-*Slack User Tokenxoxp-123-456-abc
SG.* (69 chars)SendGridSG.xxxxxxxxxx
eyJhbGci*JWT (Supabase/Auth)eyJhbGciOiJIUzI1...
sk-* (48+ chars)OpenAI API Keysk-abc123...
Bearer *Auth HeaderBearer eyJ...
-----BEGIN RSA PRIVATE KEY-----RSA Private KeyPEM block
-----BEGIN EC PRIVATE KEY-----EC Private KeyPEM block
-----BEGIN OPENSSH PRIVATE KEY-----SSH Private KeyOpenSSH format
Base64 in secret varObfuscated secretc2VjcmV0X2tleQ==

Automated Hook Coverage

The MemStack Pro hook system provides automatic, production-grade secrets detection before every commit and push: no manual invocation required.

Pre-Commit Hook: Scans all staged files before any git commit. Detects 700+ credential formats across every major cloud provider, SaaS API, private key format, and authentication token type. Blocks the commit if secrets are found, with redacted output showing what was detected and where.

Pre-Push Hook: Full working-tree scan before any git push. Catches secrets that may have been committed across multiple commits since the last push. Also detects .env files in unpushed commits.

Coverage includes:

  • Cloud provider credentials (AWS, GCP, Azure, DigitalOcean, Hetzner, etc.)
  • Payment platform keys (Stripe, Square, Braintree, PayPal)
  • SaaS API tokens (GitHub, GitLab, Slack, Discord, Twilio, SendGrid, Mailchimp, etc.)
  • Database connection strings with embedded credentials
  • Private keys (RSA, EC, DSA, OpenSSH, PGP)
  • JWT tokens, Bearer tokens, OAuth secrets
  • Base64-encoded and obfuscated credentials
  • CI/CD tokens, container registry credentials
  • Custom high-entropy string detection

Fallback behavior: If the production scanner is not installed, hooks silently fall back to the built-in 5-keyword regex scan (Step 1 patterns). Scanning is never skipped, only the depth of detection changes.

This manual skill remains available for deep audits: git history analysis, client-side exposure checks, env validation, Docker inspection, and remediation planning that go beyond what automated hooks cover.

Related Skills

  • api-audit: Audit API routes for auth/authz vulnerabilities
  • rls-checker: Audit Supabase RLS policies
  • dependency-audit: Check for vulnerable npm packages

Level History

  • Lv.1: Base: 7-check scan (hardcoded secrets, .env audit, config/docs, env validation, client exposure, git history, Docker), pattern reference for 14+ secret formats, .env.example generation, remediation guide. Derived from real credential incidents across AdminStack, EpsteinScan, and 10+ production projects. (Origin: MemStack Pro v1.0, Mar 2026)
  • Lv.2: Audit feedback: Added deployment platform config scan (Netlify, Vercel, Railway, Render, Fly.io), base64-encoded secret detection, private key block detection (RSA/EC/DSA/OpenSSH PEM), pre-rotation checklist with dependency mapping and priority matrix. (Origin: AdminStack audit, Mar 2026)
  • Lv.3: Hook integration: Documented automated pre-commit and pre-push hook coverage (700+ credential formats), fallback behavior, and relationship between manual skill audits and automated hook scanning. (Origin: MemStack Pro v3.3.3, Mar 2026)

Pro Feature

Pro: Secrets scanning hooks run automatically before every commit and push, covering 700+ credential formats across every major cloud provider and API service. Free version requires manual scanning only.

Signals

GitHub stars
419
Forks
44
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
memstack-security-secrets-scanner
Source
github.com/cwinvestments/memstack