forked from nmap/nmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnse_ssl_cert.cc
532 lines (463 loc) · 19.8 KB
/
nse_ssl_cert.cc
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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
/***************************************************************************
* nse_ssl_cert.cc -- NSE userdatum representing an SSL certificate. *
* *
***********************IMPORTANT NMAP LICENSE TERMS************************
* *
* The Nmap Security Scanner is (C) 1996-2013 Insecure.Com LLC. Nmap is *
* also a registered trademark of Insecure.Com LLC. This program is free *
* software; you may redistribute and/or modify it under the terms of the *
* GNU General Public License as published by the Free Software *
* Foundation; Version 2 ("GPL"), BUT ONLY WITH ALL OF THE CLARIFICATIONS *
* AND EXCEPTIONS DESCRIBED HEREIN. This guarantees your right to use, *
* modify, and redistribute this software under certain conditions. If *
* you wish to embed Nmap technology into proprietary software, we sell *
* alternative licenses (contact sales@nmap.com). Dozens of software *
* vendors already license Nmap technology such as host discovery, port *
* scanning, OS detection, version detection, and the Nmap Scripting *
* Engine. *
* *
* Note that the GPL places important restrictions on "derivative works", *
* yet it does not provide a detailed definition of that term. To avoid *
* misunderstandings, we interpret that term as broadly as copyright law *
* allows. For example, we consider an application to constitute a *
* derivative work for the purpose of this license if it does any of the *
* following with any software or content covered by this license *
* ("Covered Software"): *
* *
* o Integrates source code from Covered Software. *
* *
* o Reads or includes copyrighted data files, such as Nmap's nmap-os-db *
* or nmap-service-probes. *
* *
* o Is designed specifically to execute Covered Software and parse the *
* results (as opposed to typical shell or execution-menu apps, which will *
* execute anything you tell them to). *
* *
* o Includes Covered Software in a proprietary executable installer. The *
* installers produced by InstallShield are an example of this. Including *
* Nmap with other software in compressed or archival form does not *
* trigger this provision, provided appropriate open source decompression *
* or de-archiving software is widely available for no charge. For the *
* purposes of this license, an installer is considered to include Covered *
* Software even if it actually retrieves a copy of Covered Software from *
* another source during runtime (such as by downloading it from the *
* Internet). *
* *
* o Links (statically or dynamically) to a library which does any of the *
* above. *
* *
* o Executes a helper program, module, or script to do any of the above. *
* *
* This list is not exclusive, but is meant to clarify our interpretation *
* of derived works with some common examples. Other people may interpret *
* the plain GPL differently, so we consider this a special exception to *
* the GPL that we apply to Covered Software. Works which meet any of *
* these conditions must conform to all of the terms of this license, *
* particularly including the GPL Section 3 requirements of providing *
* source code and allowing free redistribution of the work as a whole. *
* *
* As another special exception to the GPL terms, Insecure.Com LLC grants *
* permission to link the code of this program with any version of the *
* OpenSSL library which is distributed under a license identical to that *
* listed in the included docs/licenses/OpenSSL.txt file, and distribute *
* linked combinations including the two. *
* *
* Any redistribution of Covered Software, including any derived works, *
* must obey and carry forward all of the terms of this license, including *
* obeying all GPL rules and restrictions. For example, source code of *
* the whole work must be provided and free redistribution must be *
* allowed. All GPL references to "this License", are to be treated as *
* including the terms and conditions of this license text as well. *
* *
* Because this license imposes special exceptions to the GPL, Covered *
* Work may not be combined (even as part of a larger work) with plain GPL *
* software. The terms, conditions, and exceptions of this license must *
* be included as well. This license is incompatible with some other open *
* source licenses as well. In some cases we can relicense portions of *
* Nmap or grant special permissions to use it in other open source *
* software. Please contact fyodor@nmap.org with any such requests. *
* Similarly, we don't incorporate incompatible open source software into *
* Covered Software without special permission from the copyright holders. *
* *
* If you have any questions about the licensing restrictions on using *
* Nmap in other works, are happy to help. As mentioned above, we also *
* offer alternative license to integrate Nmap into proprietary *
* applications and appliances. These contracts have been sold to dozens *
* of software vendors, and generally include a perpetual license as well *
* as providing for priority support and updates. They also fund the *
* continued development of Nmap. Please email sales@nmap.com for further *
* information. *
* *
* If you have received a written license agreement or contract for *
* Covered Software stating terms other than these, you may choose to use *
* and redistribute Covered Software under those terms instead of these. *
* *
* Source is provided to this software because we believe users have a *
* right to know exactly what a program is going to do before they run it. *
* This also allows you to audit the software for security holes (none *
* have been found so far). *
* *
* Source code also allows you to port Nmap to new platforms, fix bugs, *
* and add new features. You are highly encouraged to send your changes *
* to the dev@nmap.org mailing list for possible incorporation into the *
* main distribution. By sending these changes to Fyodor or one of the *
* Insecure.Org development mailing lists, or checking them into the Nmap *
* source code repository, it is understood (unless you specify otherwise) *
* that you are offering the Nmap Project (Insecure.Com LLC) the *
* unlimited, non-exclusive right to reuse, modify, and relicense the *
* code. Nmap will always be available Open Source, but this is important *
* because the inability to relicense code has caused devastating problems *
* for other Free Software projects (such as KDE and NASM). We also *
* occasionally relicense the code to third parties as discussed above. *
* If you wish to specify special license conditions of your *
* contributions, just say so when you send them. *
* *
* 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 Nmap *
* license file for more details (it's in a COPYING file included with *
* Nmap, and also available from https://svn.nmap.org/nmap/COPYING *
* *
***************************************************************************/
/* $Id:$ */
#include "nbase.h"
#include <assert.h>
#include <ctype.h>
#include <errno.h>
#include <string.h>
#include <openssl/bio.h>
#include <openssl/pem.h>
#include <openssl/ssl.h>
#include <openssl/x509.h>
extern "C"
{
#include "lua.h"
#include "lauxlib.h"
}
#include "nse_nsock.h"
struct cert_userdata {
X509 *cert;
int attributes_table;
};
SSL *nse_nsock_get_ssl(lua_State *L);
/* This is a reference to a table that will be used as the metatable for
certificate attribute tables. It has an __index entry that points to the
global table of certificate functions like digest. */
static int ssl_cert_methods_index_ref = LUA_NOREF;
/* Calculate the digest of the certificate using the given algorithm. */
static int ssl_cert_digest(lua_State *L)
{
struct cert_userdata *udata;
const char *algorithm;
unsigned char buf[256];
unsigned int n;
const EVP_MD *md;
udata = (struct cert_userdata *) luaL_checkudata(L, 1, "SSL_CERT");
algorithm = luaL_checkstring(L, 2);
md = EVP_get_digestbyname(algorithm);
if (md == NULL)
return 0;
n = sizeof(buf);
if (X509_digest(udata->cert, md, buf, &n) != 1)
return 0;
lua_pushlstring(L, (char *) buf, n);
return 1;
}
/* These are the contents of the table that is pointed to by the table that has
ssl_cert_methods_index_ref as a reference. */
static struct luaL_Reg ssl_cert_methods[] = {
{ "digest", ssl_cert_digest },
{ NULL, NULL },
};
/* This is a helper function for x509_name_to_table. It takes the ASN1_OBJECT
passed as an argument, turns it into a table key, and pushes it on the stack.
The key is a string (like "commonName") if the object has an NID known by
OBJ_obj2nid; otherwise it is an array containing the OID components as
strings: { "2", "5", "4", "3" }. */
static void obj_to_key(lua_State *L, const ASN1_OBJECT *obj)
{
int nid;
nid = OBJ_obj2nid(obj);
if (nid == NID_undef) {
size_t size = 1;
char *buf = (char *) lua_newuserdata(L, size);
const char *p, *q;
int i, n;
while ((n = OBJ_obj2txt(buf, size, obj, 1)) < 0 || (unsigned) n >= size) {
size = size * 2;
buf = (char *) lua_newuserdata(L, size);
memcpy(lua_touserdata(L, -1), lua_touserdata(L, -2), lua_rawlen(L, -2));
lua_replace(L, -2);
}
lua_newtable(L);
i = 1;
p = buf;
q = p;
while (*q != '\0') {
q = strchr(p, '.');
if (q == NULL)
q = strchr(p, '\0');
lua_pushlstring(L, p, q - p);
lua_rawseti(L, -2, i++);
p = q + 1;
}
lua_replace(L, -2); /* replace userdata with table */
} else {
lua_pushstring(L, OBJ_nid2ln(nid));
}
}
/* This is a helper function for l_get_ssl_certificate. It builds a table from
the given X509_NAME, using keys returned from obj_to_key as keys. The result
is pushed on the stack. */
static void x509_name_to_table(lua_State *L, X509_NAME *name)
{
int i;
lua_newtable(L);
for (i = 0; i < X509_NAME_entry_count(name); i++) {
X509_NAME_ENTRY *entry;
const ASN1_OBJECT *obj;
const ASN1_STRING *value;
entry = X509_NAME_get_entry(name, i);
obj = X509_NAME_ENTRY_get_object(entry);
value = X509_NAME_ENTRY_get_data(entry);
obj_to_key(L, obj);
lua_pushlstring(L, (const char *) value->data, value->length);
lua_settable(L, -3);
}
}
/* Parse as a decimal integer the len characters starting at s. This function
can only process positive numbers; if the return value is negative then a
parsing error occurred. */
static int parse_int(const unsigned char *s, size_t len)
{
char buf[32];
char *tail;
long v;
if (len == 0)
return -1;
if (!isdigit((int) (unsigned char) s[0]))
return -1;
if (len > sizeof(buf) - 1)
return -1;
memcpy(buf, s, len);
buf[len] = '\0';
errno = 0;
v = strtol(buf, &tail, 10);
if (errno != 0 || *tail != '\0')
return -1;
if ((int) v != v || v < 0)
return -1;
return (int) v;
}
/* This is a helper function for asn1_time_to_obj. It parses a textual ASN1_TIME
value and stores the time in the given struct tm. It returns 0 on success and
-1 on a parse error. */
static int time_to_tm(const ASN1_TIME *t, struct tm *result)
{
const unsigned char *p;
p = t->data;
if (t->length == 13 && t->data[t->length - 1] == 'Z') {
/* yymmddhhmmssZ */
int year;
year = parse_int(t->data, 2);
if (year < 0)
return -1;
/* "In coming up with the worlds least efficient machine-readable time
encoding format, the ISO nevertheless decided to forgo the encoding of
centuries, a problem which has been kludged around by redefining the time
as UTCTime if the date is 2049 or ealier, and GeneralizedTime if the date
is 2050 or later."
http://www.cs.auckland.ac.nz/~pgut001/pubs/x509guide.txt */
if (year < 50)
result->tm_year = 2000 + year;
else
result->tm_year = 1900 + year;
p = t->data + 2;
} else if (t->length == 14) {
/* yyyymmddhhmmss */
result->tm_year = parse_int(t->data, 4);
if (result->tm_year < 0)
return -1;
p = t->data + 4;
} else {
return -1;
}
result->tm_mon = parse_int(p, 2);
/* struct tm uses zero-indexed months. */
if (result->tm_mon == 0)
return -1;
result->tm_mon--;
result->tm_mday = parse_int(p + 2, 2);
result->tm_hour = parse_int(p + 4, 2);
result->tm_min = parse_int(p + 6, 2);
result->tm_sec = parse_int(p + 8, 2);
if (result->tm_mon < 0 || result->tm_mday < 0 || result->tm_hour < 0
|| result->tm_min < 0 || result->tm_sec < 0) {
return -1;
}
return 0;
}
/* This is a helper function for asn1_time_to_obj. It converts a struct tm into
a date table as returned by the Lua date os.date("!*t"), with the exception
that the wday and yday fields are not present. */
static void tm_to_table(lua_State *L, const struct tm *tm)
{
lua_newtable(L);
lua_pushnumber(L, tm->tm_year);
lua_setfield(L, -2, "year");
/* Lua uses one-indexed months. */
lua_pushnumber(L, tm->tm_mon + 1);
lua_setfield(L, -2, "month");
lua_pushnumber(L, tm->tm_mday);
lua_setfield(L, -2, "day");
lua_pushnumber(L, tm->tm_hour);
lua_setfield(L, -2, "hour");
lua_pushnumber(L, tm->tm_min);
lua_setfield(L, -2, "min");
lua_pushnumber(L, tm->tm_sec);
lua_setfield(L, -2, "sec");
/* Omit tm_wday and tm_yday. */
}
/* This is a helper function for x509_validity_to_table. It takes teh given
ASN1_TIME and covnerts it to a value on the stack, which is one of
nil, if the time is NULL;
a date table, if the date can be parsed; and
a string of the raw bytes, if the date cannot be parsed. */
static void asn1_time_to_obj(lua_State *L, const ASN1_TIME *s)
{
struct tm tm;
if (s == NULL) {
lua_pushnil(L);
} else if (time_to_tm(s, &tm) == 0) {
tm_to_table(L, &tm);
} else {
lua_pushlstring(L, (const char *) s->data, s->length);
}
}
/* This is a helper functino for x509_validity_to_table. It builds a table with
the two members "notBefore" and "notAfter", whose values are what is returned
from asn1_time_to_obj. */
static void x509_validity_to_table(lua_State *L, const X509 *cert)
{
lua_newtable(L);
asn1_time_to_obj(L, X509_get_notBefore(cert));
lua_setfield(L, -2, "notBefore");
asn1_time_to_obj(L, X509_get_notAfter(cert));
lua_setfield(L, -2, "notAfter");
}
/* This is a helper function for l_get_ssl_certificate. It converts the
certificate into a PEM-encoded string on the stack. */
static void cert_pem_to_string(lua_State *L, X509 *cert)
{
BIO *bio;
char *buf;
long size;
bio = BIO_new(BIO_s_mem());
assert(bio != NULL);
assert(PEM_write_bio_X509(bio, cert));
size = BIO_get_mem_data(bio, &buf);
lua_pushlstring(L, buf, size);
BIO_vfree(bio);
}
/* This is a helper function for l_get_ssl_certificate. It converts the
public-key type to a string. */
static const char *pkey_type_to_string(int type)
{
switch (type) {
case EVP_PKEY_RSA:
return "rsa";
case EVP_PKEY_DSA:
return "dsa";
case EVP_PKEY_DH:
return "dh";
#ifdef EVP_PKEY_EC
case EVP_PKEY_EC:
return "ec";
#endif
default:
return "unknown";
}
}
int l_get_ssl_certificate(lua_State *L)
{
SSL *ssl;
struct cert_userdata *udata;
X509 *cert;
X509_NAME *subject, *issuer;
EVP_PKEY *pubkey;
ssl = nse_nsock_get_ssl(L);
cert = SSL_get_peer_certificate(ssl);
if (cert == NULL) {
lua_pushnil(L);
return 1;
}
udata = (struct cert_userdata *) lua_newuserdata(L, sizeof(*udata));
udata->cert = cert;
lua_newtable(L);
subject = X509_get_subject_name(cert);
if (subject != NULL) {
x509_name_to_table(L, subject);
lua_setfield(L, -2, "subject");
}
issuer = X509_get_issuer_name(cert);
if (issuer != NULL) {
x509_name_to_table(L, issuer);
lua_setfield(L, -2, "issuer");
}
x509_validity_to_table(L, cert);
lua_setfield(L, -2, "validity");
cert_pem_to_string(L, cert);
lua_setfield(L, -2, "pem");
pubkey = X509_get_pubkey(cert);
lua_newtable(L);
lua_pushstring(L, pkey_type_to_string(pubkey->type));
lua_setfield(L, -2, "type");
lua_pushnumber(L, EVP_PKEY_bits(pubkey));
lua_setfield(L, -2, "bits");
lua_setfield(L, -2, "pubkey");
EVP_PKEY_free(pubkey);
/* At this point the certificate-specific table of attributes is at the top of
the stack. We give it a metatable with an __index entry that points into
the global shared table of certificate functions. */
lua_rawgeti(L, LUA_REGISTRYINDEX, ssl_cert_methods_index_ref);
lua_setmetatable(L, -2);
udata->attributes_table = luaL_ref(L, LUA_REGISTRYINDEX);
luaL_getmetatable(L, "SSL_CERT");
lua_setmetatable(L, -2);
return 1;
}
static int l_ssl_cert_index(lua_State *L)
{
struct cert_userdata *udata;
udata = (struct cert_userdata *) luaL_checkudata(L, 1, "SSL_CERT");
lua_rawgeti(L, LUA_REGISTRYINDEX, udata->attributes_table);
/* The key. */
lua_pushvalue(L, 2);
/* Look it up in the table of attributes. */
lua_gettable(L, -2);
return 1;
}
static int l_ssl_cert_gc(lua_State *L)
{
struct cert_userdata *udata;
udata = (struct cert_userdata *) luaL_checkudata(L, 1, "SSL_CERT");
X509_free(udata->cert);
luaL_unref(L, LUA_REGISTRYINDEX, udata->attributes_table);
return 0;
}
void nse_nsock_init_ssl_cert(lua_State *L)
{
luaL_newmetatable(L, "SSL_CERT");
lua_pushcclosure(L, l_ssl_cert_index, 0);
lua_setfield(L, -2, "__index");
lua_pushcclosure(L, l_ssl_cert_gc, 0);
lua_setfield(L, -2, "__gc");
/* Create a table with an __index entry that will be used as a metatable for
per-certificate attribute tables. This gives the tables access to the
global shared table of certificate functions. */
lua_newtable(L);
lua_newtable(L);
luaL_setfuncs(L, ssl_cert_methods, 0);
lua_setfield(L, -2, "__index");
ssl_cert_methods_index_ref = luaL_ref(L, LUA_REGISTRYINDEX);
}