Save thành file firewall.php up lên root site rồi chèn cái này vào đầu file index.php
<?php include "firewall.php";?>
Code:
<?php
session_start();
global $_firewall_OK;
$_firewall_OK = 0;
if(!session_is_registered("anti_firewall") || $anti_firewall != "true")
{
if(isset($antisecurity) && $_POST['antisecurity'])
{
settype($antisecurity,"string");
settype($num,"string");
if($antisecurity == $num)
{
session_unregister("num");
session_unregister("error");
session_register("anti_firewall");
$anti_firewall = "true";
return 1;
}
else
{
$error = $error + 1;
?>
<html>
<head>
<title>WELCOME TO NARUTOVN</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"><style type="text/css">
<!--
body,td,th {
color: #FF0000;
}
body {
background-color: #000000;
}
.style1 {
color: #FFFF00;
font-weight: bold;
}
.style6 {font-size: 18px}
.style7 {font-size: xx-large}
.style8 {color: #999999}
.style10 {
font-size: 18px;
color: #999999;
font-style: italic;
}
-->
</style></head>
<body>
<center>
<span class="style7">NarutoVN Firewall</span>
<p class="style8">(Firewall nà y được dựng lên để đảm bảo an toà n cho Forum trước tình trạng tấn công DOS của các ****er )</p>
<p><span class="style6"><em><span class="style8"><em>Nháºp mã số là </em> :</span></em> <span class="style1"><? echo $num;?></span></span> <span class="style10"> và o ô dÆ°á»›i để vượt qua Firewall
</span></p>
<form method="POST" action="index.php">
<p>
<input name="antisecurity" type="text" size="6" maxlength="6">
</p>
<p>
<input type="submit" name="Submit" value="Click here">
</p>
</form>
<p>
</p>
</center>
<center>
<?php
if($error < 3){ echo "Bạn đã nháºp sai mã số ! Vui lòng nháºp lại !";}
if($error >= 3){ echo "Bạn đã nháºp sai mã số ! Vui lòng nháºp lại !<br><br> Nếu bạn gặp rắc rối với Firewall , hãy liên hệ với anti qua một trong các nick Yahoo : noixa03 , yeuemdaikho22 , langduintel , langtuhaohoabmt2002";}
?></center>
</body>
</html>
<?php
//session_unregister("error");
exit(-1);
}
}
else
{
//Tao session "num" va gan gia tri so ngau nhien co 6 chu so
session_register("num");
mt_srand((double) microtime()*1000000);
$num = mt_rand(100000,999999);
session_register("error");
$error = 1;
//Form
?>
<html>
<head>
<title>WELCOME TO NARUTOVN</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"><style type="text/css">
<!--
body,td,th {
color: #FF0000;
}
body {
background-color: #000000;
}
.style1 {
color: #FFFF00;
font-weight: bold;
}
.style6 {font-size: 18px}
.style7 {font-size: xx-large}
.style8 {color: #999999}
.style10 {
font-size: 18px;
color: #999999;
font-style: italic;
}
-->
</style></head>
<body>
<center>
<span class="style7">NarutoVN Firewall</span>
<p class="style8">(Firewall nà y được dựng lên để đảm bảo an toà n cho Forum trước tình trạng tấn công DOS của các ****er )</p>
<p><span class="style6"><em><span class="style8"><em>Nháºp mã số là </em> :</span></em> <span class="style1"><? echo $num;?></span></span> <span class="style10"> và o ô dÆ°á»›i để vượt qua Firewall
</span></p>
<form method="POST" action="index.php">
<p>
<input name="antisecurity" type="text" size="6" maxlength="6">
</p>
<p>
<input type="submit" name="Submit" value="Vượt Firewall">
</p>
</form>
<p>
</p>
</center>
</body>
</html>
<?php
exit(-1);
}
}
else
{
return 1;
}
?>