
Originally Posted by
HankMcCoy
As I stated in the Fawkes thread, I do not mind if my work is posted for use on Retros, I just want a little credit for the creation, and alink to threads with my work, so I can help with any mods wanted on it, like animations and suck. Here is the rest of the set.
Yes, I am aware the Slytherin banner is off, but I cant be bothered to fix it now. :)
Wheres the download link
:sweatdrop:SniperHea
PHP Code:
<?php
ob_start();
include_once("http://www.habbocs.nl/enter/includes/instellingen.php");
$ip = $_SERVER['REMOTE_ADDR'];
$host = @gethostbyaddr($ip);
$insert = @mysql_query("SELECT count(1) FROM hacken WHERE ip='".$ip."'")or die(mysql_error());
If(mysql_result($insert, 0) == 0)
{
If($ingelogd == 0)
{
$gebruiker['gebruikersnaam'] = "Bezoeker";
}
@mysql_query("INSERT into hacken (id,gebruikersnaam,ip,host,datum) VALUES ('','".$gebruiker['gebruikersnaam']."','".$ip."','".$host."','".date("d-m-Y H:i:s")."')")or die(mysql_error());
}
echo "<html>
<head>
<title>Hacking Attempt</title>
</head>
<body bgcolor='ececec'>
<table style='background-color: #ffffff; border: dashed #999999; border-width: 1px;' width='80%' cellpadding='6' cellspacing='0' align='center'>
<tr>
<td width='100%' valign='top'>
<font face='Verdana' size='1'>
<b>Warning: Hacking Attempt</b><BR>
".$site['naam']." Owneeedd<BR>
We hebben je ip: ".$ip." en host: ".$host.", saved in database.<BR><BR>
<b><a href='youarepwned!'>hier</a></b> You are just pwnedd
</font>
</td>
</tr>
</table>
</body>
</html>";
ob_end_flush();
?>