Some company is trying to sell people software that simply sends out network broadcast messages to ranges of ip’s for $700!
I’ll be undercutting the market and selling my perl script that does exactly the same thing for half that (YES THATS RIGHT, ONLY $350) if anyone wants it
Board members get a free copy
#!/usr/bin/perl -w
#!C:\Perl\bin\perl.exe -w
################################################################
$message_text = "spam";
$first_x2_ip = "192.168";
################################################################
$message_text = "spam";
for ($countb=0; $countb<257; $countb++)
{
################################################################
for ($counta=1; $counta<257; $counta++)
{
$send_message_to = "$first_x2_ip.$countb.$counta";
&mess_send;
}
################################################################
sub mess_send {
#system("net send $send_message_to = $message_text");
print "$send_message_to\n";
} # end mess send sub
################################################################
} # end count b
################################################################












