Difference between revisions of "CSC231 Homework 6"

From dftwiki3
Jump to: navigation, search
(Debugging)
 
(8 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
=Steganography=
 
=Steganography=
 +
--[[User:Thiebaut|DT]] 22:26, 28 October 2008 (UTC)
 +
__TOC__
  
 +
=Introduction=
  
 
This homework is due on Wed. Oct 29th, at 11:59 p.m. + 1min.
 
This homework is due on Wed. Oct 29th, at 11:59 p.m. + 1min.
Line 52: Line 55:
 
Of course, we assumed here that the MSB of the ASCII charcter is the first one that gets stored in the pixel bytes, but it could just as well be the LSB. '''You have to figure out how the secret message gets encoded into the pixel bytes...
 
Of course, we assumed here that the MSB of the ASCII charcter is the first one that gets stored in the pixel bytes, but it could just as well be the LSB. '''You have to figure out how the secret message gets encoded into the pixel bytes...
 
'''
 
'''
 +
 +
=Assignment=
 
Your assignment is to write an "extractor" program that will take the name of a BMP file on the command line, load the image in memory, and extract from the least significant bits of the bytes forming the image a series of ASCII bytes that it will then print on the screen.
 
Your assignment is to write an "extractor" program that will take the name of a BMP file on the command line, load the image in memory, and extract from the least significant bits of the bytes forming the image a series of ASCII bytes that it will then print on the screen.
  
Line 72: Line 77:
 
Once the program returns to the Linux pompt, the '''mountains.bmp''' file will have been processed by your code, and hopefully the hidden contents will have been listed on the screen.
 
Once the program returns to the Linux pompt, the '''mountains.bmp''' file will have been processed by your code, and hopefully the hidden contents will have been listed on the screen.
  
 +
=Test Files=
 
Here are 4 images that contain secret information that your program should be able to decode:
 
Here are 4 images that contain secret information that your program should be able to decode:
  
Line 82: Line 88:
 
Note that the first three images look absolutely identical, but all 3 contain different messages.  I find it pretty remarkable that the secret message is stored in the first bytes of the first row of the bmp file, and for the Woodstock images, this first row is white, or appears white, but the bits are there, impossible to detect!
 
Note that the first three images look absolutely identical, but all 3 contain different messages.  I find it pretty remarkable that the secret message is stored in the first bytes of the first row of the bmp file, and for the Woodstock images, this first row is white, or appears white, but the bits are there, impossible to detect!
  
'''Requirements: you must use functions!'''
+
=Requirements=
  
 +
'''You must use functions!'''
 +
 +
=Submission=
 
Once your program extracts a string that looks like English text, and no strange characters, you're done!  Nothing else to submit except your program!  Submit your program (called hw6.asm) as follows
 
Once your program extracts a string that looks like English text, and no strange characters, you're done!  Nothing else to submit except your program!  Submit your program (called hw6.asm) as follows
  
 
       submit hw6 hw6.asm
 
       submit hw6 hw6.asm
 +
 +
=Debugging=
 +
 +
Because the program assumes that you will provide a file on the command line (the name of the image file), if you want to debug your program with '''ddd''', then you need to proceed as follows:
 +
* start '''ddd'''
 +
 +
    ddd hw6 &
 +
 +
* once ddd is open, put a '''breakpoint''' at the beginning of ''your'' code section, when the file has been read
 +
* Then using the top menu, click on '''Program''', then '''Run''', then enter the name of the bmp file you want to work with in the '''argument''' box.
 +
 +
* Click '''Run'''.
 +
 +
You are now debugging your program after it has loaded the bmp file in question.
 +
 +
=Fun stuff=
 +
 +
For your enjoyment, a [http://www.youtube.com/watch?v=-TKb7JrhJpk  movie]...

Latest revision as of 08:08, 30 October 2008

Steganography

--DT 22:26, 28 October 2008 (UTC)

Introduction

This homework is due on Wed. Oct 29th, at 11:59 p.m. + 1min.

It deals with steganography, and specifically the problem of decoding an images where the least significant bit of each byte is used to store one eighth of an ascii character.

An example will illustrate the concept. Assume that the first 16 bytes of a BMP image file are as follows:

         A2 
         B2 
         C7 
         FF 
         00 
         20 
         31 
         30 

         AA 
         AA 
         AB 
         AB
         00 
         20 
         21 
         21 

Let's rewrite the same 16 bytes, but this time we write next to each byte its least significant bit as a separate entity:

         A2 0
         B2 0
         C7 1
         FF 1
         00 0
         20 0
         31 1
         30 0

         AA 0
         AA 0
         AB 1
         AB 1
         00 0
         20 0
         21 1
         21 1

You notice that when the byte contains an even number, the LSB is 0, and 1 otherwise.

Now, let's group these 16 least significant bits as 2 bytes. We get 00110010 00110011, or 0x32 0x33. We recognize here the ASCII codes for the character '2' and for the character '3'. We have in effect "hidden" the string "23" in the first 16 bytes of the image, and we have done so in such a way that the image still looks like an original when viewed by a human being. This is because the human eye cannot notice a 1-bit change in a color coded in 8 bits.

Of course, we assumed here that the MSB of the ASCII charcter is the first one that gets stored in the pixel bytes, but it could just as well be the LSB. You have to figure out how the secret message gets encoded into the pixel bytes...

Assignment

Your assignment is to write an "extractor" program that will take the name of a BMP file on the command line, load the image in memory, and extract from the least significant bits of the bytes forming the image a series of ASCII bytes that it will then print on the screen.

As is the convention for character strings in C, the secret message is terminated by a 0-byte, i.e. a byte whose 8 bits are 0 (as we did in class on Wed. Oct 22nd).

Use the following files as a skeleton for working with BMP files:

To open a bmp file and process it with makegreyBmp.asm, proceed as follows (assume the image file is called mountains.bmp):

             nasm -f elf -F stabs makegreyBmp.asm
             ld -o makegreyBmp makegreyBmp.o
             makegreyBmp  mountains.bmp


Once the program returns to the Linux pompt, the mountains.bmp file will have been processed by your code, and hopefully the hidden contents will have been listed on the screen.

Test Files

Here are 4 images that contain secret information that your program should be able to decode:


Note that the first three images look absolutely identical, but all 3 contain different messages. I find it pretty remarkable that the secret message is stored in the first bytes of the first row of the bmp file, and for the Woodstock images, this first row is white, or appears white, but the bits are there, impossible to detect!

Requirements

You must use functions!

Submission

Once your program extracts a string that looks like English text, and no strange characters, you're done! Nothing else to submit except your program! Submit your program (called hw6.asm) as follows

     submit hw6 hw6.asm

Debugging

Because the program assumes that you will provide a file on the command line (the name of the image file), if you want to debug your program with ddd, then you need to proceed as follows:

  • start ddd
   ddd hw6 &
  • once ddd is open, put a breakpoint at the beginning of your code section, when the file has been read
  • Then using the top menu, click on Program, then Run, then enter the name of the bmp file you want to work with in the argument box.
  • Click Run.

You are now debugging your program after it has loaded the bmp file in question.

Fun stuff

For your enjoyment, a movie...