Click here to Skip to main content
15,879,050 members
Articles / Programming Languages / C++

How to read/dump/compare registry hives

Rate me:
Please Sign up or sign in to vote.
4.73/5 (29 votes)
11 Nov 2009CPOL2 min read 147.3K   2K   63   44
Malware can hide from win32 api but not from this tool since we are dumping reg hives directly

Motivation

Well recently I had nasty worm/rootkit problem and naturally I wanted to know what he changed in my system. So i started seeking for some tool to detect registry changes. some simple tool to dump complete registry content to text file before infection and after and by simple text diff i would be able to see the changes fast. I was not very lucky thou. Since all reg tools i found were using win32 api to get data which that clever rootkit redirected to himself and thus stayed hidden. Also as i later found out malware don't even need to be that clever to hide things in registry from standard api.

So now I had physical clean registry files from system restore point and dirty ones from my infected system. And I didn't stop poking in the hives until I did come up with simple tool to dump and compare their real contents in simple text format. I also needed full reg path at each entry so in case I use text diff on those dumps I see where the change happened.

dump.JPG

Hive format

NT/XP registry files (binary hives not textual reg files) are actually very simple. tey are just bunch of 4k blocks where each block contain variable sized blocks . Each of those starts with

usual 4b size and 2b type.

hive.JPG

And thats about it . thats ms registry hive format. Oh and I nearly forgot. First 1k of first block is hive header with no usefull info as far as i know

Now whats inside of those variable sized blocks

The simplest way to describe registry is to think of it as a file system where keys are directories and values are files. And as we allready know both directories and files have names except that each file can also contain data.

So there are 2 basic blocks one for keys and one for values. what's nice is that MS decided to use human readable 2 char strings in the block type field i mentioned earlier. so if you open hive in hex viewer jou can clearly see "nk" for key block and "vk" for value block.

Using the code

And here is actual code to dump registry hives. I used portable c code so it should be compilable on unix too without much change.

#include <string.h>
#include <stdio.h>
#include <stdlib.h>

struct offsets { 
    long  block_size;
    char  block_type[2]; // "lf" "il" "ri"
    short count;   
    long  first; 
    long  hash; 
};

struct key_block  { 
    long  block_size;
    char  block_type[2]; // "nk"
    char  dummya[18];
    int   subkey_count;
    char  dummyb[4];
    int   subkeys;
    char  dummyc[4];
    int   value_count;
    int   offsets;
    char  dummyd[28];
    short len;
    short du;
    char  name; 
};

struct value_block {
    long  block_size;
    char  block_type[2]; // "vk"
    short name_len;
    long  size;
    long  offset;
    long  value_type;
    short flags;
    short dummy;
    char  name; 
};

void walk ( char* path,   key_block* key ) {
    static  char* root=(char*)key-0x20, *full=path;
    
    // add current key name to printed path
    memcpy(path++,"/",2); memcpy(path,&key->name,key->len); path+=key->len;

    // print all contained values
    for(int o=0;o<key->value_count;o++){
        value_block* val = (value_block*)(((int*)(key->offsets+root+4))[o]+root); 
        
        // we skip nodes without values
        if(!val->offset)  continue;
        
        // data are usually in separate blocks without types
        char* data = root+val->offset+4;
        // but for small values MS added optimization where 
        // if bit 31 is set data are contained wihin the key itself to save space
        if(val->size&1<<31) {
              data = (char*)&val->offset;
        }
        // notice that we use memcopy for key/value names everywhere instead of strcat
        // reason is that malware/wiruses often write non nulterminated strings to
        // hide from win32 api
        *path='/'; if(!val->name_len) *path=' '; 
        memcpy(path+1,&val->name,val->name_len); path[val->name_len+1]=0;

        printf("%s [%d] = ",full,val->value_type);
        for(int i=0;i<(val->size&0xffff);i++) {
            // print types 1 and 7 as unicode strings  
            if(val->value_type==1||val->value_type==7) {
                if(data[i]) putchar(data[i]);
            // and rest dump as binary data         
            } else {
                printf("%02X",data[i]);
            }
        }
        printf("\n");
    }
    
    // for simplicity we can imagine keys as directories in filesystem and values
    // as files.
    // and since we already dumped values for this dir we will now iterate 
    // thru subdirectories in the same way

    offsets* item = (offsets*)(root+key->subkeys);
    for(int i=0;i<item->count;i++){
        // in case of too many subkeys this list contain just other lists
        offsets* subitem = (offsets*)((&item->first)[i]+root);

        // usual directory traversal  
        if(item->block_type[1]=='f'||item->block_type[1]=='h') {
            // for now we skip hash codes (used by regedit for faster search)
            walk(path,(key_block*)((&item->first)[i*2]+root));
        } else for(int j=0;j<subitem->count;j++) {
            // also ms had chosen to skip hashes altogether in this case 
            walk(path,(key_block*)((&subitem->first)[item->block_type[1]=='i'?j*2:j]+root));
        }
    }
}

int main(int argc, char** argv) {
    char path[0x1000]={0}, *data; FILE* f; int size;  
    
    if(argc<2||!(f=fopen(argv[1],"rb"))) return printf("hive path err");
    
    fseek(f,0,SEEK_END); 
    if(!(size=ftell(f))) return printf("empty file");
    
    rewind(f); data=(char*)malloc(size); 
    fread(data,size,1,f); 
    fclose(f);

    // we just skip 1k header and start walking root key tree
    walk(path,(key_block*)(data+0x1020));
    free(data);
    return 0;
}

Points of Interest

Remember it will dump values that you normally don't even have access to so be careful.

It's prerfect to just dump the hives before and after software installation and just compare changes with text diff (for example commandline version from UnixUtils is great) .

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Slovakia Slovakia
Past Projects:
[Siemens.sk]Mobile network software: HLR-Inovation for telering.at (Corba)
Medical software: CorRea module for CT scanner
[cauldron.sk]Computer Games:XboxLive/net code for Conan, Knights of the temple II, GeneTroopers, CivilWar, Soldier of fortune II
[www.elveon.com]Computer Games:XboxLive/net code for Elveon game based on Unreal Engine 3
ESET Reasearch.
Looking for job

Comments and Discussions

 
SuggestionACL-Permissions Pin
fr0937a27-Dec-12 3:50
fr0937a27-Dec-12 3:50 
Bugbif bug Pin
nissan123418-Nov-12 17:27
nissan123418-Nov-12 17:27 
QuestionLadislav Nevery's regdmp Pin
Member 88837943-Oct-12 4:24
Member 88837943-Oct-12 4:24 
QuestionData Execution Prevention Pin
rec-on-tcp28-Nov-11 12:11
rec-on-tcp28-Nov-11 12:11 
GeneralMy vote of 3 Pin
zinajoonjooni22-Nov-11 20:57
zinajoonjooni22-Nov-11 20:57 
Questionrun this code on linux Pin
mohsen.secure3-Sep-11 9:06
mohsen.secure3-Sep-11 9:06 
QuestionWindows 7 Support Pin
Silvos122-Jul-11 9:05
Silvos122-Jul-11 9:05 
AnswerRe: Windows 7 Support [modified] Pin
Rui Morais6-Aug-11 10:31
Rui Morais6-Aug-11 10:31 
QuestionAnother possible folder to get registry from and how to save? Pin
J Corliss5-Apr-10 2:30
J Corliss5-Apr-10 2:30 
AnswerRe: Another possible folder to get registry from and how to save? Pin
Rui Morais13-Apr-10 5:44
Rui Morais13-Apr-10 5:44 
Generalbugfix Pin
Jakub Daubner8-Mar-10 2:54
Jakub Daubner8-Mar-10 2:54 
GeneralRe: bugfix Pin
Spockester10-Mar-10 16:32
Spockester10-Mar-10 16:32 
GeneralRe: bugfix Pin
Spockester10-Mar-10 16:33
Spockester10-Mar-10 16:33 
GeneralBuggy Pin
Spockester2-Mar-10 2:57
Spockester2-Mar-10 2:57 
GeneralA big thanks!! Pin
Bill Gord16-Nov-09 12:00
professionalBill Gord16-Nov-09 12:00 
GeneralSomething is wrong with the download link Pin
Avis p11-Nov-09 2:25
Avis p11-Nov-09 2:25 
GeneralRe: Something is wrong with the download link Pin
Ladislav Nevery11-Nov-09 3:40
Ladislav Nevery11-Nov-09 3:40 
GeneralThe format is not as simple, as you want [modified] Pin
bofur9-Nov-09 1:43
bofur9-Nov-09 1:43 
GeneralRe: The format is not as simple, as you want Pin
Ladislav Nevery10-Nov-09 7:33
Ladislav Nevery10-Nov-09 7:33 
GeneralExcellent job... Pin
Naren Neelamegam23-Jul-09 20:36
Naren Neelamegam23-Jul-09 20:36 
QuestionHow did you find out the hive format? Pin
Chaz Zeromus2-Jun-09 9:29
Chaz Zeromus2-Jun-09 9:29 
Questionexecution error Pin
Rodaro Angelo5-May-09 5:24
Rodaro Angelo5-May-09 5:24 
AnswerRe: execution error Pin
Ladislav Nevery10-Nov-09 7:47
Ladislav Nevery10-Nov-09 7:47 
Questionnoob here... parameter syntax? Pin
vigrond12-Dec-08 17:30
vigrond12-Dec-08 17:30 
AnswerRe: noob here... parameter syntax? Pin
vigrond12-Dec-08 17:44
vigrond12-Dec-08 17:44 

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

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