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

推荐订阅源

有赞技术团队
有赞技术团队
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
IT之家
IT之家
博客园 - 【当耐特】
罗磊的独立博客
Stack Overflow Blog
Stack Overflow Blog
MyScale Blog
MyScale Blog
WordPress大学
WordPress大学
The GitHub Blog
The GitHub Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Hugging Face - Blog
Hugging Face - Blog
I
InfoQ
B
Blog RSS Feed
腾讯CDC
云风的 BLOG
云风的 BLOG
N
Netflix TechBlog - Medium
Apple Machine Learning Research
Apple Machine Learning Research
GbyAI
GbyAI
雷峰网
雷峰网
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
D
DataBreaches.Net
The Cloudflare Blog
V
V2EX
S
SegmentFault 最新的问题

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
Scaling Stealth: Massive Capacity Upgrades for Coverless ...
Anjasfedo · 2026-05-16 · via DEV Community

In our journey through coverless steganography, we first explored CIHMSB —a method that hides data by matching message bits to the average intensity of image fragments. While perfect in its invisibility, CIHMSB faces a significant hurdle: capacity. Using only one bit per fragment limits how much data we can hide in a single image.

Today, we are looking at two advanced extensions that shatter these capacity limits: E-CIHMSB and CB-CIHMSB. By applying matrix extensions and combination theory, we can pack significantly more data into the same carrier while actually improving robustness against image attacks.

Academic Attribution 📚
This implementation and analysis are based on the 2023 research paper:
"A Robust and High-Capacity Coverless Information Hiding Based on Combination Theory" by Kurnia Anggriani, Shu-Fen Chiou, Nan-I Wu, and Min-Shiang Hwang.
DOI: https://doi.org/10.15388/23-INFOR521.


🚀 The Next Evolution: Two Powerful Extensions

The researchers identified that the original CIHMSB only embeds one bit per segment, making it inefficient for large messages. They proposed two solutions:

1. E-CIHMSB (Extended CIHMSB)

This scheme builds an "Extended Matrix". After calculating the average pixel values for all fragments in a group, it adds one extra value: the average of all those averages. This simple mathematical addition increases the bit pool for every image carrier.

2. CB-CIHMSB (Combination Theory-Based)

This is the true heavy-lifter. Instead of just adding one value, it uses combination theory to create a "Combined Matrix". If you have a group of n fragments, it calculates the averages for every possible combination of those fragments (choosing 1, 2, 3, or all n).
The capacity growth is exponential: EC = 2^n - 1. For a group of 4 fragments, you generate 15 feature values instead of just 4!


🧪 Benchmark: Performance Comparison

To see these algorithms in action, I ran a full experimental benchmark on a 512x512 carrier image using 8x8 fragments. Here are the real-world results:

1. Image Quality Assessment

As these are coverless methods, the image itself is never modified.

  • SSIM: 1.0 (Perfect match)

  • Qi: 1.0 (Optimal quality)

2. Hiding Capacity (512x512 Carrier)

Method Bits per Carrier Improvement
Original CIHMSB 16,384 bits Baseline
E-CIHMSB 20,480 bits +25%
CB-CIHMSB 61,440 bits +275%

3. Robustness Analysis (BER)

Bit Error Rate (BER) measures how many bits were lost during a transmission attack. Lower is better.

Attack Type E-CIHMSB BER CB-CIHMSB BER
AGWN (Var 0.1) 16.07% 7.14%
SPN (Dens 0.005) 5.36% 1.79%
AF (3x3 Window) 12.50% 8.93%
JPEG (Quality 50-90) 1.79% - 5.36% 0.00% (Perfect)

🔍 Why is CB-CIHMSB the Clear Winner?

Looking at the benchmark data, CB-CIHMSB is superior for two main reasons:

  1. Massive Capacity: It offers 275% more capacity than the original method. You can hide an entire secret document where you previously could only hide a short paragraph.
  2. Superior Robustness: Notice the JPEG compression results. While E-CIHMSB suffered some errors, CB-CIHMSB achieved a 0.00% Bit Error Rate. Because it averages multiple combinations of fragments, the secret features become more "stable" and resistant to pixel-level distortions like JPEG artifacts or blurring.

🎯 Conclusion

The research by Anggriani et al. proves that coverless steganography does not have to be low-capacity. By shifting from linear fragment matching to combinatorial logic, we can hide massive amounts of data with zero pixel manipulation. This makes it impossible for standard steganalysis tools to detect anything—because mathematically, there is nothing "embedded" in the pixels.

Check out the full modular Python implementation on my GitHub! https://github.com/Anjasfedo/ecihmsb_cbcihmsb