~kirkland/bogosec/trunk

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
#!/usr/bin/perl

###########################################################
#
# Licensed Material - Property of IBM
#
# BogoSec - Source Code Security Quality Metric Calculator
#
# (C) Copyright IBM Corp. 2004-2008
#
# FILE   : bogosec
#
# PURPOSE: File to run differnt scanner and analyze their output
#	   to calulate a level of security for the input code target.
#
# HISTORY:
#	07/2004 originated by:
#		Tony Petz (petz.agoston@gmail.com)
#		Dustin Kirkland (dustin.kirkland@us.ibm.com)
#	01/2005 Loulwa Salem (loulwa@us.ibm.com) - add compiler based scanner functionality
#	01/2005 Loulwa Salem (loulwa@us.ibm.com) - Changes to improve code readability.
#	02/2005 Loulwa Salem (loulwa@us.ibm.com) - replaced shell commands with Perl code.
#	03/2005 Loulwa Salem (loulwa@us.ibm.com) - Added timeout option
#	07/2005 Loulwa Salem (loulwa@us.ibm.com) - New option to exclude vulnerabilities
#		Code to keep track of all vulnerability types found 
###########################################################

use strict;

# load modules

# needed for proper command line option handling
use Getopt::Long;

# liberal use of temporary files/directories
use File::Temp;

# To use files copy and move operations
use File::Copy;

# execute each scanner in a separate thread
use Thread qw(async);

# module to abtain the absolute path of the target
use Cwd 'abs_path';

# globals and default values
my %OPTS = (
		global_config_file	=>	"/etc/bogosec.conf",
		config_file		=> 	"$ENV{HOME}/.bogosecrc",
		log_dir			=> 	"$ENV{PWD}/",
		logging			=>	undef,
		min_sev			=>  	0,
		no_header_files 	=>	undef,
		plugin_dir 		=> 	"/usr/lib/bogosec/plugins/",
		sev_range_max		=>	10,
		scan_timeout		=>	undef,
		temp_log_dir		=>	"/tmp/",
		exclude_vuln		=>	undef,
		verbosity		=> 	0
	   );
my $TARGET = "";
my $DELETE_TARGET = 0;
my @PLUGINS = ();
my %LOGFILES = {};
my %PLUGIN_ARGS = {};
my %RESULTS = {};
my %THREADS = {};
my @ALL_FILES = ();
my %ALL_FILES = {};
my $SCORE = "";
my $SEV_PTS = "";
my @PLUGINS_USED = ();
my $TOTAL_LINES = 0;
my @LIST_OF_FILES = ();
my %STATUS = {};
my $NEW_DIR = "";
my %Vuln = ();
#my $V_list = "";

sub usage() {
# display command line usage information
	print "Usage: bogosec [options] TARGET\n";
	print "OPTIONS:\n";
	print "\t-l\t\t\t\tenable logging\n";
	print "\t--logdir <dir>\t\t\tchange log directory\n";
	print "\t--min-sev <0-10>\t\tchange min sev cutoff\n";
	print "\t--nhf\t\t\t\tdon't scan header files\n";
	print "\t-p <plugin> [args]\t\trun with specified plugin/args\n";
	print "\t--plugin-dir <dir>\t\tuse plugin-dir instead of default\n";
	print "\t--sev-range-max <num>\t\tchange maximum severity range\n";
	print "\t--timeout <num>\t\t\tset cpu timeout in seconds\n";
	print "\t--temp-log-dir <dir>\t\tchange temporary logging directory\n";
	print "\t-v <0|1>\t\t\tenable/disable verbose output\n";
	print "\t--xp <plugin>\t\t\texclude plugin\n";
	print "\t--xv <vuln1:vuln2:...etc>\texclude vulnerabilities\n";
	print "\nplease see manpage for more documentation\n\n";
}

sub round($) {
# simple round-to-nearest-integer function
	if ( ($_[0] - int($_[0])) < 0.5 ) {
		return int($_[0]);
	} else {
		return int($_[0]) + 1;
	}
}

sub check_directories() {
# make sure all directories in %OPTS have a trailing slash
	if ($OPTS{log_dir} !~ m/^.*\/$/) {
		$OPTS{log_dir} .= "/";
	}
	if ($OPTS{plugin_dir} !~ m/^.*\/$/) {
		$OPTS{plugin_dir} .= "/";
	}
	if ($OPTS{temp_log_dir} !~ m/^.*\/$/) {
		$OPTS{temp_log_dir} .= "/";
	}
}

sub parse_config($) {
# overide any defaults with options specified in configuration file
	if (-f $_[0]) {
		open(FH,"<$_[0]") || die("Cannot open config file: $_[0]\n");
		while (<FH>) {
			s/#.*//;
			(my $keyword) = m/^\s*(\w+)/;
			$keyword =~ s/-/_/g;
			if (exists($OPTS{$keyword})) {
				($OPTS{$keyword}) = m/^\s*\w+\s*(.*)$/;	
			} elsif (length($keyword) != 0) {
				print "Error in config file $_[0]: $keyword is not a valid configuration paramter!\n";
			}
		}
	}
}

sub parse_cmd_line() {
# read command line options
	my @plugin_list = ();
	my $vuln_list = "";
	my @exclude_list = ();
	my @omitted_directories = ();
	my $result_cmd_read = GetOptions(\%OPTS,
			'exclude_plugin|exclude-plugin|xp=s' => \@exclude_list,
			'log_dir|log-dir=s',
			'logging|l',
			'min_sev|min-sev|minimum-severity=i',
			'no_header_files|no-header-files|nhf',
			'plugin|p=s' => \@plugin_list,
			'plugin_dir|plugin-dir=s',
			'sev_range_max|sev-range-max=i',
			'scan_timeout|timeout=i',
			'temp_log_dir|temp-log-dir=s',
			'exclude_vuln|exclude-vuln|xv=s',
			'verbosity|v=i',
			);
	if ($result_cmd_read != 1 || $#ARGV != 0) {
		usage();
		exit 1;
	}
# get absolute target path (works if user enters . or ../DIR type targets)
	$TARGET = abs_path($ARGV[0]);

# verify target
	if (! -f $TARGET && ! -d $TARGET) {
		print "Error: target \"$TARGET\" is not a valid file or directory.\n";
		exit 1;
	}
# check if target is a tar.gz or .tgz ball
	if ( ($TARGET =~ /\.tar\.gz$/) || ($TARGET =~ /\.tgz$/) ) {
		$TARGET = unpack_tarball($TARGET);
# check if target is a src.rpm file
	} elsif ( ($TARGET =~ /\.src\.rpm$/) ) {
		$TARGET = unpack_srcrpm($TARGET);
	}
# verify plugin dir
	if (! -d $OPTS{plugin_dir}) {
		print "Error: \"$OPTS{plugin_dir}\" is not a valid directory.\n";
		exit 1;
	}
	unshift(@INC, $OPTS{plugin_dir});

# process specified pluggins
	if ($#plugin_list >= 0) {
		foreach (@plugin_list) {
			(my $plugin) = m/^\s*(\w+)/;
			(my $args) = m/^\s*\w+\s*(.*)$/;
			push(@PLUGINS, $plugin);
			$PLUGIN_ARGS{$plugin} = $args;
		}
	} else { 
# user did not define a list of plugins to use (default)
		opendir(DH,$OPTS{plugin_dir});
		my @available_modules = readdir(DH);
		foreach my $mod (@available_modules) { 
			if ( $mod =~ /\.pm$/ ) {
				$mod =~ s/\.pm$//g;
				push(@PLUGINS, $mod);
			}
		}
		closedir(DH);
	}


# process vulnerabilities exclude list
	#$V_list = $OPTS{exclude_vuln};  

# process plugin exclude list (useful if one scanner/plugin is problematic)
	if ($#exclude_list >= 0) {
		foreach (@exclude_list) {
			for (my $i=0;$i<=$#PLUGINS;$i++) {
				if ($PLUGINS[$i] =~ m/^$_$/) {
					splice(@PLUGINS,$i,1);
				}
			}
		}
	}
}

sub unpack_tarball($) {
# unpack archive file to a temp directory
	my $target = shift @_;
	my $new_target = mkdtemp($OPTS{temp_log_dir} . "bogosec.temp_target.XXXXXX");
	`tar -zxvf $target -C $new_target`;
	if ( $? != 0 ) {
		print("Error: unable to extract $target\n");
		exit 1;
	}
	$DELETE_TARGET = 1;
	return $new_target;
}

sub unpack_srcrpm($) {
# unpack src.rpm file to temp directory, rebuild it and apply the patches
	my $target = shift @_;
	my $spec_file = "";
	$NEW_DIR = mkdtemp($OPTS{temp_log_dir} . "bogosec.temp_rpm.XXXXXX");
# only BUILD directory needs to be created, SOURCES and SPECS are created automatically
	mkdir($NEW_DIR . "/BUILD", 0700);

# Backup ~/.rpmmacros file if it exists, then create a new file to make the rpm mechanism 
#	put its output in the specified directory rather than the default location
	if (-e"$ENV{HOME}/.rpmmacros") {
		move("$ENV{HOME}/.rpmmacros", "$ENV{HOME}/.rpmmacros.save");
	}
	open(FH, ">$ENV{HOME}/.rpmmacros") || die "Cannot open ~/.rpmmacros \n";
	print FH "%_topdir $NEW_DIR";
	close(FH);

# Install the target using rpm, then use rpmbuild to only execute the %prep section
# 	of spec file (this unpacks the source to BUILD and applies the patches).
	`rpm -ivh $target`;
	
# This following block of code eliminates the . and .. from the directory listing to ensure 
#	they do not cause any problems in obtaining the spec filename.
	opendir(DH,"$NEW_DIR/SPECS");
	while (my $entry = readdir(DH)) {
		if ($entry =~/^[\.]{1,2}$/) {
			next;
		}
		else {
			$spec_file = $entry;
		}
	}
	closedir(DH);

	chomp($spec_file);
	`rpmbuild -bp $NEW_DIR/SPECS/$spec_file 2>/dev/null`;
	if ( $? != 0 ) {
		print "Error: rpmbuild did not execute correctly\n";
		move("$ENV{HOME}/.rpmmacros.save", "$ENV{HOME}/.rpmmacros");
		`rm -rf $NEW_DIR`;
		exit 1;
	}
	my $new_target = $NEW_DIR. "/BUILD";

# Restore original ~/.rpmmacros
	if (-e"$ENV{HOME}/.rpmmacros.save") {
		move("$ENV{HOME}/.rpmmacros.save", "$ENV{HOME}/.rpmmacros");
	}
	$DELETE_TARGET = 1;
	return $new_target;
}

sub severity_stats() {
# extended analysis routine
# somewhat limited, as this requires severities 0-10 (default)
	print "\nScanner hits break down by severity level\n";

#			  0 1 2 3 4 5 6 7 8 9 10
	my @severities = (0,0,0,0,0,0,0,0,0,0,0);
	my $total_sev = 0;
	foreach my $file (@ALL_FILES) {
		for (my $i=0; $i<$#{$ALL_FILES{$file}}; $i++) {
			if (defined($ALL_FILES{$file}[$i])) {
				my $avg = 0;
				my @nums = split(" ",$ALL_FILES{$file}[$i]);
				foreach (@nums) {
					$avg += $_;
				}
				$avg = $avg/($#nums + 1);
				$avg = round($avg);
				@severities[$avg]++;
			}
		}
	}
	foreach (@severities) {
		$total_sev += $_;
	}
	for (my $i=1; $i<=10; $i++) {
		my $bar = ($severities[$i]/$total_sev) * 50;
		$bar = round($bar);
		print "[$i]	|";
		for (my $j=0; $j<$bar; $j++) {
			print "x";
		}
		print "($severities[$i])\n";
	}
	print "\n";
}


# useful test/debug subroutines
# -----------------------------
sub dump_opt() {
	print "\n\nOPTS\n\n";
	while (my ($k, $v) = each %OPTS) {
		print "$k : $v\n";
	}
	print "\plugins\n----\n";
	print "@PLUGINS\n....................\n";
}

sub verify_data_struct() {
	print "verify data structure...\n--------------------\n";
	foreach my $plugin (@PLUGINS) {
		print " * Analysis by $plugin *\n";
		foreach my $result (@{$RESULTS{$plugin}}) {
			print "$result\n";
		}
	}
}

sub verify_analysis() {
	print "verifying analysis data structures...\n-------------------\n";
	print "\@ALL_FILES contains:\n";
	foreach (@ALL_FILES) {
		print;
		print " ";
	}
	print "\n";
	foreach my $file (@ALL_FILES) {
		print "\$ALL_FILES{$file} = $ALL_FILES{$file}\n";
		for (my $i = 0; $i < $#{$ALL_FILES{$file}}; $i++) {
			if (defined($ALL_FILES{$file}[$i])) {
				print "[$i] : $ALL_FILES{$file}[$i]\n";
			}
		}
	}
}
# -----------------------------
# end useful test/debug subroutines


###################
#    MAIN BODY    #
###################

# Load defaults, configuration file, command line options
parse_config($OPTS{global_config_file});
parse_config($OPTS{config_file});
parse_cmd_line();
check_directories();

# check scanner plugin list
if ($#PLUGINS < 0) {
	print "Error: no plugins defined (or no plugins found in directory \"$OPTS{plugin_dir}\")\n";
	exit 1;
}
# load scanner plugins
foreach my $mod (@PLUGINS) {
	eval "use $mod;";
}

# Run each scanner multithreaded 
foreach my $plugin (@PLUGINS) {
	my $scanner = eval("$plugin\:\:name();");
	@LIST_OF_FILES = ();
	if (eval("$plugin\:\:exists();")) {
		my $path = $scanner;
		my $default_args = eval("$plugin\:\:get_args();");
		(my $FH, $LOGFILES{$plugin}) = mkstemp($OPTS{temp_log_dir} . "bogosec.$scanner.log.XXXXXX");
		if ($OPTS{no_header_files}) {
			@LIST_OF_FILES = `find $TARGET | egrep -i '(\\.c\$|\\.cpp\$|\\.c\\+\\+\$)'`;
		} else {
			@LIST_OF_FILES = `find $TARGET | egrep -i '(\\.c\$|\\.cpp\$|\\.c\\+\\+\$|\\.h\$)'`;
		}	
		$THREADS{$plugin} = async {
			my $compiler_based = eval("$plugin\:\:does_compile();");
			print("Running $scanner...\n");
# if scanner is compiler based, then use the run() function in the plugin
			if ($compiler_based) {
				eval("$plugin\:\:perform_compiler_based_scan(\$LOGFILES{\$plugin},\$TARGET);");
			}
			else {
# else execute the static analysis scanners on each file
# following three lines will print the command running on files at the top of each scanner log file.
				open(FH, ">$LOGFILES{$plugin}") || die "Cannot open $LOGFILES{$plugin}\n";
				print FH "COMMAND : $path $default_args <file_name>\n";
				close(FH);
				foreach my $file (@LIST_OF_FILES) {
					chomp($file);
# if user defined a timeout option, set cpu time limit then run scanners. Else run scanners without limit
					if (defined($OPTS{scan_timeout})) {
						`ulimit -t $OPTS{scan_timeout}; $path $default_args $file >> $LOGFILES{$plugin} 2>&1`;
					} else {
						`$path $default_args $file >> $LOGFILES{$plugin} 2>&1`;
					}
					if ( $? != 0 ) {
						print("Warning: $scanner failed with error code ( $? ) on file $file\n");
					}
				}
			}
# ";" on following line is required by async().
		};
		push(@PLUGINS_USED, $plugin);
	}
}

foreach my $plugin (@PLUGINS_USED) {
	$STATUS{$plugin} = $THREADS{$plugin}->join;
	$RESULTS{$plugin} = eval("$plugin\:\:analyze(\$LOGFILES{\$plugin}, \$TARGET, \$OPTS{sev_range_max}, \$OPTS{exclude_vuln});");
# if logging option specified, then copy log files to the log directory first.
	if (defined($OPTS{logging})) {
		my $logfile = $OPTS{log_dir} . eval("$plugin\:\:name();") . ".log";
		`cp $LOGFILES{$plugin} $logfile`;
	} 
	unlink($LOGFILES{$plugin});
}


# parse analysis
foreach my $plugin (@PLUGINS_USED) {
	my $this_score = 0;
	my $this_lines = shift @{$RESULTS{$plugin}};
	if (!defined($this_lines)) {
		$this_lines = 0;
		foreach my $file (@LIST_OF_FILES) {
			chomp($file);
			$this_lines += `wc -l $file`;
		}	
	}
	if ($STATUS{$plugin} eq "Error") {
		print "Error: $plugin encountered a problem and will be excluded from final calculation\n";
		$this_lines = 0;
	}
	$TOTAL_LINES += $this_lines;
	foreach my $result (@{$RESULTS{$plugin}}) {
		my ($file, $line, $score, $vulnerability) = split(/:/, $result);
		if ($score >= $OPTS{min_sev}) {
			if (!exists($ALL_FILES{$file})) {
				push(@ALL_FILES, $file);
			}
			$ALL_FILES{$file}[$line] .= "$score ";
			if ($STATUS{$plugin} eq "Error") {
				$score = 0;
			}
			$SEV_PTS += $score;
			$this_score += $score;
		}
	$Vuln{$vulnerability}++;
	}
	print(eval("$plugin\:\:name();") . "\n  " . round($this_score) . " points\n  $this_lines lines\n");
}

my @vuln = split(/:/, $OPTS{exclude_vuln});
if ($#vuln >= 0) {
	print "\nVulnerabilities excluded are: \n"; 
	foreach (@vuln) {
		print "$_ ";
	}
	print "\n";
}

print "\nDetailed Vulnerability Count:\n";
my @key = keys %Vuln;
my @value = values %Vuln;
while(@key) {
	print "\t", pop(@key), '=', pop(@value), "\n"; 
}

# If user scanned tar.gz or src.rpm file, delete temp target
if ($DELETE_TARGET) {
	`rm -rf $TARGET`;
	`rm -rf $NEW_DIR`;
}

# Put conditional to avoid divide by zero case
# calculate final score
if ( $TOTAL_LINES != 0 ) {
	$SCORE = $SEV_PTS/$TOTAL_LINES;
} else {
	$SCORE = 0;
}

# more verbose output
if ($OPTS{verbosity} > 0) {
	if ($OPTS{sev_range_max} != 10) {
		print "\nNOTE: Extra verbosity cannot be used when sev_range_max is modified\n\n";
	} else {
		severity_stats();
	}
}

# debug calls...
# verify_analysis();
# verify_data_struct();
# dump_opt();

print(">>> Using scanners: (");
foreach my $plugin (@PLUGINS_USED) {
	print(eval("$plugin\:\:name();") . " ");
}
print ")\n";
print(">>> " . round($SEV_PTS) . " total severity points\n");
print ">>> " . $TOTAL_LINES . " total lines of code scanned\n";
print ">>> final score = $SCORE\n";
exit 0;