bundler-audit-e3b0c4 — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited bundler-audit-e3b0c4 (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
bundler-audit is a tool that checks a project's Gemfile.lock against a database of known vulnerabilities (CVEs and GHSAs), identifying gems with security issues and recommending safe versions.
Add it only to the development group — it is not required in production:
group :development do
gem 'bundler-audit', require: false
endbundle installbundler-audit maintains a local copy of the advisory database. Always update it before auditing:
bundle exec bundler-audit updateThe database contains hundreds of advisories (e.g., 1007 advisories, updated on 2025-08-15).
bundle exec bundler-audit check --updateThe --update flag ensures the database is automatically updated before the scan.
bundler-audit reports each vulnerable gem with:
| Field | Description |
|---|---|
| Gem | Name of the affected gem |
| Version | Currently installed version |
| Advisory | CVE or GHSA identifier |
| Criticality | Severity level: Unknown / Low / Medium / High / Critical |
| Title | Short vulnerability description |
| Solution | Recommended safe version |
Clean result:
No vulnerabilities foundVulnerability found (example):
Name: rack
Version: 3.1.8
Advisory: CVE-2025-27610
Criticality: High
Title: Path traversal vulnerability
Solution: upgrade to >= 3.1.16You can update all vulnerable gems at once:
bundle update nokogiri rack net-imap activerecord activestorage rack-session thor uri⚠️ Warning: In production, update one gem at a time and run tests after each update.
# 1. Update a single gem
bundle update rack
# 2. Run application tests
rails test -v
# 3. Verify bundler-audit is satisfied with the updated gem
bundle exec bundler-audit check
# 4. Repeat for the next gemgem updateUse with caution — this may introduce compatibility issues in projects that do not explicitly manage gem versions.
| Gem | Common CVEs | Risk Type |
|---|---|---|
nokogiri | GHSA-mrxw-mxhj-p664 | libxml2/libxslt issues |
rack | CVE-2025-25184, 27610 | Log injection, LFI, DoS, ReDoS |
net-imap | CVE-2025-25186 | Memory exhaustion DoS |
activerecord | CVE-2025-55193 | ANSI escape injection in logs |
activestorage | CVE-2025-24293 | Potentially unsafe transformations |
rack-session | CVE-2025-46336 | Session restoration after deletion |
thor | CVE-2025-54314 | Shell input injection |
uri | CVE-2025-27221 | Userinfo leakage in URI join/merge |
Add the audit to your pipeline to block deployments when vulnerabilities are detected:
# GitHub Actions example
- name: Audit gems
run: bundle exec bundler-audit check --updateThe command returns exit code 1 if vulnerabilities are found, automatically stopping the pipeline.
1. bundle exec bundler-audit update # Update advisory database
2. bundle exec bundler-audit check # Check for vulnerabilities
3. bundle update <vulnerable-gem> # Update one gem at a time (production)
4. rails test -v # Verify nothing broke
5. bundle exec bundler-audit check # Confirm the vulnerability is fixed
6. Repeat until: "No vulnerabilities found"CVE-2025-27610.GHSA-mrxw-mxhj-p664.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.