Steganography

Hey guys, so this is. It’s been a while since I’ve done a podcast. So I’m working on a system right now, which hides data within an image or not exactly within the image, the image is the data
I’m working with something called steganography it’s hiding data. That’s really what it is. So, what I, what currently exists, is where you can, you can hide data within an image but for a person who can, who is smart, and who knows how data is hidden within an image within a PDF and all he can figure it out. So, how that works is when a file is made, there’s a file header and there’s something called the end of the file.
Okay, now this normally works in Linux. In Windows, it doesn’t work that well. But I’ll tell you what I did also. So, anything between the starting of the file and ending with a file you can put, okay. You put that particular file will be that it will be identified by that file so supposing, there’s a PDF. Okay now you’re starting with your PDF and you’re ending on the PDF anything between these two things is your PDF content. Now, anything you put below that or above that should theoretically, not being understood like it should not be able to identify the object or whatever it is, or whatever the file is of you can put the image you can put text below the PDF and it will still identify it as a PDF. Now, I did, an episode a few months or a few in last year, wherein a file could be a PDF it could be an image and it could be a Word document as well. So the point is you hide data between it. Now coming to what I tried to do so. My plan was, how do I make a product/code / whatever like a piece of code or piece of software where you can hide data within an image. Yet, the data is not an image. So, basically what I’m doing is I’m taking the data of the image so an image at the end is all hex values. Okay, hex values, so it’s four bytes. So, what I’ll do is, in that image, theoretically, okay, everything on match, all the possible codes in offer hex value could be in that image now if so what I do is say suppose in the start of a file is Hello.

in the text hello we take ‘H’ which has a hex value of “A” (in theory for understanding purpose)
and the same value “A” is also there somewhere in the image
I map the value “A” from the image to that of the text file

So, theoretically, that means I can take any text file, or I can take any image file and convert it to anything I want. Yet, there will be nothing in the image file by itself, so even if I give it to any guy you know any person who knows steganography, he won’t be able to understand, like, what is hidden there because there is nothing hidden under there it is pure we’re only seeing the data and mapping it out. Now, this is an internal project I’m just trying out I do not know whether you know get through more work but worst case scenario launch of the new best-case scenario I made a new software. So, this is something I’m trying out. I’ll put it on GitHub, as soon as it’s ready or. Let’s see. But yeah.

Scroll to Top