TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Show HN: Hide Messages in Images with Steganography

54 点作者 tagx将近 13 年前

9 条评论

DanBC将近 13 年前
I'm a bit drunk, so uh, yeah.<p>LSB steganography is trivially easy to detect. Do not use LSB steganography.<p>Steganography can be provably secure, with the correct amounts of plain text and "cover data".<p>Here's one PDF. (<a href="http://www.cs.cmu.edu/~biglou/PSS.pdf" rel="nofollow">http://www.cs.cmu.edu/~biglou/PSS.pdf</a>)<p>Some people need this kind of stuff to work to avoid torture or other serious consequences, but most implementations are toys to demonstrate proof of concept or to play with the ideas.<p>tl:dr a real cryptographer will be along to correct my mistakes and provide sensible links.
评论 #4390172 未加载
gw将近 13 年前
Interesting work. My own JS stego tool uses a similar technique, though I implemented encryption and message scattering as well:<p><a href="http://oakes.github.com/PixelJihad/" rel="nofollow">http://oakes.github.com/PixelJihad/</a>
jnazario将近 13 年前
and detect those messages in plain sight.<p><a href="http://www.outguess.org/detection.php/" rel="nofollow">http://www.outguess.org/detection.php/</a>
pizza将近 13 年前
Related: Lenna <a href="http://en.wikipedia.org/wiki/Lenna" rel="nofollow">http://en.wikipedia.org/wiki/Lenna</a>
评论 #4389775 未加载
atmz将近 13 年前
I wrote an essay/slides a while back which may be of interest to people wanting to know a bit more about basic steganographic image creation and detection: <a href="http://www.cl.cam.ac.uk/teaching/0910/R08/work/slides-at443-steganography.pdf" rel="nofollow">http://www.cl.cam.ac.uk/teaching/0910/R08/work/slides-at443-...</a> <a href="http://www.cl.cam.ac.uk/teaching/0910/R08/work/essay-at443-steganography.pdf" rel="nofollow">http://www.cl.cam.ac.uk/teaching/0910/R08/work/essay-at443-s...</a><p>Quick improvement to the LSB method: Use JPEG and embed the data in the LSB of the DCT coefficients (still detectable, but not as trivially)<p>Cool demo though - I'd add a disclaimer though. It's easy to think that it's obvious that people shouldn't use this to store their password in, say, their Facebook profile photo, but..
liyanchang将近 13 年前
Actually a really cool way of storing passwords in plain sight.<p>EDIT: Though if you were really secure, you shouldn't be typing your passwords into a third party website in plaintext. Alas, I'll have to write my own.
评论 #4390418 未加载
评论 #4390561 未加载
yankoff将近 13 年前
Nice. I implemented it in Ruby once <a href="https://github.com/yankov/steganograph" rel="nofollow">https://github.com/yankov/steganograph</a>
poundy将近 13 年前
LSB steganography works on PNG (lossless compression). Saving it as a jpg file causes data to be lost.
mksm将近 13 年前
nice! we integrated this with FUSE for one of our class projects <a href="https://github.com/maksim-s/JKS-FS" rel="nofollow">https://github.com/maksim-s/JKS-FS</a>