
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
decryption-loader
Advanced tools
Decrypt assets with webpack
If your public repository includes files you can't share with the world, one solution is to encrypt them. Decryption-loader allows you to encrypt assets via CLI and decrypt them at build-time right in webpack.
npm install decryption-loader
npx decryption-loader example.txt
You will be prompted for a password and an encrypted file example.txt.enc is created.
webpack.config.js
module.exports = {
// ...
module: {
rules: [
{
test: /\.enc$/,
loader: "decryption-loader",
options: {
password: "password",
},
},
],
},
// ...
};
Be careful: Your webpack configuration file is probably not a safe place to keep passwords.
password (string) required: The password used to derive the encryption keySay you have font.woff, a commercial font that you want to include in your public repository, but can't because of licensing issues. Let's encrypt it to solve this problem:
npx decryption-loader font.woff
We need a save place to store the password. We'll put it in the environment variable PASSWORD. We can use dotenv to set the variable in the context of our local repo:
npm install dotenv
.env
PASSWORD=password
Be sure to add the unencrypted font file and .env to your .gitignore to keep them out of the public repo:
.gitignore
font.woff
.env
Now we have to decrypt the font at build time using webpack:
webpack.config.js
/* Read variables from .env
If actual environment variables are set
the values in .env are ignored */
require("dotenv").config();
module.exports = {
// ...
module: {
rules: [
{
test: /\.(enc)$/,
use: [
{
loader: "file-loader",
// Not including [ext] strips the .cast5 extension from the filename
options: { name: "[name]" },
},
{
loader: "decryption-loader",
options: { password: process.env.PASSWORD },
},
],
},
],
},
// ...
};
And we're done. The encrypted file is now decrypted and then processed by file-loader as font.woff. You can reference the encrypted file font.woff.enc in your CSS like a normal font file.
FAQs
Webpack loader that decrypts assets
We found that decryption-loader demonstrated a not healthy version release cadence and project activity because the last version was released 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.