luadola001
01-08-14, 02:25 PM
Demo ảnh:
<b><font color=red>[Chỉ có thành viên mới xem link được. <a href="register.php"> Nhấp đây để đăng ký thành viên......</a>]</font></b>
<b><font color=red>[Chỉ có thành viên mới xem link được. <a href="register.php"> Nhấp đây để đăng ký thành viên......</a>]</font></b>
<b><font color=red>[Chỉ có thành viên mới xem link được. <a href="register.php"> Nhấp đây để đăng ký thành viên......</a>]</font></b>
<b><font color=red>[Chỉ có thành viên mới xem link được. <a href="register.php"> Nhấp đây để đăng ký thành viên......</a>]</font></b>
<b><font color=red>[Chỉ có thành viên mới xem link được. <a href="register.php"> Nhấp đây để đăng ký thành viên......</a>]</font></b>
Chưa kịp làm cái phân trang :D
<b><font color=red>[Chỉ có thành viên mới xem link được. <a href="register.php"> Nhấp đây để đăng ký thành viên......</a>]</font></b>
Code đã được edit style html, không đụng chạm gì đến code php gốc, không có chức năng gì mới, webshop thì do bachugacon122 code.
Không dám nói là code sạch 100% nhưng mình đã dùng rồi và không gặp sự cố gì nên chắc cũng tầm 96,69% 8-x. Nếu bạn cài theo đúng hướng dẫn mà vẫn bị lỗi hay bạn bị hack web thì mình không chịu trách nhiệm nhé vì mình chỉ edit style không đụng chạm gì đến code
Các bạn muốn dùng thì dùng mình không tiếp gạch đá :D. Riêng mình vẫn thích dùng webshop này hơn :3. Nghe nói webshop của meocon dính lỗi SQli 8-}.
Link download: Không share nữa code không sạch :( Các bạn thông cảm :| (Bảo gồm full code + data + hướng dẫn cài đặt)
Vui lòng click nút "Thanks" để thấy pass giải nén.
pass unrar: trachpro
<b><font color=red>[Chỉ có thành viên mới xem link được. <a href="register.php"> Nhấp đây để đăng ký thành viên......</a>]</font></b>
Bonus thêm hướng dẫn scan shell trong mọi code và xóa bỏ.
UP lên root rồi chạy cái này tìm theo từ khóa. Phát hiện cái nào truy cập vào cái đó thử trước nếu thấy là shell thì xóa bỏ là xong
<?php
/************************************************** *******
- Tool Scan shell
- Edit by : GraceH
************************************************** ********/
error_reporting (0); // Mở báo lỗi
ini_set("memory_limit","2000M");
ini_set("safe_mode","off");
<b><font color=red>[Chỉ có thành viên mới xem link được. <a href="register.php"> Nhấp đây để đăng ký thành viên......</a>]</font></b>
if (!$safe_mode)
set_time_limit(0);
<b><font color=red>[Chỉ có thành viên mới xem link được. <a href="register.php"> Nhấp đây để đăng ký thành viên......</a>]</font></b>
{
?>
<html>
<head>
<meta <b><font color=red>[Chỉ có thành viên mới xem link được. <a href="register.php"> Nhấp đây để đăng ký thành viên......</a>]</font></b>"content-type" content="text/html; charset=utf-8" />
<title>Scan Shell</title>
<style>
body {
font-family:arial;
}
</style>
</head>
<body bgcolor=black text=blue size=2><center>
<form method='post' action=''>
<div style="border-style: solid; border-width: 1px; padding-left: 4px; padding-right: 4px; padding-top: 1px; padding-bottom: 1px">
<h1>Scan Shell - v1.1</h1>
<div> Folder: <input type='text' size=70 name='folder' value='<?echo $_SERVER['DOCUMENT_ROOT']?>/'/></div>
<div> KeyWord: <input type='text' size=70 name='key' value='base64_decode'/></div>
<p><input type='submit' name='submit' value='Tìm kiếm' /></p> </div>
<div align=left><br>Step 1: Nhập đường dẫn thư mục cần scan</div>
<div align=left>Step 2: Nhập từ khóa cần tìm</div>
</form>
<br><br>
---------------------------------------------------------------------------------
</br>GraceH<br>---------------------------------------------------------------------------------
</center>
</body>
</html>
<?
}
else
{
if ($_POST['folder']) $folder = $_POST['folder']; else $folder = $_SERVER['DOCUMENT_ROOT'];
define('Keyword',$_POST['key']); // Tìm kiếm từ khóa
define('TAB'," ");
define('IGNORE_EXTENSIONS',"jpg pdf zip psd doc gif swf xls gz txt"); // Không tìm những file
define("MAX_SIZE",1024*1024*1024); // Size tối đa
define("IGNORE_BEFORE", strtotime('2009-08-01') ); // Tìm File trước ngày
$shell = $_SERVER["PHP_SELF"];
function findexts($filename)
{
$filename = strtolower($filename) ;
$exts = split("[/\\.]", $filename) ;
$n = count($exts)-1;
$exts = $exts[$n];
return strtolower($exts);
}
function check_dir($directory,$level) {
global $virus_detected, $all, $detect_errors_only, $detected_Keyword_in_test_script;
$indent='';
for ($count=0;$count<$level;$count++) {
$indent.=TAB;
}
$level++;
$read_dir=opendir($directory); // Mở thư mục hiện tại
while ($file=readdir($read_dir)) {
$filepath=$directory.'/'.$file;
if ($detect_errors_only && $virus_detected) {
exit;
}
if (is_dir($filepath)) {
// Thư mục
if ( ($file<>'.') && ($file<>'..') ) {
check_dir($filepath,$level);
}
}
else {
if (is_file($filepath)) {
// Tập
if ( (is_readable($filepath) ) && (!stristr(IGNORE_EXTENSIONS, findexts($file))) ) {
if ((filesize($filepath)< MAX_SIZE) && (filemtime($filepath)>IGNORE_BEFORE) ){
$fileentry=$directory.'/'.$file.' - '.date('j F Y H:i',filemtime($filepath));
$filestring=file_get_contents($filepath);
$found=stripos($filestring,Keyword); // PHP 5 ONLY
$found=stristr($filestring,Keyword);flush();
if ($found==false) {
if ( (!$detect_errors_only) && (!$all) ) {
echo($filepath.' <font color=#FFFFFF>OK</font><br/>');
}
}
else {
if ($file=='scan_file.php'){
$detected_Keyword_in_test_script=true;
}
else {
$virus_detected=true;
if ($detect_errors_only) {
echo('<b style="color:#F00">Tập tin đề nghị phát hiện</b><br/>');
}
else {
echo(TAB.'<b style="color:#F00">'.$fileentry.'</b> - <b style="color:#FFFFF0">Phát hiện</b><br/>');
}
}
}
$found='';
}
else {
if ( (!$detect_errors_only) && (!$all) ) {
echo($filepath.' <b style="color:yellow">NOT CHECKED - File quá lớn</b><br/>');
}
}
}
else {
if ( (!$detect_errors_only) && (!$all) ) {
echo($filepath.' <b style="color:yellow">NOT CHECKED - Không thuộc kiểu tìm kiếm</b><br/>');
}
}
}
else {
}
}
}
closedir($read_dir);
}
$virus_detected=false;
$all=true;
$detect_errors_only=false;
$detected_Keyword_in_test_script=false;
if (isset($_GET['all'])) {
$all=false;
}
if (isset($_GET['detect_errors_only'])) {
$detect_errors_only=true;
}
echo<<<END1
<html>
<head>
<title>Scan Shell v1.1</title>
<style>
body {
font-family:arial;
}
</style>
</head>
<body bgcolor=black text=blue size=2>
END1;
?>
<div style="border-style: solid; border-width: 1px; padding-left: 4px; padding-right: 4px; padding-top: 1px; padding-bottom: 1px">
<h1>Truy xuất từ khóa "<?echo Keyword?>" trong hệ thống !</h1>
Bỏ qua lỗi file : <font color=yellow><?echo IGNORE_EXTENSIONS?>.</font><br/>
Bỏ qua file vượt quá : <font color=yellow><?echo MAX_SIZE?> bytes.</font><br/>
Tìm kiếm file trước ngày :<font color=yellow> <?echo date('j F Y',IGNORE_BEFORE)?>.</font><br/><br></div>
<br/><br>[<a href="<?echo $shell?>?all">Hiển thị tất cả?</a>]
<br/><br/> <br/>
<?
if ($all) {
echo('<font color=yellow>List File</font><br/>');
}
check_dir($folder,0);
if ($virus_detected) {
echo('<br/><b style="color:#f00">Tìm kiếm thành công!</b><br> <br/>');
}
else {
echo('<br/><b style="color:#f00">Không có file chứa Key Word!</b><br> <br/>');
}
?>
</body>
</html>
<?
}
?>
<b><font color=red>[Chỉ có thành viên mới xem link được. <a href="register.php"> Nhấp đây để đăng ký thành viên......</a>]</font></b>
<b><font color=red>[Chỉ có thành viên mới xem link được. <a href="register.php"> Nhấp đây để đăng ký thành viên......</a>]</font></b>
<b><font color=red>[Chỉ có thành viên mới xem link được. <a href="register.php"> Nhấp đây để đăng ký thành viên......</a>]</font></b>
<b><font color=red>[Chỉ có thành viên mới xem link được. <a href="register.php"> Nhấp đây để đăng ký thành viên......</a>]</font></b>
<b><font color=red>[Chỉ có thành viên mới xem link được. <a href="register.php"> Nhấp đây để đăng ký thành viên......</a>]</font></b>
Chưa kịp làm cái phân trang :D
<b><font color=red>[Chỉ có thành viên mới xem link được. <a href="register.php"> Nhấp đây để đăng ký thành viên......</a>]</font></b>
Code đã được edit style html, không đụng chạm gì đến code php gốc, không có chức năng gì mới, webshop thì do bachugacon122 code.
Không dám nói là code sạch 100% nhưng mình đã dùng rồi và không gặp sự cố gì nên chắc cũng tầm 96,69% 8-x. Nếu bạn cài theo đúng hướng dẫn mà vẫn bị lỗi hay bạn bị hack web thì mình không chịu trách nhiệm nhé vì mình chỉ edit style không đụng chạm gì đến code
Các bạn muốn dùng thì dùng mình không tiếp gạch đá :D. Riêng mình vẫn thích dùng webshop này hơn :3. Nghe nói webshop của meocon dính lỗi SQli 8-}.
Link download: Không share nữa code không sạch :( Các bạn thông cảm :| (Bảo gồm full code + data + hướng dẫn cài đặt)
Vui lòng click nút "Thanks" để thấy pass giải nén.
pass unrar: trachpro
<b><font color=red>[Chỉ có thành viên mới xem link được. <a href="register.php"> Nhấp đây để đăng ký thành viên......</a>]</font></b>
Bonus thêm hướng dẫn scan shell trong mọi code và xóa bỏ.
UP lên root rồi chạy cái này tìm theo từ khóa. Phát hiện cái nào truy cập vào cái đó thử trước nếu thấy là shell thì xóa bỏ là xong
<?php
/************************************************** *******
- Tool Scan shell
- Edit by : GraceH
************************************************** ********/
error_reporting (0); // Mở báo lỗi
ini_set("memory_limit","2000M");
ini_set("safe_mode","off");
<b><font color=red>[Chỉ có thành viên mới xem link được. <a href="register.php"> Nhấp đây để đăng ký thành viên......</a>]</font></b>
if (!$safe_mode)
set_time_limit(0);
<b><font color=red>[Chỉ có thành viên mới xem link được. <a href="register.php"> Nhấp đây để đăng ký thành viên......</a>]</font></b>
{
?>
<html>
<head>
<meta <b><font color=red>[Chỉ có thành viên mới xem link được. <a href="register.php"> Nhấp đây để đăng ký thành viên......</a>]</font></b>"content-type" content="text/html; charset=utf-8" />
<title>Scan Shell</title>
<style>
body {
font-family:arial;
}
</style>
</head>
<body bgcolor=black text=blue size=2><center>
<form method='post' action=''>
<div style="border-style: solid; border-width: 1px; padding-left: 4px; padding-right: 4px; padding-top: 1px; padding-bottom: 1px">
<h1>Scan Shell - v1.1</h1>
<div> Folder: <input type='text' size=70 name='folder' value='<?echo $_SERVER['DOCUMENT_ROOT']?>/'/></div>
<div> KeyWord: <input type='text' size=70 name='key' value='base64_decode'/></div>
<p><input type='submit' name='submit' value='Tìm kiếm' /></p> </div>
<div align=left><br>Step 1: Nhập đường dẫn thư mục cần scan</div>
<div align=left>Step 2: Nhập từ khóa cần tìm</div>
</form>
<br><br>
---------------------------------------------------------------------------------
</br>GraceH<br>---------------------------------------------------------------------------------
</center>
</body>
</html>
<?
}
else
{
if ($_POST['folder']) $folder = $_POST['folder']; else $folder = $_SERVER['DOCUMENT_ROOT'];
define('Keyword',$_POST['key']); // Tìm kiếm từ khóa
define('TAB'," ");
define('IGNORE_EXTENSIONS',"jpg pdf zip psd doc gif swf xls gz txt"); // Không tìm những file
define("MAX_SIZE",1024*1024*1024); // Size tối đa
define("IGNORE_BEFORE", strtotime('2009-08-01') ); // Tìm File trước ngày
$shell = $_SERVER["PHP_SELF"];
function findexts($filename)
{
$filename = strtolower($filename) ;
$exts = split("[/\\.]", $filename) ;
$n = count($exts)-1;
$exts = $exts[$n];
return strtolower($exts);
}
function check_dir($directory,$level) {
global $virus_detected, $all, $detect_errors_only, $detected_Keyword_in_test_script;
$indent='';
for ($count=0;$count<$level;$count++) {
$indent.=TAB;
}
$level++;
$read_dir=opendir($directory); // Mở thư mục hiện tại
while ($file=readdir($read_dir)) {
$filepath=$directory.'/'.$file;
if ($detect_errors_only && $virus_detected) {
exit;
}
if (is_dir($filepath)) {
// Thư mục
if ( ($file<>'.') && ($file<>'..') ) {
check_dir($filepath,$level);
}
}
else {
if (is_file($filepath)) {
// Tập
if ( (is_readable($filepath) ) && (!stristr(IGNORE_EXTENSIONS, findexts($file))) ) {
if ((filesize($filepath)< MAX_SIZE) && (filemtime($filepath)>IGNORE_BEFORE) ){
$fileentry=$directory.'/'.$file.' - '.date('j F Y H:i',filemtime($filepath));
$filestring=file_get_contents($filepath);
$found=stripos($filestring,Keyword); // PHP 5 ONLY
$found=stristr($filestring,Keyword);flush();
if ($found==false) {
if ( (!$detect_errors_only) && (!$all) ) {
echo($filepath.' <font color=#FFFFFF>OK</font><br/>');
}
}
else {
if ($file=='scan_file.php'){
$detected_Keyword_in_test_script=true;
}
else {
$virus_detected=true;
if ($detect_errors_only) {
echo('<b style="color:#F00">Tập tin đề nghị phát hiện</b><br/>');
}
else {
echo(TAB.'<b style="color:#F00">'.$fileentry.'</b> - <b style="color:#FFFFF0">Phát hiện</b><br/>');
}
}
}
$found='';
}
else {
if ( (!$detect_errors_only) && (!$all) ) {
echo($filepath.' <b style="color:yellow">NOT CHECKED - File quá lớn</b><br/>');
}
}
}
else {
if ( (!$detect_errors_only) && (!$all) ) {
echo($filepath.' <b style="color:yellow">NOT CHECKED - Không thuộc kiểu tìm kiếm</b><br/>');
}
}
}
else {
}
}
}
closedir($read_dir);
}
$virus_detected=false;
$all=true;
$detect_errors_only=false;
$detected_Keyword_in_test_script=false;
if (isset($_GET['all'])) {
$all=false;
}
if (isset($_GET['detect_errors_only'])) {
$detect_errors_only=true;
}
echo<<<END1
<html>
<head>
<title>Scan Shell v1.1</title>
<style>
body {
font-family:arial;
}
</style>
</head>
<body bgcolor=black text=blue size=2>
END1;
?>
<div style="border-style: solid; border-width: 1px; padding-left: 4px; padding-right: 4px; padding-top: 1px; padding-bottom: 1px">
<h1>Truy xuất từ khóa "<?echo Keyword?>" trong hệ thống !</h1>
Bỏ qua lỗi file : <font color=yellow><?echo IGNORE_EXTENSIONS?>.</font><br/>
Bỏ qua file vượt quá : <font color=yellow><?echo MAX_SIZE?> bytes.</font><br/>
Tìm kiếm file trước ngày :<font color=yellow> <?echo date('j F Y',IGNORE_BEFORE)?>.</font><br/><br></div>
<br/><br>[<a href="<?echo $shell?>?all">Hiển thị tất cả?</a>]
<br/><br/> <br/>
<?
if ($all) {
echo('<font color=yellow>List File</font><br/>');
}
check_dir($folder,0);
if ($virus_detected) {
echo('<br/><b style="color:#f00">Tìm kiếm thành công!</b><br> <br/>');
}
else {
echo('<br/><b style="color:#f00">Không có file chứa Key Word!</b><br> <br/>');
}
?>
</body>
</html>
<?
}
?>