in reply to Re^2: processing a module result
in thread processing a module result

Hello averlon,

mainly our goal is to help you in learning, not providing solutions, so I'd start with:

this will save a lot of trouble and has not drawbacks, so let perl help you: it is amazing in this

# 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.

The doc says it: SCAN-RESULTS. I invite you to inspect yourself this result using the core module Data::Dumper or the CPAN one Data::Dump (I prefer the latter, but in some edge case the former is more accurate: get used to both).

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*

There are no rules, there are no thumbs..
Reinvent the wheel, then learn The Wheel; may be one day you reinvent one of THE WHEELS.