1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
|
/* Bkhive
Extract Syskey bootkey from the system hive file
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Copyright (C) 2004-2006 Nicola Cuomo <ncuomo@studenti.unina.it>
Improvments and some bugs fixes by Objectif Securite
<http://www.objectif-securite.ch>
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#if defined(__linux__)
#include <endian.h>
#elif defined(__FreeBSD__)
#include <machine/endian.h>
#endif
#include "hive.h"
#ifdef BYTE_ORDER
#if BYTE_ORDER == LITTLE_ENDIAN
#elif BYTE_ORDER == BIG_ENDIAN
#include <byteswap.h>
#else
#warning "Doesn't define a standard ENDIAN type"
#endif
#else
#warning "Doesn't define BYTE_ORDER"
#endif
int bkhive(unsigned char *system, unsigned char *pkey, char *error, int debug) {
/* hive */
struct hive h;
nk_hdr *n = NULL;
unsigned char *b;
int i, j, buf_len, control;
char *kn[] = { "JD", "Skew1", "GBG", "Data" };
char kv[9];
unsigned char *buf = NULL;
char *keyname;
char *root_key, *regselect, *reglsa;
// System\ControlSet001\Control\Lsa\ on some nt4 box
unsigned char key[0x10];
#if BYTE_ORDER == LITTLE_ENDIAN
int p[] = { 0xb, 0x6, 0x7, 0x1, 0x8, 0xa, 0xe, 0x0, 0x3, 0x5, 0x2, 0xf, 0xd, 0x9, 0xc, 0x4 };
#elif BYTE_ORDER == BIG_ENDIAN
int p[] = { 0x8, 0x5, 0x4, 0x2, 0xb, 0x9, 0xd, 0x3, 0x0, 0x6, 0x1, 0xc, 0xe, 0xa, 0xf, 0x7 };
#endif
/* Initialize hive access */
_InitHive( &h );
/* Open the system hive file */
if( _RegOpenHive( system, &h ) ) {
sprintf(error, "Error opening hive file %s\n", system );
return -1;
}
/* Get Root key name
$$$PROTO.HIV for 2k/XP,
CMI-CreateHive{xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx} for Vista */
if( _RegGetRootKey( &h, &root_key)) {
sprintf(error, "Error reading hive root key\n");
return -1;
}
if (debug)
printf("Root Key : %s\n", root_key);
regselect = (char *) malloc(strlen(root_key)+10);
reglsa = (char *) malloc(strlen(root_key)+33);
sprintf(regselect, "%s\\Select", root_key);
/* Find the Default ControlSet */
n = (nk_hdr*) malloc(sizeof(nk_hdr));
if (!_RegOpenKey(&h, regselect, &n))
if (!_RegQueryValue( &h, "Default", n, &buf, &buf_len)) {
if (buf_len == 4)
control = *(int*)(buf);
else
control = 1;
sprintf(reglsa,"%s\\ControlSet%03d\\Control\\Lsa\\", root_key, control);
if (debug)
printf("Default ControlSet: %03d\n", control);
}
else {
sprintf(error, "Error reading ControlSet: _RegQueryValue\n");
return -1;
}
else {
sprintf(error, "Error reading ControlSet: _RegOpenKey\n");
return -1;
}
/* foreach keys */
for( i = 0; i < 4; i++ ) {
keyname = (char *) malloc( strlen( reglsa ) + strlen( kn[i] ) + 1 );
sprintf( keyname, "%s%s", reglsa, kn[i] );
if (debug)
printf("********* %s *********\n", keyname);
/* Access lsa subkey */
if( _RegOpenKey( &h, keyname, &n ) ) {
_RegCloseHive( &h );
sprintf(error, "Error accessing key %s\nWrong/corrupted hive??\n", kn[i] );
return -1;
}
/* Access the data */
b = read_data( &h, n->classname_off + 0x1000 );
if (debug)
printf("n->classname_len = %d b = %x\n",
n->classname_len,
(unsigned int)(b-(h.base)));
// Quick hack for unicode -> ascii translation
for( j = 0; j < n->classname_len && j<9; j++)
kv[j] = b[j*2];
kv[8] = 0;
sscanf( kv, "%x", (unsigned int*)( &key[i*4] ) );
free( keyname );
}
_RegCloseHive( &h );
if (debug) {
printf("Bootkey unsorted: ");
for( i = 0; i < 0x10; i++ ) {
printf("%.2x", key[i]);
}
printf("\n");
}
for( i = 0; i < 0x10; i++ ) {
/* Permute the class name */
pkey[i] = key[p[i]];
}
free(n);
return 0;
}
|