File: ngorca.c

package info (click to toggle)
ngorca 1.0.2-2
  • links: PTS
  • area: main
  • in suites: squeeze, wheezy
  • size: 536 kB
  • ctags: 131
  • sloc: ansic: 1,232; sh: 994; makefile: 25
file content (253 lines) | stat: -rw-r--r-- 6,312 bytes parent folder | download
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253

/******************************************************************************
 *
 * ngorca - Password Recovery Tool for Oracle Hashes (7-11g Rel.2)
 *
 * Author:        Dennis Krzyzaniak
 * E-mail:        ebrosius@netgarage.org
 * WWW:           http://www.netgarage.org
 * Copyright (C): 2010 by Dennis Krzyzaniak
 *
 * This file is part of ngorca.
 *
 * ngorca 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 3 of the License, or
 * (at your option) any later version.
 *
 * ngorca 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 ngorca.  If not, see <http://www.gnu.org/licenses/>.
 *
 * In addition, as a special exception, the copyright holders give
 * permission to link the code of portions of this program with the
 * OpenSSL library under certain conditions as described in each
 * individual source file, and distribute linked combinations including
 * the two. You must obey the GNU General Public License in all
 * respects for all of the code used other than OpenSSL.  If you modify
 * file(s) with this exception, you may extend this exception to your
 * version of the file(s), but you are not obligated to do so. If you
 * do not wish to do so, delete this exception statement from your
 * version.  If you delete this exception statement from all source files
 * in the program, then also delete it here.
 *
 *****************************************************************************/


/* =========== INCLUDES ==================================================== */

#include "ngorca.h"

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include "log.h"

#include <openssl/des.h>
#include <openssl/sha.h>
#include <string.h>
#include <ctype.h>


/* =========== GLOBALS ===================================================== */

static
unsigned char initDeskey[8] = {0};

static
des_key_schedule schedule1;

static
const char* charset = NULL;

static
int charsetLength = 0;

static
baseBool_t initDone = BASE_FALSE;

static
int bitmask[19] = {0x1, 0x2, 0x4, 0x8, 0x10, 0x20, 0x40, 0x80, 0x100, 0x200,
   0x400, 0x800, 0x1000, 0x2000, 0x4000, 0x8000, 0x10000, 0x20000, 0x40000 };


/* =========== PRIVATE PROTOTYPES ========================================== */

/* =========== PUBLIC FUNCTIONS ============================================ */

baseBool_t
orc_init(
      const char* const cset
      )
{
   baseBool_t ret = BASE_TRUE;

   initDeskey[0] = 0x01;
   initDeskey[1] = 0x23;
   initDeskey[2] = 0x45;
   initDeskey[3] = 0x67;
   initDeskey[4] = 0x89;
   initDeskey[5] = 0xab;
   initDeskey[6] = 0xcd;
   initDeskey[7] = 0xef;

   charset = cset;
   charsetLength = strlen(charset);
   if (des_set_key(&initDeskey, schedule1)) {
      log_error(BASE_ERR_CRYPT, " error while setting DES key\n");
      ret = BASE_FALSE;
   }

   if (ret == BASE_TRUE) {
      initDone = BASE_TRUE;
   }
   return ret;
}


void
orc_getPassword(
      char* const passwd,
      unsigned long long int pwd
      )
{
   int i;
   int passLen = hsh_getPassLength();

   for (i=0; i<passLen; i++) {
      passwd[i] = charset[pwd % charsetLength];
      pwd /= charsetLength;
   }
}


void
orc_getCaseSensPassword(
      char* const passwd,
      int pwd
      )
{
   int i;
   int passLen = hsh_getPassLength();

   for (i=0; i<passLen; i++) {
      if (pwd & (bitmask[i])) {
         passwd[i] = tolower(passwd[i]);
      } else {
         passwd[i] = toupper(passwd[i]);
      }
   }
}


baseError_t
orc_generateDESHash(
      hash_t* const hash,
      char* password,
      unsigned char* const currentHash
      )
{
   baseError_t err = BASE_ERR_OK;
   unsigned char plaintextstring[128] = {0};
   unsigned char ciphertextstring[128] = {0};
   unsigned char salt_iv[8] = {0};
   unsigned char deskey[8] = {0};
   des_key_schedule schedule2;
   int passLen = hsh_getPassLength();
   int length = hash->unameLen + passLen;
   int i, j;

   if (initDone == BASE_FALSE) {
      log_errorMutexed(BASE_ERR_INIT, " error ngorca is not initialisated\n");
      return BASE_ERR_INIT;
   }

   for (j=0, i=1; j<hash->unameLen; j++, i+=2) {
      plaintextstring[i] = hash->username[j];
   }
   for (j=0, i; j<passLen; j++, i+=2) {
      plaintextstring[i] = password[j];
   }

   length += 8 - (length % 8);
   length *= 2;

   memset(salt_iv, 0, 8);
   des_ncbc_encrypt(plaintextstring, ciphertextstring, length, schedule1, &salt_iv, 1);
   for (i=0, j=8; i<8; i++, j--) {
      deskey[i] = ciphertextstring[length - j];
   }

   if (des_set_key(&deskey, schedule2)) {
      err = BASE_ERR_CRYPT;
      log_errorMutexed(err, " error while setting DES key\n");
   }

   if (err == BASE_ERR_OK) {
      memset(salt_iv, 0, 8);
      des_ncbc_encrypt(plaintextstring, ciphertextstring, length, schedule2, &salt_iv, 1);
      for (i=0; i<8; i++) {
         currentHash[i] = ciphertextstring[length - 8 + i];
      }
   }

   return err;
}


baseError_t
orc_generateSHAHash(
      char* const password,
      unsigned char* const currentHash
      )
{
   baseError_t err = BASE_ERR_OK;
   int len = hsh_getPassLength();
   len += SHA_SALT_LEN;

   if (SHA1((unsigned char*)password, len, currentHash) == NULL) {
      err = BASE_ERR_CRYPT;
      log_errorMutexed(err, " error while calculating sha1 hash\n");
   }
   return err;
}


baseBool_t
orc_compareHash(
      const unsigned char* const hash,
      const unsigned char* const currentHash,
      int size
      )
{
   int i;
   for(i=0; i<size; i++) {
      if(hash[i] != currentHash[i])
          return BASE_FALSE;
   }
   return BASE_TRUE;
}


void
orc_printResult(
      const hash_t* const hash,
      const char* const pwd
      )
{
   log_info(LOG_BASIC, " username: %s   password: %s\n", hash->username, pwd);
}

/* ========================== END OF FILE ================================== */

/*
 * vim settings, please do not remove!
 * vim:autoindent:
 * vim:ts=3:sw=3:sts=3:expandtab:cindent:tw=75:formatoptions=croql:
 * vim600:foldmethod=syntax:
 */