Steganography is the study of hidden information in pictures, text, or audio. It covers both methods of concealing information and methods of detecting hidden information.

learn more… | top users | synonyms

1
vote
2answers
30 views

How to hide text in an PDF file?

How can I add text to a pdf document, which is not visible? The document manipulation should be done in java. The usecase is to add further metadata to a document (in a proprietary format, about ...
0
votes
0answers
11 views

return value when this code was perform

int red = colorvalue >> 2;// why use this expression colorvalue -= red << 2; int colorValue = messageLength; int red = colorValue >> 2; colorValue -= red << 2; int green = ...
-2
votes
2answers
28 views

return value when this code was performing?

pixelcolor = bitmap.GetPixel(0, 0); messagelength = (pixelcolor.R << 2) + (pixelcolor.G << 1) + (pixelcolor.B); int colorvalue = messagelength; I don't understand this code, please ...
1
vote
2answers
72 views

Hide text in .bmp

I've made this function in C to put text inside a bmp image. I've tried to make it change only the least significant pixel of the red color. But when I open the edited image the blue is changed. The ...
0
votes
0answers
13 views

steganography and packing the binary

I have a weird question. today, there are many tools and researches for packing the binary(mostly x86) for obfuscation, and it works good. but is there any known tool, research or project to hide ...
0
votes
1answer
82 views

Bit operators issues and Steganography in image processing

Steganography link shows a demonstration of steganography. My question is when the number of bits to be replaced, n =1, then the method is irreversible i.e the Cover is not equal to Stego (in ideal ...
-5
votes
0answers
36 views

How to use f5.jar for jpeg steganography in java [closed]

How to use f5.jar for jpeg steganography in java I added f5.jar to my project but how to to use it. And which method to use for embedding ?
1
vote
0answers
45 views

Grab an image from a div and set it to be a variable in JavaScript (chrome extension)

I am trying to desteghide an image to reveal the secret message. I have got it working, but only by browsing the image which contains the message. If you take a look at the screenshot: To make ...
-2
votes
2answers
42 views

GUI for Text Steganography C program [closed]

How to develop a GUI for my program.I have made a c program to encrypt and decrypt any secret text message. I am hiding the message in the spaces between the words.
-8
votes
0answers
50 views

GUI for steganography in C language [closed]

How can i make a GUI for my encryption algorithm ( text steganography). I have written the algorithm in c language.
0
votes
2answers
97 views

Saving Jpeg image in C# changes pixels

I wrote my own code implementing Steganography project to hide text inside an image. The code works perfectly. But when I save the image into jpeg file and opening it again, the data is lost, and I ...
-3
votes
0answers
65 views

Java- Why this code is working correctly with a png and not a jpg image file? [closed]

Below is a part of code for revealing hidden text inside an image: Here imBytes is an image byte array, Here, offset=0; MAX_INT_LEN = 4; private static int getMsgLength(byte[] ...
1
vote
3answers
92 views

Steganography in PDF files [closed]

Can somebody tell me, where is possible to hide some data into PDF file? In other words, steganography in PDF files. Is there any algorytm to do this? Thanks
0
votes
1answer
87 views

Decode .bmp image

I just started studying computer science and our teacher gave us this small, but tricky programming assignment. I need to decode a .bmp image http://postimg.org/image/vgtcka251/ our teacher have ...
1
vote
2answers
110 views

Data hiding in Image

I am hiding a text file in an image using http://github.com/anirudhsama it works fine and I could able to extract the text file again back with my program. But when I programmatically share the image ...
-1
votes
0answers
24 views

What other steganalysis packages are available besides Ben4 and VSL? [closed]

I am looking for steganalysis packages. I prefer free packages. Thus far, I've found Ben4 and VSL. Are there any other packages that I should be aware of?
0
votes
0answers
31 views

M16MA (mod 16 method for audio)

HI every one this my first question here . . im trying to write a C# program in steganography that uses M16MA method . . the problem is that the resultant audio (.mp3 , .wav) is very Distorted . . can ...
0
votes
2answers
150 views

Video Steganography in java

I am implementing a video steganography for my project. I came across the algorithm from here . i have tried and tested the code and the embedding part is working fine. But i encountered a problem ...
0
votes
0answers
37 views

drop rtp packet by specific sequence number with iptables

i try to make Lack Steganography. i should drop some packet before send my stegano packet Question : what the command to drop packet from specific sequence number with iptables? or with other ...
0
votes
0answers
159 views

Error “java.lang.IllegalArgumentException: im == null!” while converting byte array into Image file?

I want to convert byte array into Image file . This is the portion of my code BufferedImage image = user_space(getImage(image_path(path,name,"jpg"))); ...
2
votes
1answer
85 views

How to make DWT in steganography work

Effectively my question boils down to the following. In steganography, when one hides information in the DWT coefficients of an image, how can he obtain integer values for the pixels after taking the ...
1
vote
0answers
67 views

classes to use for video steganography in java

I have implemented Image and Audio steganography already in java and now i want to implement video steganography. But, i still haven't been able to find what are the classes that used to do this for ...
1
vote
1answer
49 views

Steganography-images to sound

I looked over the Internet for tehniques to hide sounds into images or images into sounds but I did not find any useful information.Can you give me some links,book titles or advices?I want to make a ...
0
votes
0answers
87 views

Implementing Steganography on Audio Streaming

I'm new here.. I'm trying to implement steganography on audio streaming using JMF so I modify datagrampacket data on the server and directly send it. Why I can't get the stream on the receiver? My ...
0
votes
0answers
93 views

Video frames extraction and modification

I wanna do a project in video steganography using Java. So in theory, I have to get each frame of video and hide some data inside each frame. So my doubts are: Which approach is good? Extract each ...
1
vote
1answer
143 views

Steganography in C

Trying to do basic Steganography on a PPM Image. I have the basic algorithm completed. Read in the file, check the header starts with P6, get the image width and height, and the pixel data. I need ...
0
votes
1answer
53 views

hide tar file in png

Can I simply embed tar file inside png image? I`m tried cat file.tar image.png > secret.png, but this not working for me. does have anybody working example? it would be preferable in ruby or ...
4
votes
1answer
118 views

Reversible shuffling a int array in java [duplicate]

I have a int array of considerably large size. I need to shuffle the array completely using a key. I should be able to obtain the original array using the same key. I searched for any shuffle ...
-4
votes
1answer
93 views

How to do image stegnography in android [closed]

I want to hide a secrete message inside image. I don't have any idea about algorithm used for this.Can any one please help me to give an idea how to implement it.
0
votes
0answers
52 views

Using / Scripting Snow Steganography Tool

I've been given a group Forensic Computing assignment and my role is to come up with a script that would enable me to use the "SNOW" steganography tool to search through a directory of files and find ...
0
votes
1answer
48 views

Function failing to return a value

So I'm making a simple steganography tool (encrypting messages within images) and exposing it as a web service via Node.js. I am very new to Javascript and Node.js in particular. The app first ...
0
votes
2answers
61 views

Hide email address from bots using pseudo elements?

Pseudo elements are not part of the DOM. They can't be targeted by javascript, and they are visible to the user. If I wanted to implement a site with my email address (or any other information I did ...
0
votes
0answers
86 views

How to use haar dwt for hiding data

I am doing a project in image steganography. I have applied haar dwt on the image. My idea is to store the data in the edges so that it is easily not detectable. I get 4 sub bands after applying ...
0
votes
0answers
59 views

Embedding a array within another array (steganography)

I have two arrays say char a[100][100] and char b[10][10], I need to embed the array b into array a efficiently. Are there any standard algorithms such that this can be done with least changes in ...
1
vote
0answers
329 views

DCT method implementation for image steganography

I need to implement a program that embeds text message inside an image (PNG or BMP it doesn't matter) using DCT matrix for hiding message. I read some articles but most of them very complex. Here is ...
0
votes
0answers
203 views

steganography decryption and encryption

Can anybody guide me how to decrypt the steganography jpeg image.. I have tried googling but all are pointing me towards png decryption and I am sure that the jpeg has some sort of decryption..
0
votes
2answers
60 views

What language and framework/library should I use to write my educational program? [closed]

I feel a bit lost these days... The thing is that I have to write a program for my Master's degree work in my University, I have half a year to do that. And I am completely lost in the wide range of ...
2
votes
1answer
128 views

Block steganography in PHP for an image host?

I am in the process of creating an image host, but want to avoid people embedding hidden images and files in the images they upload, as I cannot see the hidden images, therefore cannot monitor them. ...
-4
votes
1answer
129 views

Code refactoring, but how?

I am reading a data from .wav file and then converting it into binary format. and then I write those binaries and create a new .wav file. I want that after getting binary format of .wav file I should ...
0
votes
3answers
88 views

Read .bmp image and subtract 10 from 10th byte of the image and re-create the image in Java

I am creating an application which will read image byte/pixel/data from an .bmp image and store it in an byte/char/int/etc array. Now, from this array, I want to subtract 10 (in decimal) from the ...
2
votes
2answers
84 views

How to encode a 256 bit public key into a variable length sequence of words

[EDIT] I have completely rephrased the question to try to be more concise and clear I am looking for a 1-1 function, encode, such that encode( 32_bytes_of_data ) => {w_1, w_2, ..., w_n}, where: ...
1
vote
1answer
161 views

Weird Ascii characters in output of decoding an Encoded image Java

I am writing a Image encryption program in which I encode a string inside the image. I am working with .png images. Encoding is performed by following steps: Pixels of the image are stored in a ...
0
votes
1answer
973 views

Image Steganography Java

I am trying to decode the data encoded in the image. The encoding works fine and the data size of image also changes but for some reason the decoded data is an empty string. Either the encoded data ...
0
votes
1answer
118 views

How to extract two images from combined images? [duplicate]

Possible Duplicate: Is there a Java library for steganography? public void myfunction() { try { BufferedImage image = ImageIO.read(new File("first.jpg"));//first image ...
2
votes
2answers
77 views

What is the testbench process for hashing algorithms?

Suppose that I wrote an implementation of a standard algorithm such as an MD* or a SHA*: How I know that it's correct ? Different implementations of the same algorithm must produce the same digest ?
-1
votes
2answers
103 views

Anyone help me with segmentation fault [closed]

I am having trouble with my decoder and was wondering if anyone could help me out? basically, i am trying to build a decoder for my steganography encoder, the encoder places a bit from a message on ...
0
votes
3answers
103 views

How to modify an array?

I'm currently trying my hand at steganography with some .wav files. What I want to do is write a program that opens the sound file into an array and then modify said array, but that's where I'm ...
1
vote
1answer
541 views

Android bitmap.setPixel(x,y,color) is setting passed in value

Create a bitmap using Bitmap.create(25, 25, Config.ARGB_8888) Setting a pixel with an alpha value less than or equal to 0xA9 results in the pixel not being set with what's passed in. I read another ...
1
vote
0answers
93 views

SDL compiled version of the libjpeg for iPhone ios [duplicate]

I'm developing a steganography iPhone app where the user can hide a "secret message" within an image. One way to do that is by manipulating the DCT coefficients of jpeg images which, from my readings, ...
1
vote
1answer
422 views

PNG file size increase in LSB steganography

I am working on image steganography problem in which i have to hide some text information inside the png image file. After successful steganograpy operation, the resultant image which is generated is ...

1 2 3