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
|
#VERSION,2.05
# $Id: nikto_report_text.plugin 632 2011-02-19 02:49:31Z sullo $
###############################################################################
# Copyright (C) 2007 CIRT, Inc.
#
# This program 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; version 2
# of the License only.
#
# 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
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
###############################################################################
# PURPOSE:
# Reporting
###############################################################################
sub nikto_report_text_init {
my $id = { name => "report_text",
full_name => "Text reports",
author => "Deity",
description => "Produces a text report.",
report_head => \&text_open,
report_host_start => \&text_host,
report_item => \&text_item,
report_format => 'txt',
copyright => "2008 CIRT Inc."
};
return $id;
}
sub text_open {
my ($file) = @_;
# Open file and produce header
open(OUT, ">>$file") || die print STDERR "+ ERROR: Unable to open '$file' for write: $@\n";
# Write header
print OUT "- $VARIABLES{'name'} v$VARIABLES{'version'}/$VARIABLES{'core_version'}\n";
return OUT;
}
sub text_host {
my ($handle, $mark) = @_;
my ($curr_host, $curr_port);
print $handle "+ Target Host: $mark->{hostname}\n";
print $handle "+ Target Port: $mark->{port}\n";
}
sub text_item {
my ($handle, $mark, $item) = @_;
foreach my $uri (split(' ', $item->{uri})) {
my $line = "+ ";
if ($item->{osvdb}) { $line .= "OSVDB-$item->{osvdb}: " }
if ($item->{method}) { $line .= "$item->{method} " }
if ($uri) { $line .= "${uri}: " }
$line .= $item->{message};
print $handle "$line\n";
}
}
1;
|