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

推荐订阅源

雷峰网
雷峰网
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
Google DeepMind News
Google DeepMind News
V
V2EX
T
The Blog of Author Tim Ferriss
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Hugging Face - Blog
Hugging Face - Blog
Stack Overflow Blog
Stack Overflow Blog
I
InfoQ
博客园_首页
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Last Week in AI
Last Week in AI
Recent Announcements
Recent Announcements
Vercel News
Vercel News
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
T
Tailwind CSS Blog
美团技术团队
Martin Fowler
Martin Fowler
宝玉的分享
宝玉的分享
Blog — PlanetScale
Blog — PlanetScale
GbyAI
GbyAI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
J
Java Code Geeks

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
GitHub - The-Malware-Files/Stegcore: A privacy-focused st...
ElementMerc · 2026-06-17 · via Hacker News: Show HN

Stegcore logo

Hide encrypted messages inside ordinary files

CI Coverage Release Licence: AGPL-3.0 Commercial licence available


What is this

Stegcore hides encrypted messages inside everyday pictures and sound files. The file still looks and sounds completely normal. Nobody can tell it contains a hidden message, not your internet provider, not a border agent, not a forensic analyst with professional tools.

Your data never leaves your device. No accounts. No cloud. No telemetry. No network connections of any kind. One passphrase to hide, the same passphrase to recover.

If someone ever forces you to hand over a password, give them the decoy one. Stegcore can hold two messages in the same file, each with its own passphrase. Nobody looking at the file can tell which half has the real message, or that a second message exists at all.

Steganalysis at Aletheia parity. Stegcore matches Aletheia, the public reference for steganalysis, on three classical detectors (Sample Pair Analysis, RS, Weighted Stego) to floating-point precision, and runs roughly 100× faster on the RS code path in Rust. Detector thresholds are calibrated against real clean images (Cassavia 2022, BOSSbase 1.01 and an ALASKA2 sample) at a documented low false-alarm rate, never guessed. Everything else (embedding, extracting, encryption, deniable mode, GUI, CLI) is production-ready.

What is under the hood

Three authenticated ciphers (Ascon-128, ChaCha20-Poly1305, AES-256-GCM). Argon2id for turning passphrases into encryption keys, tuned to make brute force painful. Adaptive embedding that picks noisy parts of the cover file so the hidden data disappears into the natural grain. Deniable dual-payload mode. Steganalysis suite at Aletheia parity on the classical SPA / RS / WS detectors, plus tiered structural tool fingerprinting (Exact and Heuristic). Desktop GUI and CLI. One small native binary.


Install

Download a binary (recommended)

Grab the latest release for your platform from the Releases page.

Platform CLI GUI
Linux x86_64 .tar.gz .AppImage or .deb
macOS (Intel and Apple Silicon) Universal binary .dmg
Windows x86_64 .zip .msi

One line installer

Same URL works on Linux, macOS and Windows. Detects your platform automatically.

Linux and macOS:

curl -fsSL https://raw.githubusercontent.com/The-Malware-Files/Stegcore/main/install | sh

Windows (PowerShell):

irm https://raw.githubusercontent.com/The-Malware-Files/Stegcore/main/install | iex
Installer options
# Pin a version
STEGCORE_VERSION=v4.0.1 curl -fsSL .../install.sh | bash

# Custom install directory
STEGCORE_DIR=/opt/stegcore curl -fsSL .../install.sh | bash

# Uninstall
bash install.sh --uninstall
# Windows options
.\install.ps1 -Component both          # CLI plus GUI
.\install.ps1 -Version v4.0.1          # Pin version
.\install.ps1 -Uninstall               # Remove
.\install.ps1 -DryRun                  # Preview only

Build from source

cargo build --workspace --release

This produces the CLI at target/release/stegcore. For the desktop app, run cargo tauri build from the repo root.


CLI usage

# Guided wizard (best for first time users)
stegcore wizard

# Hide a message
stegcore embed cover.png secret.txt -o stego.png

# Recover a message
stegcore extract stego.png -o recovered.txt

# Check a file for a hidden message
stegcore analyse suspect.png

# Scan a folder with a progress bar
stegcore analyse *.png --json

# Works in pipes
echo "secret" | stegcore embed cover.png - -o stego.png
stegcore extract stego.png --raw | xxd

Other useful commands

stegcore score cover.png        # Is this file a good hiding spot?
stegcore diff cover.png stego.png   # Show the pixel difference
stegcore info stego.png         # Read metadata (needs the passphrase)
stegcore ciphers                # List available encryption options
stegcore doctor                 # System health check
stegcore benchmark              # Test how fast your machine runs the ciphers
stegcore completions bash       # Shell completion setup
stegcore verse                  # A small daily encouragement

Full flag reference: stegcore --help.


GUI

Launch Stegcore, then follow the step-by-step wizards for hiding, recovering, or checking files. Drag and drop works everywhere.

Feature What it does
Embed wizard Four-step flow: message, cover file, options, confirm
Extract wizard Three-step flow: stego file, passphrase, recovered payload
Analysis dashboard Animated charts for each detector with the verdict and per-test scores.
Audio analysis Waveform view with suspicious regions highlighted
Pixel diff Before and after comparison on embed success
Export Copy the dashboard to clipboard, export as PDF, HTML, JSON or CSV

Analysis history stays on your device. Nothing leaves.


Supported formats

Format Hide Recover Analyse Notes
PNG Best capacity and concealment
BMP Lossless
JPEG JSteg style JPEG embedding
WebP Lossless WebP
WAV PCM audio, least significant bit
FLAC Lossless audio, bit-exact round-trip

Why Stegcore

We compare against the tools we have actually run side by side (Steghide and OpenStego). Broader head-to-head benchmarks are an ongoing effort.

Stegcore Steghide OpenStego
Works offline
Modern encryption 3 authenticated ciphers plus Argon2id Rijndael plus MD5 AES-128
Deniable dual-payload
Built-in analysis ✓ (SPA + RS + WS + fingerprints)
Cover scoring
Pixel diff
GUI + CLI CLI only GUI only
Works in pipes
Actively maintained ✓ (2026) ✗ (2003) ✗ (2016)

How well does the analysis work

Stegcore is built in public, so we are specific about what it catches and what it does not.

  • Classical detectors at Aletheia parity. Sample Pair Analysis, RS and Weighted Stego match the public Aletheia reference to floating-point precision, and run far faster in Rust.
  • Strong on spatial least-significant-bit replacement at moderate and higher payloads, and on tools that leave a structural fingerprint (OpenStego, for example), where a hit is effectively decisive.
  • Hard, and we say so. Very low payloads, LSB-matching, and JPEG-domain hiding are difficult for classical steganalysis. Stegcore does not pretend otherwise.

Per-release detection numbers, measured on public datasets against Aletheia, are published in the changelog. You can rerun the analysis on your own files:

stegcore analyse your-images/*.png --json > your-scores.jsonl

Docs


Licence

Stegcore is dual-licensed.

  • AGPL-3.0-or-later: the default. Free for individuals, researchers, open-source projects, NGOs, and anyone willing to release their own derivative source under the same terms. See LICENSE.
  • Commercial licence: for organisations that want to build on Stegcore inside proprietary software, internal tools, or hosted services without the AGPL source-release obligation. See COMMERCIAL.md.

Either licence applies to the same codebase; you pick the one that fits your situation. The Acceptable Use Policy applies regardless of which licence you use.

Contact: ops@themalwarefiles.com