Tạo tập tin tuoitrevn.php ngang hàng index.php, dán code này vào và chạy domain/tuoitrevn.php nhập user và pass admin để tạo lại
Nguồn: http://tuoitreit.vn<?php
define( 'NV_ADMIN', true );
require_once ( str_replace( '\\\\', '/', dirname( __file__ ) ) . '/mainfile.php' );
require_once ( NV_ROOTDIR . "/includes/core/admin_functions.php" );
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Bộ công cụ thay đổi user và pass admin nukeviet 3 bởi tuoitreit.vn</title>
</head>
<body>
<?php
$do = 0;
$do = filter_input(INPUT_POST,'do',FILTER_SANITIZE_SPECIAL_CHARS);
if( $do )
{
$username = filter_input(INPUT_POST,'username',FILTER_SANITIZE_SPECIAL_CHARS);
$password = filter_input(INPUT_POST,'password',FILTER_SANITIZE_SPECIAL_CHARS);
$comfirmpassword = filter_input(INPUT_POST,'comfirmpassword',FILTER_SANITIZE_SPECIAL_CHARS);
$name = md5( $username );
$pass = md5( $password );
if($password!= $comfirmpassword)
{
$xuat = "Mật khẩu xác nhận không trùng đề nghị nhập lại";
}else if(empty ($username))
{
$xuat = "Tên đăng nhập không được để trống";
}else if(strlen($password) <5)
{
$xuat = "Mật khẩu phải lớn hơn 4 ký tự";
}
else
{
mysql_query("UPDATE `" . $db_config['prefix'] . "_users` SET `username` = '".$username."',
`md5username` = '".$name."',
`password` = '".$pass."' WHERE `" . $db_config['prefix'] . "_users`.`userid` =1 LIMIT 1 ;");
$xuat= "Thông tin của bạn đã được thay đổi, hãy xóa file này đi sau đó đăng nhập tải với tài khoản vừa được tạo";
}
}
?>
<form action="" method="post">
<h2 align="center">Bộ công cụ thay đổi user và pass admin nukeviet 3 bởi tuoitreit.vn</h2>
<h3 align="center">Hãy nhập tên đăng nhập và admin bạn cần tạo lại</h3>
<table width="274" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="142"><strong> Tên đăng nhập</strong></td>
<td width="132"><input name="username" type="text" id="username" size="22" value="<?php echo $username;?>" /></td>
</tr>
<tr>
<td><strong> Mật khẩu</strong></td>
<td><label for="password"></label>
<input type="password" name="password" id="password" size="22" /></td>
</tr>
<tr>
<td><strong>Xác nhận mật khẩu</strong></td>
<td><label for="comfirmpassword"></label>
<input type="password" name="comfirmpassword" id="comfirmpassword" size="22"/></td>
<input type="hidden" name="do" value="1" />
</tr>
<tr>
<td colspan="2"><div style="margin-left:120px;" align="center">
<input type="submit" name="change" id="change" value="Đổi tài khoản mới" />
</div></td>
</tr>
</table>
<h2 align="center"><?php echo $xuat; ?></h2>
</form>
</body>
</html>