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
|
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <getopt.h>
#include <arpa/inet.h>
#ifdef __STDC__
#include <stdarg.h>
#else
#include <varargs.h>
#endif
#include "sighandler.h"
#include "parse_ip.h"
#include "util.h"
extern char *optarg;
extern int optind;
extern int errno;
char *outputfile = NULL; /* where to put output */
char *userfile = NULL; /* where to get usernames */
char *passfile = NULL; /* where to get passwords */
FILE *userfd = NULL; /* userlist file stream */
FILE *passfd = NULL; /* passlist file stream */
struct vuln_res {
u_long vr_vulid;
char **vr_output;
struct vuln_res *vr_next;
};
int nas_step (unsigned long xip);
char *StrnCpy(char *dest,const char *src,int n);
void natprintf(char *format, ...);
struct vuln_res *module_16000();
extern int DEBUGLEVEL;
int main(argc, argv)
int argc;
char **argv;
{
struct vuln_res *vr;
int opt;
char *progname;
struct ipstr *hosts;
progname = strdup(argv[0]);
while ((opt = getopt(argc, argv, "d:o:u:p:")) != -1)
switch(opt) {
case 'o': outputfile = strdup(optarg);
break;
case 'u': userfile = strdup(optarg);
break;
case 'p': passfile = strdup(optarg);
break;
case 'd': DEBUGLEVEL = atoi(strdup(optarg));
break;
default : exit(-1);
}
argc -= optind;
argv += optind;
if (argc < 1) {
fprintf(stderr,"usage: %s [-o filename] [-u userlist] [-p passlist] [-d debuglevel]"\
" <address>\n", progname);
exit(1);
}
setup_logging(progname, True);
/* Set up signals */
set_signal(SIGSEGV, sighandler);
set_signal(SIGTERM, sighandler);
set_signal(SIGINT, sighandler);
set_signal(SIGHUP, SIG_IGN);
set_signal(SIGPIPE, sighandler); /* Network errors are treated by the app */
if (userfile) {
if ((userfd = fopen(userfile, "r")))
natprintf("[*]--- Reading usernames from %s\n", userfile);
else {
natprintf("[*]--- Error: cannot open %s\n", userfile);
exit(-1);
}
}
if (passfile) {
if ((passfd = fopen(passfile, "r")))
natprintf("[*]--- Reading passwords from %s\n", passfile);
else {
natprintf("[*]--- Error: cannot open %s\n", passfile);
exit(-1);
}
}
if ((passfile && !userfile) || (userfile && !passfile)) {
natprintf("[*]--- Please specify both userlist and password list\n");
exit(-1);
}
for (hosts=(struct ipstr *)parse_ip(argv[0]); hosts; hosts=hosts->next) {
natprintf("\n[*]--- Checking host: %s\n", hosts->name);
if (userfd)
rewind(userfd);
if (passfd)
rewind(passfd);
/*
* Run the checks
*/
if ((vr=module_16000(inet_addr(hosts->name)))==NULL) {
natprintf("[*]--- Was not able to obtain any information from "\
"remote server\n");
}
}
if (userfd)
fclose(userfd);
if (passfd)
fclose(passfd);
#ifndef VERBOSE
for (; vr; vr = vr->vr_next) {
char **ptr;
natprintf("\n");
for (ptr = vr->vr_output; *ptr; ptr++)
natprintf("%lu: %s\n", vr->vr_vulid, *ptr);
}
#endif
exit(0);
}
struct vuln_res * bugblk; /* generic one to build a chain thereof */
struct vuln_res * bughead; /* start of [malloced] chain */
struct vuln_res * prev_bugblk; /* temporary "backlink" pointer */
int ptr_vuln = 0;
int idx_vuln = 1;
int cur_vuln = 0;
char * vuln_strings[128] = {
"", "", "", "" /* will be filled in later on */
};
int vuln_ids [128]; /* corresponding bug-ID block */
char * vvr_strings[256]; /* ptr block for selected items */
int ptr_vvr = 0; /* and *its* index */
static u_long prev_ip = { 0L }; /* really shd be in_addr */
static int prev_res = 0;
void donothing () {} /* printf / fprintf fakeout */
extern char * get_block();
extern int fill_block();
int fill_vuln (char * flag, char * str)
{
char buf [128];
register char * p;
register int x;
if (! flag) /* various safety checks */
return (0);
if (cur_vuln <= 0)
return (0);
if (ptr_vuln > 127)
return (0);
StrnCpy (buf, flag, 40);
x = strlen (buf);
p = buf + x;
x = 79 - x;
StrnCpy (p, str, x); /* jam it in where we can */
buf[79] = '\0';
x = fill_block (vuln_strings, buf);
if (x >= 0) {
vuln_ids[x] = cur_vuln; /* stash bugid of this string, too */
ptr_vuln++;
}
return (x); /* preserve returned idx! */
} /* fill_vuln */
char * get_vuln (int id)
{
register int x;
while (ptr_vuln < 127) {
ptr_vuln++; /* preindex; first item is [1] */
if (vuln_ids[ptr_vuln] == id) {
x = ptr_vuln;
return (get_block (vuln_strings, x));
}
} /* while ptr_vuln */
return (NULL); /* oops, no more vulns! */
} /* get_vuln */
int clear_block (blk, idx)
char ** blk;
int idx;
{
static char * nullstr = "";
register int x = idx;
if (x <= 0) /* entry 0 is special */
goto cbbogus;
if (! blk)
goto cbbogus;
while (x < 128) { /* more runaway protection */
if (blk[x] == NULL)
break; /* done! */
if (blk[x][0]) {
blk[x][0] = '\0'; /* zap any old content */
free (blk[x]); /* and throw this fish back in */
}
blk[x] = nullstr;
x++;
}
return (1);
cbbogus:
fprintf (stderr, "OOPS! clear_block tried to clear bogus entry %d @ %x\n",
idx, blk);
return (0);
} /* clear_block */
struct vuln_res * module_16000(ipaddr)
u_long ipaddr;
{
register int i;
register char * pp;
char *buf, **ptr;
int strsize;
if (ipaddr == 0L)
return ((struct vuln_res *) -1);
if (ipaddr != prev_ip) { /* got a new host to check? */
clear_block (vuln_strings, 1); /* in case it contains old stuff */
for (i = 1; i < 127; i++) {
vuln_strings[i] = vuln_strings[0];
vuln_ids[i] = 0;
}
vuln_strings[127] = NULL; /* put in end-of-block indicator */
i = nas_step (ipaddr); /* summon the big ol' monster */
prev_ip = ipaddr; /* record the fact that we did */
prev_res = i; /* and the outcome */
} /* if new ipaddr */
if (prev_res == 0)
return ((struct vuln_res *) NULL); /* no netbios there, buckaroo */
ptr_vvr = 0;
prev_bugblk = NULL;
bughead = NULL;
for (i = 16000 ; i <= 16010 ; i++) { /* applicable bug-ID range */
ptr_vuln = 0; /* restart results index */
pp = get_vuln (i); /* anything for this bug-ID? */
if (!pp)
continue; /* nope, skip it */
bugblk = (struct vuln_res *) malloc (sizeof (struct vuln_res));
if (!bugblk)
continue; /* or try to, anyway.. */
if (prev_bugblk) {
prev_bugblk->vr_next = bugblk; /* hook up the chain */
} else {
bughead = bugblk; /* save the start point */
}
prev_bugblk = bugblk; /* and dangle the next link */
bugblk->vr_vulid = i;
bugblk->vr_output = &vvr_strings[ptr_vvr]; /* ack!! */
bugblk->vr_next = NULL;
vvr_strings[ptr_vvr] = pp; /* chain off to real result string */
ptr_vvr++;
while ((pp = get_vuln (i))) { /* collect the rest of 'em */
vvr_strings[ptr_vvr] = pp;
ptr_vvr++;
}
vvr_strings[ptr_vvr] = NULL; /* terminate this block */
ptr_vvr++; /* and point just past it */
} /* for i = bugid */
for (prev_bugblk = bughead; prev_bugblk;
prev_bugblk = prev_bugblk->vr_next) {
strsize = 0;
for (ptr = prev_bugblk->vr_output; *ptr; ptr++)
strsize += strlen(*ptr)+10;
buf = (char *)malloc(strsize+100);
memset(buf, 0, strsize+100);
for (ptr = prev_bugblk->vr_output; *ptr; ptr++) {
strcat(buf, *ptr);
strcat(buf, "\n");
}
prev_bugblk->vr_output = (char **)malloc(2);
prev_bugblk->vr_output[0] = buf;
prev_bugblk->vr_output[1] = NULL;
}
return (bughead);
}
/*
* Write format to file, opening file if it's not open
*/
#ifdef __STDC__
void natprintf(char *format, ...)
{
#else
void natprintf(va_alist)
va_dcl
{
char *format;
#endif
va_list ap;
static FILE *outfd = NULL;
#ifdef __STDC__
va_start(ap, format);
#else
va_start(ap);
format = va_arg(ap,char *);
#endif
vfprintf(stdout, format, ap);
if (!outputfile)
return;
if (!outfd) {
if (!(outfd = fopen(outputfile, "a"))) {
fprintf(stderr, "[*]--- Error: Unable to open: %s\n", outputfile);
exit(-1);
}
}
vfprintf(outfd, format, ap);
return;
}
|