Keine Beschreibung
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

virus_scan.htm 6.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. {include file="header.htm" /}
  2. <body class="bodystyle" style="cursor: default; -moz-user-select: inherit; min-width:400px;">
  3. <style type="text/css">
  4. .ncap-form-default dt.tit {
  5. text-align: left;
  6. width: 0px;
  7. padding-left: 20px;
  8. }
  9. </style>
  10. <div class="page" style="min-width: 400px;">
  11. <div style="border: 1px solid rgb(204, 204, 204);padding: 10px;margin: 10px 20px;">
  12. <p style="color: #0C0C0C;font-size: 14px;"><strong>安全建议:</strong></p>
  13. <p>1、本检测程以开发模式为标准,如果您的网站目录包含其它系统,此检测程序可能会产生错误判断;</p>
  14. </div>
  15. <form class="form-horizontal" id="post_form" action="{:weapp_url('Systemdoctor/Systemdoctor/virus_scan')}" method="post">
  16. <div class="ncap-form-default">
  17. <!-- <dl class="row">
  18. <dt class="tit">
  19. <label for="type">文件类型</label>
  20. </dt>
  21. <dd class="opt">
  22. <input type="text" name="type" value="php|htm" id="type" class="input-txt">
  23. <span class="err"></span>
  24. <p class="notic">要检查的文件类型</p>
  25. 多种文件类型请用"|"符号隔开
  26. </dd>
  27. </dl>
  28. <dl class="row">
  29. <dt class="tit">
  30. <label for="info">代码特征</label>
  31. </dt>
  32. <dd class="opt">
  33. <input type="text" name="info" value="eval|cmd|system|exec" id="info" class="input-txt">
  34. <span class="err"></span>
  35. <p class="notic">特征代码</p>
  36. 多种代码特征请用"|"符号隔开
  37. </dd>
  38. </dl> -->
  39. <dl class="row">
  40. <dt class="tit">
  41. <label for="info">&nbsp;</label>
  42. </dt>
  43. <dd class="opt">
  44. <a href="JavaScript:void(0);" onclick="check_submit()" class="ncap-btn-big ncap-btn-green" id="submitBtn">开始检测</a>
  45. <a href="JavaScript:void(0);" onclick="clear_cache()" class="ncap-btn-big ncap-btn-green" >清空缓存</a>
  46. </dd>
  47. </dl>
  48. </div>
  49. </form>
  50. <div>
  51. <p style="padding-bottom: 10px;"><strong style="font-size: 14px;color: forestgreen;">检测结果:</strong><font color="red">(结果仅供参考,请人工排查核对,请务必通过FTP工具下载,查看源码后才删除非法文件)</font></p>
  52. {notempty name="list"}
  53. {volist name="list" id="vo"}
  54. <div style="display: flex;justify-content:space-between;padding: 3px 0;border-bottom: 1px dotted #B8E6A2;font-size: 12px;width: 50%;">
  55. <div ><font class="red">异常文件</font>:{$vo['filepath']|substr=1}</div>
  56. <div >
  57. {eq name="$Think.const.CONTROLLER_NAME.'@del'|is_check_access" value="1"}
  58. <!--<a class="btn red" style="font-size: 12px;padding: 0;" href="javascript:void(0);" data-filename="{$key}" onClick="delete_file(this);">[删除]</a>-->
  59. <a class="btn" style="font-size: 12px;padding: 0;" href="javascript:void(0);" data-type="{$vo.type}" onClick="look_file(this);">[查看详情]</a>
  60. {/eq}
  61. </div>
  62. </div>
  63. {/volist}
  64. {/notempty}
  65. </div>
  66. </div>
  67. <script type="text/javascript">
  68. // 判断输入框是否为空
  69. function check_submit(){
  70. layer_loading('<font id="loading_tips">开始检测</font>');
  71. $.ajax({
  72. type : 'post',
  73. url : "{:weapp_url('Systemdoctor/Systemdoctor/clear_invalidfile')}",
  74. data : {_ajax:1},
  75. timeout : 360000, // 超时时间设置,单位毫秒 设置了 1小时
  76. dataType : 'json',
  77. success : function(res) {
  78. $('#loading_tips').html('正在扫描');
  79. $('#post_form').submit();
  80. },
  81. error: function(e){
  82. layer.closeAll();
  83. layer.alert(e.responseText, {icon: 2 ,time:1500,title:false});
  84. }
  85. });
  86. }
  87. // 清除缓存
  88. function clear_cache()
  89. {
  90. layer_loading('正在清除');
  91. $.ajax({
  92. url: "{:url('System/clear_cache', ['_ajax'=>1])}",
  93. type: 'post',
  94. dataType: 'JSON',
  95. data: {clearall: 1},
  96. success: function(res){
  97. layer.closeAll();
  98. if (res.code == 1) {
  99. layer.msg(res.msg, {icon: 1,time:1000}, function(){
  100. window.location.reload();
  101. });
  102. } else {
  103. layer.alert(res.msg, {icon: 2 ,time:1500,title:false});
  104. }
  105. },
  106. error: function(e){
  107. layer.closeAll();
  108. layer.alert(e.responseText, {icon: 2 ,time:1500,title:false});
  109. }
  110. });
  111. }
  112. //查看
  113. function look_file(obj){
  114. var type = $(obj).attr('data-type');
  115. layer.confirm(type, {
  116. title: false,
  117. btn: ['确定'] //按钮
  118. });
  119. return false;
  120. }
  121. // 删除
  122. function delete_file(obj){
  123. layer.confirm('此操作不可恢复,请先查看源码再确认彻底删除?', {
  124. title: false,
  125. btn: ['确定','取消'] //按钮
  126. }, function(){
  127. layer_loading('正在处理');
  128. // 确定
  129. $.ajax({
  130. type : 'post',
  131. url : "{:weapp_url('Systemdoctor/Systemdoctor/delete_file')}",
  132. data : {filename:$(obj).attr('data-filename'), _ajax:1},
  133. dataType : 'json',
  134. success : function(res){
  135. layer.closeAll();
  136. if(res.code == 1){
  137. layer.msg(res.msg, {icon: 1,time:500}, function(){
  138. $(obj).parent().parent().remove();
  139. });
  140. }else{
  141. layer.alert(res.msg, {icon: 2 ,time:1500,title:false});
  142. }
  143. },
  144. error: function(e){
  145. layer.closeAll();
  146. layer.alert(e.responseText, {icon: 2 ,time:1500,title:false});
  147. }
  148. })
  149. }, function(index){
  150. layer.close(index);
  151. });
  152. return false;
  153. }
  154. </script>
  155. {include file="footer.htm" /}