GHSA-96qw-h329-v5rg

Suggest an improvement
Source
https://github.com/advisories/GHSA-96qw-h329-v5rg
Import Source
https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/01/GHSA-96qw-h329-v5rg/GHSA-96qw-h329-v5rg.json
JSON Data
https://api.osv.dev/v1/vulns/GHSA-96qw-h329-v5rg
Published
2026-01-08T21:13:37Z
Modified
2026-02-03T03:15:57.934161Z
Severity
  • 7.5 (High) CVSS_V3 - CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N CVSS Calculator
Summary
Shakapacker has environment variable leak via EnvironmentPlugin that exposes secrets to client-side bundles
Details

Summary

Since 2017, the default webpack plugins have passed the entire process.env to EnvironmentPlugin. This pattern exposed ALL build environment variables to client-side JavaScript bundles whenever application code (or any dependency) referenced process.env.VARIABLE_NAME.

This is not a regression - the vulnerable code has existed since the original Webpacker implementation. No recent code change in Shakapacker triggered this issue.

Impact

Any environment variable in the build environment that is referenced in client-side code (including third-party dependencies) is embedded directly into the JavaScript bundle. This includes:

  • DATABASE_URL - Database credentials
  • AWS_SECRET_ACCESS_KEY - AWS credentials
  • RAILS_MASTER_KEY - Rails encrypted credentials key
  • STRIPE_SECRET_KEY, TWILIO_AUTH_TOKEN - Third-party API keys
  • Any other secrets present in the build environment

Severity: Critical - secrets are exposed in publicly accessible JavaScript files.

Root Cause

The original code used:

new webpack.EnvironmentPlugin(process.env)

This makes every environment variable available for substitution. If any code references process.env.SECRET_KEY, that value is embedded in the bundle.

Patches

Upgrade to version 9.5.0 or later, which uses an allowlist approach that only exposes NODE_ENV, RAILS_ENV, and WEBPACK_SERVE by default.

Workarounds

If developers cannot upgrade immediately: 1. Audit client-side code and dependencies for any process.env.X references to sensitive variables 2. Remove sensitive variables from the build environment 3. Override the default plugins with a custom webpack/rspack config using an explicit allowlist

Migration

After upgrading, if client-side code needs access to specific environment variables:

Option 1: Use the SHAKAPACKER_PUBLIC_ prefix (recommended)

# Variables with this prefix are automatically exposed
export SHAKAPACKER_PUBLIC_API_URL="https://api.example.com"

Option 2: Use SHAKAPACKER_ENV_VARS

SHAKAPACKER_ENV_VARS=API_URL,FEATURE_FLAG bundle exec rails assets:precompile

Action Required

After upgrading, rotate any secrets that may have been exposed in previously compiled JavaScript bundles.

Resources

  • Fix PR: https://github.com/shakacode/shakapacker/pull/857
Database specific
{
    "nvd_published_at": null,
    "github_reviewed_at": "2026-01-08T21:13:37Z",
    "github_reviewed": true,
    "cwe_ids": [
        "CWE-200"
    ],
    "severity": "HIGH"
}
References

Affected packages

npm / shakapacker

Package

Affected ranges

Type
SEMVER
Events
Introduced
0Unknown introduced version / All previous versions are affected
Fixed
9.5.0

Database specific

source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/01/GHSA-96qw-h329-v5rg/GHSA-96qw-h329-v5rg.json"

RubyGems / shakapacker

Package

Name
shakapacker
Purl
pkg:gem/shakapacker

Affected ranges

Type
ECOSYSTEM
Events
Introduced
0Unknown introduced version / All previous versions are affected
Fixed
9.5.0

Affected versions

6.*
6.0.0.rc.6
6.0.0.rc.12
6.0.0.rc.13
6.0.0.rc.14
6.0.0
6.0.1
6.0.2
6.1.0.beta.0
6.1.0
6.1.1
6.2.0
6.2.1
6.3.0.pre.rc.1
6.3.0
6.4.0
6.4.1
6.5.0
6.5.1
6.5.2
6.5.3
6.5.4
6.5.5
6.5.6
6.6.0
7.*
7.0.0.rc.0
7.0.0.rc.1
7.0.0.rc.2
7.0.0
7.0.1
7.0.2
7.0.3
7.1.0
7.2.0.rc.0
7.2.0
7.2.1
7.2.2
7.2.3
7.3.0.beta.1
8.*
8.0.0.pre.rc.1
8.0.0.rc.2
8.0.0.rc.3
8.0.0.rc.4
8.0.0
8.0.1
8.0.2
8.1.0
8.2.0
8.3.0
8.4.0
9.*
9.0.0.beta.0
9.0.0.beta.2
9.0.0.beta.3
9.0.0.beta.4
9.0.0.beta.5
9.0.0.beta.6
9.0.0.beta.7
9.0.0.beta.8
9.0.0.beta.9
9.0.0.beta.10
9.0.0.beta.11
9.0.0
9.1.0
9.2.0
9.3.0.beta.0
9.3.0.beta.1
9.3.0.beta.2
9.3.0.beta.4
9.3.0.beta.5
9.3.0.beta.6
9.3.0.beta.7
9.3.0
9.3.1
9.3.2
9.3.3
9.3.4.beta.0
9.3.4
9.4.0

Database specific

source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/01/GHSA-96qw-h329-v5rg/GHSA-96qw-h329-v5rg.json"