in reply to Re^2: processing a module result
in thread processing a module result
mainly our goal is to help you in learning, not providing solutions, so I'd start with:
# doc my $mas = Masscan::Scanner->new(hosts => \@hosts, ports => \@ports, ar +guments => \@arguments); #your code $av_obj_MAS->add_port(@av_arr_PORTS);
They are sligltly different... where? \@ports is a reference to an array while @av_arr_PORTS is an array. Look carefully at the documentation: arguments are always passed as a single scalar like in $mas->add_port(25) or as array reference like in $mas->ports(['22', '80', '443']); but never as list or array.
Consider the following oneliner (pay attention to windows double quotes around the code, single quote needed for Linux):
perl -MData::Dumper -e "$hash{lvl1}[3]{lvl3}[0] = 42; print Dumper \%h +ash" $VAR1 = { 'lvl1' => [ undef, undef, undef, { 'lvl3' => [ 42 ] } ] };
You are in a similar situation: perldsc is definitevely a good read.
Modify your program and share your achievements: they will probably bring up new questions
L*
|
|---|