search

  1. header('content-type:text/html;charset=gbk');
  2. set_time_limit(0);//Prevent timeout
  3. /**
  4. *
  5. * Enhanced version of php directory scanning monitoring
  6. *
  7. * @version 1.0
  8. *
  9. The following variables need to be set manually before use
  10. *
  11. **/
  12. /*== =================== Program configuration=====================*/
  13. $pass="test ";//Set password
  14. $jkdir="."; //Set the directory for monitoring and scanning. The current directory is '.' and the upper-level directory is '..'. You can also set an absolute path without adding a slash after it. , the default is the current directory
  15. $logfilename="./m.log";//Set the path to store the log, which can be placed anywhere
  16. $exclude=array('data','images');//Exclude the directory
  17. $danger='eval|cmd|passthru|gzuncompress';//Set the dangerous function to be found to determine whether it is a Trojan file
  18. $suffix='php|inc';//Set the suffix of the file to be scanned
  19. /*== =================== End of configuration=====================*/
  20. $filename=$ _GET['filename'];
  21. $check=$_GET['check'];
  22. $jumpoff=false;
  23. $url = $_SERVER['PHP_SELF'];
  24. $thisfile = end(explode('/',$ url));
  25. $jump="{$thisfile}|".implode('|',$exclude);
  26. $jkdir_num=$file_num=$danger_num=0;
  27. define('M_PATH',$jkdir);
  28. define('M_LOG',$logfilename);
  29. if ($check=='check')
  30. {
  31. $safearr = explode("|",$jump);
  32. $start_time=microtime(true);
  33. safe_check($ jkdir);
  34. $end_time=microtime(true);
  35. $total=$end_time-$start_time;
  36. $file_num=$file_num-$jkdir_num;
  37. $message= "Number of files:".$file_num;
  38. $message.= " Number of folders: ".$jkdir_num;
  39. $message.= " Number of suspicious files: ".$danger_num;
  40. $message.= " Execution time: ".$total;
  41. echo $message;
  42. }else{
  43. if ($_GET['m']=="del") Delete();//Process file deletion
  44. //Read file content
  45. if(isset($_GET['readfile'])){
  46. //Output view Password, after the password is verified correctly, the file content will be output
  47. if(empty($_POST['passchack'])){
  48. echo"
    "
  49. . "
  50. . " "
  51. . "
  52. "
  53. . " "
  54. . "
  55. "
  56. ."";
  57. exit;
  58. }elseif(isset($_POST['passchack'])&&$_POST['passchack' ]==$pass){
  59. $code=file_get_contents($_GET['readfile']);
  60. echo"";
  61. exit;
  62. }else{
  63. exit;
  64. }
  65. }else{
  66. record_md5(M_PATH );
  67. if(file_exists(M_LOG)){
  68. $log = unserialize(file_get_contents(M_LOG));
  69. }else{
  70. $log = array();
  71. }
  72. if($_GET['savethis']== 1){
  73. //Save the current file md5 to the log file
  74. @unlink(M_LOG);
  75. file_put_contents(M_LOG,serialize($file_list));
  76. echo "Save successfully! Click to return";
  77. exit;
  78. }
  79. if(empty($log)){
  80. echo "No log file has been created yet! Click [Save Current] to create a log file! ";
  81. }else{
  82. if($file_list==$log){
  83. echo "No changes have been made to this folder!";
  84. }else{
  85. if(count($file_list) > 0 ){
  86. foreach($file_list as $file => $md5){
  87. if(!isset($log[$file])){
  88. echo "新增文件:".$file.""." 创建时间:".date("Y-m-d H:i:s",filectime($file))." 修改时间:".date("Y-m-d H:i:s",filemtime($file))." 源码删除
    ";
  89. }else{
  90. if($log[$file] != $md5){
  91. echo "修改文件:".$file.""." 创建时间:".date("Y-m-d H:i:s",filectime($file))." 修改时间:".date("Y-m-d H:i:s",filemtime($file))." 源码
    ";
  92. unset($log[$file]);
  93. }else{
  94. unset($log[$file]);
  95. }
  96. }
  97. }
  98. }
  99. if(count($log)>0){
  100. foreach($log as $file => $md5){
  101. echo "删除文件:".$file."
    ";
  102. }
  103. }
  104. }
  105. }
  106. }
  107. }
  108. //计算md5
  109. function record_md5($jkdir){
  110. global $file_list,$exclude;
  111. if(is_dir($jkdir)){
  112. $file=scandir($jkdir);
  113. foreach($file as $f){
  114. if($f!='.' && $f!='..' && !in_array($f, $exclude)){
  115. $path = $jkdir.'/'.$f;
  116. if(is_dir($path)){
  117. record_md5($path);
  118. }else{
  119. $file_list[$path]=md5_file($path);
  120. }
  121. }
  122. }
  123. }
  124. }
  125. function Safe_Check($jkdir)//遍历文件
  126. {
  127. global $danger ,$suffix ,$jkdir_num ,$file_num ,$danger_num;
  128. ) or die('文件夹不存在') ;
  129. while ($file=$hand->read())
  130. {
  131. $filename=$jkdir.'/'.$file;
  132. if (!$jumpoff) {
  133. if(Jump($filename))continue;
  134. }
  135. if(@is_dir($filename) && $file != '.' && $file!= '..'&& $file!='./..')
  136. { $jkdir_num++;
  137. Safe_Check($filename);
  138. }
  139. if (preg_match_all ("/.($suffix)/i",$filename,$out))
  140. {
  141. $str='';
  142. $fp = @fopen($filename,'r')or die('没有权限');
  143. while(!feof($fp))
  144. {
  145. $str .= fgets($fp,1024);
  146. }
  147. fclose($fp);
  148. if( preg_match_all ("/($danger)[ rnt]{0,}([[(])/i",$str,$out))
  149. {
  150. echo "可疑文件:{$filename}"." 创建时间:".date("Y-m-d H:i:s",filectime($filename))." 修改时间:".date("Y-m-d H:i:s",filemtime($filename))." 查看代码 删除
    ";
  151. $danger_num++;
  152. }
  153. }
  154. $file_num++;
  155. }
  156. }
  157. function Edit()//查看可疑文件
  158. {
  159. global $filename;
  160. $filename = str_replace("..","",$filename);
  161. $file = $filename;
  162. $content = "";
  163. if(is_file($file))
  164. {
  165. $fp = fopen($file,"r")or die('没有权限');
  166. $content = fread($fp,filesize($file));
  167. fclose($fp);
  168. $content = htmlspecialchars($content);
  169. }
  170. echo "rn";
  171. exit();
  172. }
  173. function Delete()//删除文件
  174. { global $filename,$pass;
  175. if(empty($_POST['passchack'])){
  176. echo"
    "
  177. . "
  178. . " "
  179. . "
  180. "
  181. . " "
  182. . "
  183. "
  184. ."";
  185. exit;
  186. }elseif(isset($_POST['passchack'])&&$_POST['passchack']==$pass){
  187. (is_file($filename))?($mes=unlink($filename)?'Delete successfully': 'Failed to delete view permission'):'';
  188. echo $mes;
  189. exit();
  190. }else{
  191. echo 'Wrong password! ';
  192. exit;
  193. }
  194. }
  195. function Jump($file)//Skip file
  196. {
  197. global $jump,$safearr;
  198. if($jump != '')
  199. {
  200. foreach($safearr as $ v)
  201. {
  202. if($v=='') continue;
  203. if( eregi($v,$file) ) return true ;
  204. }
  205. }
  206. return false;
  207. }
  208. ?>
  209. [View file changes]|[Save current file fingerprint]|[Scan suspicious files]
Copy code

PHP, Web


Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

Discover File Downloads in Laravel with Storage::downloadDiscover File Downloads in Laravel with Storage::downloadMar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

How to Register and Use Laravel Service ProvidersHow to Register and Use Laravel Service ProvidersMar 07, 2025 am 01:18 AM

Laravel's service container and service providers are fundamental to its architecture. This article explores service containers, details service provider creation, registration, and demonstrates practical usage with examples. We'll begin with an ove

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.