Fix paths to be compatible with Debian installation

 nikto.pl                    |    2 +-
 plugins/nikto_single.plugin |   10 +++++-----
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/nikto.pl b/nikto.pl
index 55e8daf..2281675 100755
--- a/nikto.pl
+++ b/nikto.pl
@@ -83,7 +83,7 @@ LW2::http_init_request(\%request);
 $request{'whisker'}->{'ssl_save_info'}              = 1;
 $request{'whisker'}->{'lowercase_incoming_headers'} = 1;
 $request{'whisker'}->{'timeout'}                    = $CLI{'timeout'} || 10;
-if (defined $CLI{'evasion'}) { $request{'whisker'}->{'encode_anti_ids'} = $CLI{'evasion'}; }
+if (defined $CLI{'evasion'}) { $request{'whisker'}->{'anti_ids'} = $CLI{'evasion'}; }
 $request{'User-Agent'} = $NIKTO{'useragent'};
 $request{'whisker'}->{'retry'} = 0;
 proxy_setup();
diff --git a/plugins/nikto_single.plugin b/plugins/nikto_single.plugin
index 6ab7e40..ed5905e 100644
--- a/plugins/nikto_single.plugin
+++ b/plugins/nikto_single.plugin
@@ -106,8 +106,8 @@ sub single
         $request{'whisker'}{$key} = ask("$key ($request{'whisker'}{$key})") || $request{'whisker'}{$key};
     }
 
-    $request{'whisker'}->{'encode_anti_ids'} = ask("Enable Anti-IDS (0)");
-    if ($request{'whisker'}->{'encode_anti_ids'} eq 1)
+    $request{'whisker'}->{'anti_ids'} = ask("Enable Anti-IDS (0)");
+    if ($request{'whisker'}->{'anti_ids'} eq 1)
     {
         print "
 \t1 Random URI encoding (non-UTF8)
@@ -119,11 +119,11 @@ sub single
 \t7 Random case sensitivity
 \t8 Use Windows directory separator (\\)\n";
 
-        $request{'whisker'}{'encode_anti_ids'} = ask("Anti-IDS Methods");
-        if ($request{'whisker'}{'encode_anti_ids'} eq "") { delete($request{'whisker'}->{'encode_anti_ids'}); }
+        $request{'whisker'}{'anti_ids'} = ask("Anti-IDS Methods");
+        if ($request{'whisker'}{'anti_ids'} eq "") { delete($request{'whisker'}->{'anti_ids'}); }
     } else
     {
-        delete($request{'whisker'}->{'encode_anti_ids'});
+        delete($request{'whisker'}->{'anti_ids'});
     }
 
     print "-" x $width, "  Done with questions\n";
