Click here to Skip to main content
Licence 
First Posted 27 Nov 2003
Views 58,638
Bookmarked 33 times

Hide a file in a BMP file (Plus).

By | 27 Nov 2003 | Article
Hide a file in a BMP file: extended from the author Ahmed Osama's article.

Sample Image - HideIt2.jpg

Introduction

After I read the article 'Hiding a text file in a BMP file', I found it very funny, and maybe useful. So I decided to extend it to fit in with any file, any password, and become easy to use.

Background

You can find its principle here: Hiding a text file in a BMP file. Very thanks to Ahmed Osama's idea and good work.

Class Structure

class CBmpHermitCrab
{
 ...
public:
 bool Hermit(const char* pszDestFileName, 
  const char* pszSrcFileName,
  const char* pszPassword=NULL, 
  const char* pszResultFile=NULL); 
 bool IsHermitCrabBMPFile(const char* pszFileName);
 bool RecoverCrabFile(const char* pszFileName, 
  const char* pszPassword=NULL, const char* pszPath=NULL);
};

It provides three methods to implement the following tasks:

  1. Hermit(). Hides a file in a BMP file.

    The main code:

    ...
     nIndex=0;
      for(int i=0;i<(iBinaryLen/8); i++){
         temp= m_binaryMap[(unsigned char) strBufferAll[i]];
         srcBinary[nIndex] = temp[0];
         srcBinary[nIndex+1] =temp[1];
         srcBinary[nIndex+2] =temp[2];
         srcBinary[nIndex+3] =temp[3];
         srcBinary[nIndex+4] =temp[4];
         srcBinary[nIndex+5] =temp[5];
         srcBinary[nIndex+6] =temp[6];
         srcBinary[nIndex+7] =temp[7];
         nIndex=nIndex+8; 
      }
    
      int mask=254; 
      for (i=0 ; i<iBinaryLen ; i++){
          bmpBuffer[i+55]=bmpBuffer[i+55] & mask;
          if (srcBinary[i]=='1')  
            bmpBuffer[i+55]=bmpBuffer[i+55]+1;
      }
     ...

    Through our binary table srcBinary and the correct index, we can express a char by using the original pixel color value micro-changed.

  2. RecoverCrabFile(). Recovers hidden file from a HermitCrab ;) BMP file.

    The key code:

    ...
     for(j=55+8*nHeadSize; j < 55+8*nHeadSize 
       +pHermitCrabHead->bPasswordLen*8+
       pHermitCrabHead->bFileNameLen*8;j++){
          recBin[j]= 
           (unsigned char) ((unsigned char)buffer[j] & 1);
     }
     CString strTemp;
     for(j=55+8*nHeadSize; j < 
       55+8*nHeadSize+pHermitCrabHead->bPasswordLen*8+
       pHermitCrabHead->bFileNameLen*8;j=j+8){
          temp=128*recBin[j]+64*recBin[j+1]+32*recBin[j+2]+
              16*recBin[j+3]+8*recBin[j+4]+4*recBin[j+5]+
              2*recBin[j+6]+1*recBin[j+7];
        strTemp+=temp;
     } 
    ...
  3. IsHermitCrabBMPFile(). Like method 2, but it just recovers the fist 8 bytes, and whether the first two bytes: 'C' and 'H'.

Using the code

  1. Include the BmpHermitCrab.h file.
  2. Generate a CBmpHermitCrab instance.
  3. With the instance, use the Hermit() method to hide a file in a BMP file with optional password and use the RecoverCrabFile() method to recover a file from a 'HermitCrab' BMP file. You can check the BMP file format by IsHermitCrabBMPFile() method.

Hope you enjoy the program!

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Neil Xu

Web Developer

China China

Member

I'm programmer,and love it.


Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralIt does not check if the to hide file is too large! Pinmemberrootdial22:39 18 Dec '08  
GeneralHi Pinmembertnla4:07 26 Nov '08  
GeneralHi Pinmembertnla9:25 25 Nov '08  
Generalhmm.... PinmemberAuroraX19:34 3 Apr '05  
GeneralHmm so so PinsussAnonymous15:19 23 Apr '04  
GeneralRe: Hmm so so Pinmemberstrych96:44 4 May '05  
QuestionCan you include *.exe file in the bitmap PinmemberMurad4:44 2 Dec '03  
AnswerRe: Can you include *.exe file in the bitmap Pinmemberchopeen5:10 2 Dec '03  
GeneralRe: Can you include *.exe file in the bitmap Pinmemberlallous21:06 2 Dec '03  
GeneralInsecure PinmemberDominik Reichl6:48 28 Nov '03  
Generalnew challenge PinmemberTeaShirt5:05 28 Nov '03  
GeneralGood, but you should have put yr code inside the , PinmemberZhefu Zhang3:27 28 Nov '03  
Generalthx :) PinmemberAdore C++2:41 28 Nov '03  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 28 Nov 2003
Article Copyright 2003 by Neil Xu
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid