
Security News
The Next Open Source Security Race: Triage at Machine Speed
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.
Simple and secure steganography
Encrypt and hide arbitrary data inside png images. Experimental, use at your own risk.
bitsTaken are not encrypted for now.Consider an example, a file.txt with 11-byte hello world content. Here's a brief flow of what the library would do:
bitsTaken and save it into capacitybytes 0..1 name length, 4GB maxbytes 1..[1+name length] name, 32 bytes maxbytes B..B+4 file size length, 4GB maxbytes C..[C+file length] file contentsbytes D..end padding filled with zeros — zeros are okay, since we encrypt thembytes 0..12 taken from CSPRNGbytes 12..(end-16) encrypted ABCDbytes end-16..end GCM authentication tagSo, in the end, 11-byte hello world text content would need at least 11 + 41 (1+8+4+12+16) bytes of capacity inside
the png under the given bitsTaken. In any case, it would consume the whole capacity e.g. 500KB and fill it with encrypted
AES output in order to thwart detection.
npm install steg
Can be only used inside browsers. node.js usage with node-canvas that polyfills Canvas API is possible,
but had not been tested.
Select a png image from the web page and uses it to hide file.txt containing hello world
import { RawFile, StegImage, utils } from 'steg';
const file = new RawFile(utils.utf8ToBytes('hello world'), 'file.txt');
const encryptionKey = crypto.getRandomValues(new Uint8Array(32));
const el = document.querySelector('.user-avatar');
const png = new StegImage(el);
const hiddenPngUrl = await png.hide(file, encryptionKey);
Using @noble/hashes library and Scrypt to derive AES key from an arbitrary password
import { scrypt } from '@noble/hashes/scrypt';
const passwordBasedKey = scrypt('some-secure-password', 'secure-salt', { N: 2**19, r: 8, p: 1 });
const hiddenPngUrl = await png.hide(file, passwordBasedKey);
bitsTaken (default: 1) can be an integer from 1 to 8. Lower values makes it harder to detect steganography.const hiddenBiggerPngUrl = await png.hide(file, encryptionKey, 5); // Uses 5 bitsTaken
The form has two upload inputs: one for image inside which the data will be hidden, one for the data itself.
It also has the password and the bit range selector.
<p><input type="file" id="image" accept="image/*" /><label for="image">Image</label></p>
<p><input type="file" id="data" disabled /><label for="data">File to hide inside image</label></p>
<p><input type="password" id="password" disabled /><label for="password">Password</label></p>
<p><input type="range" id="bits" min="1" max="8" value="1" /><label for="bits">Bits taken</label></p>
<div class="steg-output-container"><img id="output" /></div>
Form script:
const { RawFile, StegImage, utils } = steg;
const cache = {};
const el = (s) => document.querySelector(s);
async function hideDataIntoImage() {
if (!cache.password) return;
const bitsTaken = Number.parseInt(el('#bits').value);
const url = await cache.stegImg.hide(cache.hiddenFile, cache.password, bitsTaken);
await utils.setImageSource(el('#output'), url);
}
el('#password').addEventListener('change', (ev) => {
cache.password = ev.target.value;
});
el('#image').addEventListener('change', async (ev) => {
const img = await RawFile.fromFileInput(ev.target);
cache.stegImg = await StegImage.fromBytesOrURL(img.data);
el('#data').disabled = false;
});
el('#data').addEventListener('change', async (ev) => {
cache.hiddenFile = await RawFile.fromFileInput(ev.target);
hideDataIntoImage();
});
el('#steg-bits').addEventListener('change', (ev) => {
el('#steg-bits-value').textContent = ev.target.value;
hideDataIntoImage();
});
MIT (c) Paul Miller (https://paulmillr.com), see LICENSE file.
FAQs
Encrypt and hide arbitrary data inside png images
We found that steg 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
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.

Security News
gem.coop is testing registry-level dependency cooldowns to limit exposure during the brief window when malicious gems are most likely to spread.