steganography

python - Reading all kinds of files in different encodings

不羁岁月 提交于 2019-12-06 07:27:54
I built a Python steganographer that hides UTF-8 text in images and it works fine for it. I was wondering if I could encode complete files in images. For this, the program needs to read all kinds of files. The problem is that not all files are encoded with UTF-8 and therefore, you have to read them with: file = open('somefile.docx', encoding='utf-8', errors='surrogateescape') and if you copy it to a new file and read them then it says that the files are not decipherable. I need a way to read all kinds of files and later write them so that they still work. Do you have a way to do this in Python

Steganography in PDF files [closed]

笑着哭i 提交于 2019-12-06 01:41:28
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . Can somebody tell me, where is possible to hide some data into PDF file? In other words, steganography in PDF files. Is there any algorithm to do this? 回答1: There are lots of ways to do this, including Embed the info into an image using traditional image steganography tools then embed the image into the PDF Set

GD imagejpeg() compression?

こ雲淡風輕ζ 提交于 2019-12-05 18:53:32
I'm working on a project where I edit the pixels of a jpg in PHP using the GD library. Its very crucial and key to my project that the output from PHP retains the pixel values I set (cough-steganography-cough). This is the first time I've attempted image manipulation in PHP. I've had no problems before in my Java implementations, so I was foolish not to investigate GD's jpeg compression quality before pursuing further. It turns out that after all my effort, my code does not function the way its supposed to. I am pretty sure it is not my code (tested the encode and decode functions on edited

good resource for exploring image processing in java [closed]

可紊 提交于 2019-12-04 18:58:15
Closed. This question is off-topic . It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . I am new to image processing, please suggest some good resources(Books and Weblinks) for learn image processing(best for steganography analysis) in java for beginner as well as advance level. I have seen documentation provided by oracle, but I want some tutorials and books which focus on the practical environment used in the current development in industries. Thanks!! Image processing is an extensive field with

Good library for Digital watermarking

孤者浪人 提交于 2019-12-04 18:50:40
问题 Can somebody help me, to find a library, or a detailed description of algorithm, that could embed a Digital watermark(invisible watermark, just a kind of steganography) to a jpeg/png file. But the quality of algorithm, should be great. It should be possible to extract this mark after rotation and expansion(if possible) of image. Mark is just a key 32bytes. I found a good site, but the algorithm are made for the NetPBM format, that is dead... I know that there is a LSB method, but it is not

Will random data appended to a JPG make it unusable?

六眼飞鱼酱① 提交于 2019-12-04 16:38:57
问题 So, to simplify my life I want to be able to append from 1 to 7 additional characters on the end of some jpg images my program is processing*. These are dummy padding (fillers, etc - probably all 0x00) just to make the file size a multiple of 8 bytes for block encryption. Having tried this out with a few programs, it appears they are fine with the additional characters, which occur after the FF D9 that specifies the end of the image - so it appears that the file format is well defined enough

Reading encrypted bytes from an image in java

a 夏天 提交于 2019-12-03 21:55:46
I have to embed text in an encrypted image(Stegnography). I googled and found codes for embedding text in an image. But I have to encrypt image at first and embed text in this encrypted image. My tries are as follows. /* * To change this template, choose Tools | Templates * and open the template in the editor. */ package tbn; import java.awt.Graphics2D; import java.awt.Point; import java.awt.Transparency; import java.awt.image.BufferedImage; import java.awt.image.ColorModel; import java.awt.image.ComponentColorModel; import java.awt.image.DataBuffer; import java.awt.image.DataBufferByte;

Is there a Java library for steganography? [closed]

China☆狼群 提交于 2019-12-03 20:50:25
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . By library I mean a use-ready .jar distribution. Image steganography would suffice. Working with JPEG, PNG and BMP would be enough too. Google yields no usable results - mostly explanations and guides, but no libraries. 回答1: https://ccrma.stanford.edu/~eberdahl/Projects/Paranoia/index.html You can download the

Will random data appended to a JPG make it unusable?

余生长醉 提交于 2019-12-03 10:46:38
So, to simplify my life I want to be able to append from 1 to 7 additional characters on the end of some jpg images my program is processing*. These are dummy padding (fillers, etc - probably all 0x00) just to make the file size a multiple of 8 bytes for block encryption. Having tried this out with a few programs, it appears they are fine with the additional characters, which occur after the FF D9 that specifies the end of the image - so it appears that the file format is well defined enough that the 'corruption' I'm adding at the end shouldn't matter. I can always post process the files later

Simple/Basic steganography algorithms and methods

こ雲淡風輕ζ 提交于 2019-12-03 09:17:05
问题 What are the basic and simpliest steganography algorithms and methods? I mean the steganography applied to images. How does a simple program that hides data to images work? What are the main techniques used? How does the program recognize the encrypted message in image without the source image? 回答1: What are the basic and simpliest steganography algorithms and methods? I mean the steganography applied to images. I have written a library for this in the past a long time ago so I can describe