#!/usr/bin/perl
my
$hostfile
=
shift
;
my
$nmapfile
=
shift
;
my
$n
= Net::Nessus::XMLRPC->new (
''
,
'user'
,
'pass'
);
die
"URL, user or passwd not correct: "
.
$n
->nurl.
"\n"
unless
(
$n
->logged_in);
print
"Logged in!\n"
;
my
$tp
=
$n
->policy_get_first();
print
"Using template policy: "
.
$tp
.
"\n"
;
my
$polid
=
$n
->policy_copy(
$tp
);
print
"Using policy ID: $polid "
;
my
$polname
=
$n
->policy_get_name(
$polid
);
print
"with name: $polname\n"
;
my
$nmapufile
=
$n
->file_upload(
$nmapfile
);
my
$nopt
= {
'policy_name'
=>
"nmap-$nmapufile"
};
$nopt
->{
'Nmap (NASL wrapper)[file]:File containing grepable results :'
} =>
$nmapufile
;
$n
->policy_set_opts(
$polid
,
$nopt
);
my
$scanid
=
$n
->scan_new_file(
$polid
,
"nmap-$nmapfile"
,
''
,
$hostfile
);
print
"Started scan with ID: $scanid\n"
;