
This is a script I just made, but I wonder if there would be any interest in it, whether it would be a good idea to give it out, and in such case, what I should sell it for.
Input?

you give me the copyright on it?
you give me the copyright on it?
$ref=@fsockopen("$parsed[host]",80);
if($ref){
fputs($ref,"GET $parsed[path] HTTP/1.0\n");
fputs($ref,"Host: $parsed[host]\n");
fputs($ref,"User-Agent: Reffer 1.0\n");
fputs($ref,"Referer: $referrer\n");
fputs($ref,"Accept-Charset: iso-8859-1,*,utf-8\n");
fputs($ref,"Accept-Language: en\n");
fputs($ref,"\n.");
fclose($ref);
$success=1;
echo"<font color=\"#008000\">$parsed[host] hit</font><br>";
}
$c++;

Comment