[go: nahoru, domu]

Skip to content

Commit

Permalink
Stray commented line & unneeded safety call on our method.
Browse files Browse the repository at this point in the history
  • Loading branch information
sullo committed Jun 3, 2018
1 parent e759b33 commit ec41e44
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions program/plugins/nikto_report_csv.plugin
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ sub csv_host_start {
print $handle "\"" . csv_safecell($hostname) . "\","
. "\"" . csv_safecell($mark->{'ip'}) . "\","
. "\"" . csv_safecell($mark->{'port'}) . "\"," . "\"\"," . "\"\"," . "\"\","
#. "\"" . $mark->{'banner'} . "\"\n";
. "\"" . csv_safecell($mark->{'banner'}) . "\"\n";
return;
}
Expand All @@ -77,7 +76,7 @@ sub csv_item {
$line .= "\",";

$line .= "\"";
if ($item->{'method'} ne '') { $line .= csv_safecell($item->{'method'}); }
if ($item->{'method'} ne '') { $line .= $item->{'method'}; }
$line .= "\",";

$line .= "\"";
Expand Down

0 comments on commit ec41e44

Please sign in to comment.