-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnse_init.cc
653 lines (538 loc) · 17.8 KB
/
nse_init.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
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
#ifndef NOLUA
#include "nse_init.h"
#include "nse_nmaplib.h"
#include "nse_macros.h"
#include "nse_debug.h"
// 3rd Party libs
#include "nse_bitlib.h"
#include "nse_pcrelib.h"
#include "nmap.h"
#include "nmap_error.h"
#include "NmapOps.h"
#ifndef WIN32
#include "dirent.h"
#endif
#include "errno.h"
#include <algorithm>
int init_loadfile(lua_State* l, char* filename);
int init_loaddir(lua_State* l, char* dirname);
int init_loadcategories(lua_State* l, std::vector<std::string> categories, std::vector<std::string> &unusedTags);
int init_scandir(char* dirname, std::vector<std::string>& result, int files_or_dirs);
int init_fetchfile(char *result, size_t result_max_len, char* file);
int init_updatedb(lua_State* l);
int init_pick_default_categories(std::vector<std::string>& chosenScripts);
int check_extension(const char* ext, const char* path);
std::string get_filename(std::string str);
extern NmapOps o;
/* open the standard libs */
int init_lua(lua_State* l) {
const luaL_Reg lualibs[] = {
{"", luaopen_base},
{LUA_LOADLIBNAME, luaopen_package},
{LUA_TABLIBNAME, luaopen_table},
{LUA_IOLIBNAME, luaopen_io},
{LUA_OSLIBNAME, luaopen_os},
{LUA_STRLIBNAME, luaopen_string},
{LUA_MATHLIBNAME, luaopen_math},
{LUA_DBLIBNAME, luaopen_debug},
{NSE_BITLIBNAME, luaopen_bitlib},
{NSE_PCRELIBNAME, luaopen_pcrelib},
{NULL, NULL}
};
const luaL_Reg* lib;
for (lib = lualibs; lib->func; lib++) {
lua_pushcfunction(l, lib->func);
lua_pushstring(l, lib->name);
SCRIPT_ENGINE_LUA_TRY(lua_pcall(l, 1, 0, 0));
}
/* publish the nmap bindings to the script */
lua_newtable(l);
SCRIPT_ENGINE_TRY(set_nmaplib(l));
lua_setglobal(l, "nmap");
return SCRIPT_ENGINE_SUCCESS;
}
/* if there were no command line arguments specifying
* which scripts should be run, a default script set is
* chosen
* otherwise the script locators given at the command line
* (either directories with lua files or lua files) are
* loaded
* */
int init_rules(lua_State* l, std::vector<std::string> chosenScripts) {
char path[MAX_FILENAME_LEN];
int type;
char* c_iter;
std::vector<std::string> unusedTags;
lua_newtable(l);
lua_setglobal(l, PORTTESTS);
lua_newtable(l);
lua_setglobal(l, HOSTTESTS);
SCRIPT_ENGINE_TRY(init_pick_default_categories(chosenScripts));
// we try to interpret the choices as categories
SCRIPT_ENGINE_TRY(init_loadcategories(l, chosenScripts, unusedTags));
// if there's more, we try to interpret as directory or file
std::vector<std::string>::iterator iter;
bool extension_not_matched = false;
for(iter = unusedTags.begin(); iter != unusedTags.end(); iter++) {
c_iter = strdup((*iter).c_str());
type = init_fetchfile(path, sizeof(path), c_iter);
free(c_iter);
switch(type) {
case 0: // no such path
error("%s: No such category, file or directory: '%s'", SCRIPT_ENGINE, (*iter).c_str());
return SCRIPT_ENGINE_ERROR;
break;
case 1: // nmap_fetchfile returned a file
if(check_extension(SCRIPT_ENGINE_EXTENSION, path) != MATCH
&& extension_not_matched == false) {
error("%s: Warning: Loading '%s' - the recommended file extension is '.nse'.",
SCRIPT_ENGINE, path);
extension_not_matched = true;
}
SCRIPT_ENGINE_TRY(init_loadfile(l, path));
break;
case 2: // nmap_fetchfile returned a dir
SCRIPT_ENGINE_TRY(init_loaddir(l, path));
break;
default:
fatal("%s: In: %s:%i This should never happen.",
SCRIPT_ENGINE, __FILE__, __LINE__);
}
}
// Compute some stats
SCRIPT_ENGINE_DEBUGGING(
int rules_count;
lua_getglobal(l, HOSTTESTS);
rules_count = lua_objlen(l, -1);
lua_getglobal(l, PORTTESTS);
rules_count += lua_objlen(l, -1);
lua_pop(l, 2);
log_write(LOG_STDOUT, "%s: Initialized %d rules\n", SCRIPT_ENGINE, rules_count);
)
return SCRIPT_ENGINE_SUCCESS;
}
class ExtensionalCategory {
public:
std::string category;
int option;
ExtensionalCategory(std::string _category, int _option) {
category = _category;
option = _option;
}
};
int init_pick_default_categories(std::vector<std::string>& chosenScripts) {
std::vector<ExtensionalCategory> reserved_categories;
std::vector<ExtensionalCategory>::iterator rcat_iter;
reserved_categories.push_back(ExtensionalCategory(std::string("version"), o.scriptversion));
// if they tried to explicitely select an implicit category, we complain
if(o.script) {
for( rcat_iter = reserved_categories.begin();
rcat_iter != reserved_categories.end();
rcat_iter++) {
if( (*rcat_iter).option == 0
&& std::find(
chosenScripts.begin(),
chosenScripts.end(),
(*rcat_iter).category) != chosenScripts.end())
fatal("%s: specifying the \"%s\" category explicitely is not allowed.",
SCRIPT_ENGINE, (*rcat_iter).category.c_str());
}
}
// if no scripts were chosen, we use a default set
if( (o.script == 1
&& chosenScripts.size() == 0) )
{
chosenScripts.push_back(std::string("safe"));
chosenScripts.push_back(std::string("intrusive"));
// chosenScripts.push_back(std::string("vulnerabilities"));
}
// we append the implicitely selected categories
for( rcat_iter = reserved_categories.begin();
rcat_iter != reserved_categories.end();
rcat_iter++) {
if((*rcat_iter).option == 1)
chosenScripts.push_back((*rcat_iter).category);
}
return SCRIPT_ENGINE_SUCCESS;
}
int init_updatedb(lua_State* l) {
char path[MAX_FILENAME_LEN];
FILE* scriptdb;
std::vector<std::string> files;
std::vector<std::string>::iterator iter;
char* c_iter;
if(nmap_fetchfile(path, sizeof(path)-sizeof(SCRIPT_ENGINE_DATABASE)-1, SCRIPT_ENGINE_LUA_DIR) == 0) {
error("%s: Couldn't find '%s'\n.", SCRIPT_ENGINE, SCRIPT_ENGINE_LUA_DIR);
return SCRIPT_ENGINE_ERROR;
}
SCRIPT_ENGINE_TRY(init_scandir(path, files, FILES));
// we rely on the fact that nmap_fetchfile returned a string which leaves enough room
// to append the db filename (see call to nmap_fetchfile above)
strncat(path, SCRIPT_ENGINE_DATABASE, MAX_FILENAME_LEN-1);
scriptdb = fopen(path, "w");
if(scriptdb == NULL) {
error("%s: Could not open '%s' for writing: %s",
SCRIPT_ENGINE, path, strerror(errno));
return SCRIPT_ENGINE_ERROR;
}
SCRIPT_ENGINE_DEBUGGING(
log_write(LOG_STDOUT, "%s: Trying to add %d scripts to the database.\n",
SCRIPT_ENGINE, (int) files.size());
)
lua_newtable(l);
for(iter = files.begin(); iter != files.end(); iter++) {
c_iter = strdup((*iter).c_str());
if(check_extension(SCRIPT_ENGINE_EXTENSION, c_iter) == MATCH
&& strstr(c_iter, SCRIPT_ENGINE_DATABASE) == NULL) {
SCRIPT_ENGINE_LUA_TRY(luaL_loadfile(l, c_iter));
lua_pushvalue(l, -2);
lua_setfenv(l, -2);
SCRIPT_ENGINE_LUA_TRY(lua_pcall(l, 0, 0, 0));
lua_getfield(l, -1, "categories");
if(lua_isnil(l, -1)) {
error("%s: Script '%s' does not contain any category categories.", SCRIPT_ENGINE, c_iter);
return SCRIPT_ENGINE_ERROR;
}
lua_pushnil(l);
while(lua_next(l, -2) != 0) {
fprintf(scriptdb,
"Entry{ category = \"%s\", filename = \"%s\" }\n",
lua_tostring(l, -1),
get_filename(std::string(c_iter)).c_str());
lua_pop(l, 1);
}
lua_pop(l, 1); // pop the categories table
}
free(c_iter);
}
lua_pop(l, 1); // pop the closure
if(fclose(scriptdb) != 0) {
error("%s: Could not close %s: %s", SCRIPT_ENGINE, path, strerror(errno));
return SCRIPT_ENGINE_ERROR;
}
return SCRIPT_ENGINE_SUCCESS;
}
int init_loadcategories(lua_State* l, std::vector<std::string> categories, std::vector<std::string> &unusedTags) {
std::vector<std::string>::iterator iter;
std::vector<std::string> files;
std::string dbpath = std::string(SCRIPT_ENGINE_LUA_DIR) + std::string(SCRIPT_ENGINE_DATABASE);
char* c_dbpath_buf;
char c_dbpath[MAX_FILENAME_LEN];
const char* stub = "\
files = {}\n\
Entry = function(e)\n\
if (categories[e.category] ~= nil) then\n\
categories[e.category] = categories[e.category] + 1\n\
files[e.filename] = true\n\
end\n\
if (categories[\"all\"] ~= nil and e.category ~= \"version\") then\n\
categories[\"all\"] = categories[\"all\"] + 1\n\
files[e.filename] = true\n\
end\n\
end\n";
int categories_usage;
char* c_iter;
char script_path[MAX_FILENAME_LEN];
int type;
// closure
lua_newtable(l);
// categories table
lua_newtable(l);
for(iter = categories.begin(); iter != categories.end(); iter++) {
lua_pushinteger(l, 0);
lua_setfield(l, -2, (*iter).c_str());
}
lua_setfield(l, -2, "categories");
// we load the stub
// the strlen is safe in this case because the stub is a constant string
SCRIPT_ENGINE_LUA_TRY(luaL_loadbuffer(l, stub, strlen(stub), "Database Stub"));
lua_pushvalue(l, -2);
lua_setfenv(l, -2);
SCRIPT_ENGINE_LUA_TRY(lua_pcall(l, 0, 0, 0));
// if we can't find the database we try to create it
c_dbpath_buf = strdup(dbpath.c_str());
if(nmap_fetchfile(c_dbpath, sizeof(c_dbpath), c_dbpath_buf) == 0) {
SCRIPT_ENGINE_TRY(init_updatedb(l));
}
free(c_dbpath_buf);
SCRIPT_ENGINE_LUA_TRY(luaL_loadfile(l, c_dbpath));
lua_pushvalue(l, -2);
lua_setfenv(l, -2);
SCRIPT_ENGINE_LUA_TRY(lua_pcall(l, 0, 0, 0));
// retrieve the filenames produced by the stub
lua_getfield(l, -1, "files");
lua_pushnil(l);
while(lua_next(l, -2) != 0) {
if(lua_isstring(l, -2))
files.push_back(std::string(lua_tostring(l, -2)));
else {
error("%s: One of the filenames in '%s' is not a string?!",
SCRIPT_ENGINE,
SCRIPT_ENGINE_DATABASE);
return SCRIPT_ENGINE_ERROR;
}
lua_pop(l, 1);
}
lua_pop(l, 1);
// find out which categories didn't produce any filenames
lua_getfield(l, -1, "categories");
lua_pushnil(l);
while(lua_next(l, -2) != 0) {
categories_usage = lua_tointeger(l, -1);
if(categories_usage == 0) {
unusedTags.push_back(std::string(lua_tostring(l, -2)));
}
lua_pop(l, 1);
}
lua_pop(l, 2);
// load all the files we have found for the given categories
for(iter = files.begin(); iter != files.end(); iter++) {
c_iter = strdup((*iter).c_str());
type = init_fetchfile(script_path, sizeof(script_path), c_iter);
if(type != 1) {
error("%s: %s is not a file.", SCRIPT_ENGINE, c_iter);
return SCRIPT_ENGINE_ERROR;
}
free(c_iter);
SCRIPT_ENGINE_TRY(init_loadfile(l, script_path));
}
return SCRIPT_ENGINE_SUCCESS;
}
int init_fetchfile(char *path, size_t path_len, char* file) {
int type;
type = nmap_fetchfile(path, path_len, file);
// lets look in <nmap>/scripts too
if(type == 0) {
char* alt_path = strdup((std::string(SCRIPT_ENGINE_LUA_DIR) + std::string(file)).c_str());
type = nmap_fetchfile(path, path_len, alt_path);
free(alt_path);
}
return type;
}
std::string get_filename(std::string str) {
int pos = MAX( (int) str.rfind('\\'), (int) str.rfind('/'));
if(pos > -1)
return str.substr(pos + 1);
else
return str;
}
/* This is simply the most portable way to check
* if a file has a given extension.
* The portability comes at the price of reduced
* flexibility.
*/
int check_extension(const char* ext, const char* path) {
int pathlen = strlen(path);
int extlen = strlen(ext);
const char* offset;
if( extlen > pathlen
|| pathlen > MAX_FILENAME_LEN)
return -1;
offset = path + pathlen - extlen;
if(strcmp(offset, ext) != MATCH)
return 1;
else
return MATCH;
}
int init_loaddir(lua_State* l, char* dirname) {
std::vector<std::string> files;
char* c_iter;
SCRIPT_ENGINE_TRY(init_scandir(dirname, files, FILES));
std::vector<std::string>::iterator iter;
for(iter = files.begin(); iter != files.end(); iter++) {
c_iter = strdup((*iter).c_str());
SCRIPT_ENGINE_TRY(init_loadfile(l, c_iter));
free(c_iter);
}
return SCRIPT_ENGINE_SUCCESS;
}
#ifdef WIN32
int init_scandir(char* dirname, std::vector<std::string>& result, int files_or_dirs) {
HANDLE dir;
WIN32_FIND_DATA entry;
std::string path;
BOOL morefiles = FALSE;
dir = FindFirstFile((std::string(dirname) + "\\*").c_str(), &entry);
if (dir == INVALID_HANDLE_VALUE)
{
error("%s: No files in '%s\\*'", SCRIPT_ENGINE, dirname);
return SCRIPT_ENGINE_ERROR;
}
while(!(morefiles == FALSE && GetLastError() == ERROR_NO_MORE_FILES)) {
// if we are looking for files and this file doesn't end with .nse or
// is a directory, then we don't look further at it
if(files_or_dirs == FILES) {
if(!(
(check_extension(SCRIPT_ENGINE_EXTENSION, entry.cFileName) == MATCH)
&& !(entry.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
)) {
morefiles = FindNextFile(dir, &entry);
continue;
}
// if we are looking for dirs and this dir
// isn't a directory, then we don't look further at it
} else if(files_or_dirs == DIRS) {
if(!(
(entry.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
)) {
morefiles = FindNextFile(dir, &entry);
continue;
}
// they have passed an invalid value for files_or_dirs
} else {
fatal("%s: In: %s:%i This should never happen.",
SCRIPT_ENGINE, __FILE__, __LINE__);
}
// otherwise we add it to the results
// we assume that dirname ends with a directory separator of some kind
path = std::string(dirname) + std::string(entry.cFileName);
result.push_back(path);
morefiles = FindNextFile(dir, &entry);
}
return SCRIPT_ENGINE_SUCCESS;
}
#else
int init_scandir(char* dirname, std::vector<std::string>& result, int files_or_dirs) {
DIR* dir;
struct dirent* entry;
std::string path;
struct stat stat_entry;
dir = opendir(dirname);
if(dir == NULL) {
error("%s: Could not open directory '%s'.", SCRIPT_ENGINE, dirname);
return SCRIPT_ENGINE_ERROR;
}
// note that if there is a symlink in the dir, we have to rely on
// the .nse extension
// if they provide a symlink to a dir which ends with .nse, things
// break :/
while((entry = readdir(dir)) != NULL) {
path = std::string(dirname) + "/" + std::string(entry->d_name);
if(stat(path.c_str(), &stat_entry) != 0)
fatal("%s: In: %s:%i This should never happen.",
SCRIPT_ENGINE, __FILE__, __LINE__);
// if we are looking for files and this file doesn't end with .nse and
// isn't a file or a link, then we don't look further at it
if(files_or_dirs == FILES) {
if(!(
(check_extension(SCRIPT_ENGINE_EXTENSION, entry->d_name) == MATCH)
&& (S_ISREG(stat_entry.st_mode)
|| S_ISLNK(stat_entry.st_mode))
)) {
continue;
}
// if we are looking for dirs and this dir
// isn't a dir or a link, then we don't look further at it
} else if(files_or_dirs == DIRS) {
if(!(
(S_ISDIR(stat_entry.st_mode)
|| S_ISLNK(stat_entry.st_mode))
)) {
continue;
}
// they have passed an invalid value for files_or_dirs
} else {
fatal("%s: In: %s:%i This should never happen.",
SCRIPT_ENGINE, __FILE__, __LINE__);
}
// otherwise we add it to the results
result.push_back(path);
}
closedir(dir);
return SCRIPT_ENGINE_SUCCESS;
}
#endif
/* load an nmap-lua script
* create a new closure to store the script
* tell the closure where to find the standard
* lua libs and the nmap bindings
* we do some error checking to make sure that
* the script is well formed
* the script is then added to either the hostrules
* or the portrules
* */
int init_loadfile(lua_State* l, char* filename) {
int rule_count;
/* create a closure for encapsuled execution
* give the closure access to the global enviroment
*/
lua_newtable(l);
/* tell the script about its filename */
lua_pushstring(l, filename);
lua_setfield(l, -2, "filename");
/* we give the script access to the global name space
* */
lua_newtable(l);
lua_getglobal(l, "_G");
lua_setfield(l, -2, "__index");
lua_setmetatable(l, -2);
/* load the *.nse file, set the closure and execute (init) the test
* */
SCRIPT_ENGINE_LUA_TRY(luaL_loadfile(l, filename));
lua_pushvalue(l, -2);
lua_setfenv(l, -2);
SCRIPT_ENGINE_LUA_TRY(lua_pcall(l, 0, 0, 0));
/* look at the runlevel, if it is not set, we set it to 1.0
* */
lua_getfield(l, -1, RUNLEVEL);
if(lua_isnil(l, -1)) {
lua_pushnumber(l, 1.0);
lua_setfield(l, -3, RUNLEVEL);
}
lua_pop(l, 1);
/* finally we make sure nobody tampers with the global name space any more
* and prepare for runlevel sorting
* */
lua_getmetatable(l, -1);
std::string buf =
(std::string("err = \"Attempted to change the global '\" .. select(2, ...) .. \"' in ")
+ std::string(filename)
+ std::string(" - use nmap.registry if you really want to share data between scripts.\"")
+ std::string("error(err)"));
SCRIPT_ENGINE_LUA_TRY(luaL_loadbuffer(l, buf.c_str(), buf.length(), "Global Access"));
lua_setfield(l, -2, "__newindex");
lua_setmetatable(l, -2);
/* store the initialized test in either
* the hosttests or the porttests
* */
lua_getfield(l, -1, PORTRULE);
lua_getfield(l, -2, HOSTRULE);
/* if we are looking at a portrule then store it in the porttestsets table
* if it is a hostrule, then it goes into the hosttestsets table
* otherwise we fail
* if there is no action in the script we also fail
* */
if(lua_isnil(l, -2) == 0) {
lua_pop(l, 2);
lua_getglobal(l, PORTTESTS);
rule_count = lua_objlen(l, -1);
lua_pushvalue(l, -2);
lua_rawseti(l, -2, (rule_count + 1));
lua_pop(l, 1); // pop the porttests table
} else if(lua_isnil(l, -1) == 0) {
lua_pop(l, 2);
lua_getglobal(l, HOSTTESTS);
rule_count = lua_objlen(l, -1);
lua_pushvalue(l, -2);
lua_rawseti(l, -2, (rule_count + 1));
lua_pop(l, 1); // pop the hosttests table
} else {
error("%s: No rules in script '%s'.", SCRIPT_ENGINE, filename);
return SCRIPT_ENGINE_ERROR;
}
std::vector<std::string> required_fields;
required_fields.push_back(std::string(ACTION));
required_fields.push_back(std::string(DESCRIPTION));
std::vector<std::string>::iterator iter;
for(iter = required_fields.begin(); iter != required_fields.end(); iter++) {
lua_getfield(l, -1, (*iter).c_str());
if(lua_isnil(l, -1) == 1) {
error("%s: No '%s' field in script '%s'.", SCRIPT_ENGINE, (*iter).c_str(), filename);
return SCRIPT_ENGINE_ERROR;
}
lua_pop(l, 1); // pop the action
}
lua_pop(l, 1); // pop the closure
return SCRIPT_ENGINE_SUCCESS;
}
#endif /* NOLUA */