S
Stan777
Объясните пожайлуста почему не работает прога ?
Код:
#!/usr/bin/perl
use IO::Socket;
$port=80;
$host="127.0.0.1";
$link="/";
sub funk {
$error=0;
$sock = IO::Socket::INET->new(Proto => "tcp",PeerAddr => $host,PeerPort => $port);
if (!$sock) {
$error=1;
print "[-] ERROR: Could't connect\n";
exit;
}
print $sock "GET $link HTTP/1.0\nHost: $host\r\n";
close ($sock);
return ($error);
}
while($error == 0){
$error=funk($port,$host,$link);
}