惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

大猫的无限游戏
大猫的无限游戏
云风的 BLOG
云风的 BLOG
小众软件
小众软件
V
V2EX
博客园 - Franky
博客园 - 司徒正美
Apple Machine Learning Research
Apple Machine Learning Research
量子位
博客园 - 【当耐特】
雷峰网
雷峰网
WordPress大学
WordPress大学
Jina AI
Jina AI
Google DeepMind News
Google DeepMind News
N
Netflix TechBlog - Medium
爱范儿
爱范儿
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
阮一峰的网络日志
阮一峰的网络日志
IT之家
IT之家
Blog — PlanetScale
Blog — PlanetScale
Hugging Face - Blog
Hugging Face - Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
V
Visual Studio Blog
Microsoft Security Blog
Microsoft Security Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I Built a Tool That Hides Files Inside Images — Completel...
Rishu · 2026-05-27 · via DEV Community

Rishu

A while back, I got obsessed with a question: what if you could hide a file inside a photo, and no one could tell it was there?

That curiosity turned into Stego.Image — a client-side web app that combines steganography, AES-256 encryption, and GZIP compression to secretly embed files inside ordinary images. No server. No uploads. No trace.

🔗 Live Demo → stegoimage.pages.dev


The Core Idea: Two Layers of Security

Most security tools give you one lock. Stego.Image gives you two:

  1. Steganography hides the existence of the data — to any observer, it's just a regular image.
  2. Encryption protects the contents of the data — even if someone knows something is hidden, they can't read it without the password. This combination is sometimes called "security through obscurity + cryptographic security." Neither alone is bulletproof. Together, they're a meaningful barrier.

How It Works

Step 1 — Compress

Before anything else, the input file is compressed using GZIP (via the pako library). This reduces the payload size, which matters because the amount of data you can hide is constrained by the image's pixel count.

Step 2 — Encrypt

The compressed bytes are encrypted with AES-256 using crypto-js. The key is derived from a user-provided password. No password = no data. This step ensures the hidden payload is unreadable gibberish without the correct credentials.

Step 3 — LSB Steganography

Here's the fun part. The encrypted bytes are embedded into the Least Significant Bits of the image's RGB pixel values.

Original pixel value: 11001010
Modified pixel value: 11001011

Enter fullscreen mode Exit fullscreen mode

Changing the last bit of a color channel moves the value by at most 1 — from 0 to 255, that's invisible to the human eye. The output image looks identical to the original, byte for byte to the eye, but it's secretly carrying your data.

Extraction

Decoding reverses the process: extract the LSBs → decrypt with the password → decompress → reconstruct the original file.


What Can You Hide?

Basically anything binary:

  • Documents (PDF, DOCX, TXT)
  • Images (PNG, JPG, GIF — yes, an image inside an image)
  • Archives (ZIP, RAR, 7z)
  • Media files (MP3, MP4)
  • Code files (JS, Python, JSON)

Why 100% Client-Side Matters

The decision to keep everything in the browser wasn't just a technical choice — it was a privacy choice.

If files were sent to a server for processing, that server operator could log them, inspect them, or have them compromised in a breach. By processing everything locally using the Web Crypto API and canvas manipulation, the user's data never leaves their device.

No server = no attack surface on the server side.


The Tech Stack

Category Library
Framework React + Vite
Styling Bootstrap
Encryption crypto-js
Compression pako
File Handling file-saver
Archive Output jszip
File Upload react-dropzone
Routing react-router-dom

Interesting Challenges

Capacity math. The image has to be large enough to hold the payload. Each pixel contributes 3 bits of storage (1 per RGB channel). A 1000×1000 image has 1,000,000 pixels = ~375 KB of storable data before accounting for metadata overhead. The UI shows a live capacity indicator so users know upfront if their image is big enough.

PNG is required for output. JPEG compression is lossy — it would destroy the LSB data. The output is always a PNG, even if the input was a JPEG.

Key derivation matters. A weak or simple password makes the AES-256 encryption only as strong as the password. Future work could add PBKDF2 or Argon2 to stretch the key and resist brute-force attacks.


What I Learned

Building this taught me more about how images work at the bit level than any tutorial ever did. It also got me thinking about the gap between "encrypted data" and "hidden data" — and why both matter in different threat models.

Steganography has real-world uses: journalists communicating in high-censorship environments, digital watermarking, and covert channels in security research. It's also a great vehicle for learning about cryptography and binary manipulation.


Try It or Contribute

If you find this interesting, have ideas for improvements, or want to contribute, pull requests are welcome. I'd especially love feedback on the UX and any edge cases people find in the capacity/encoding logic.