Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

ddos_kill.htm 9.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. {include file="public/layout"/}
  2. <body style="background-color: rgb(255, 255, 255); overflow: auto; cursor: default; -moz-user-select: inherit;min-width: auto;">
  3. <style>
  4. body{margin:0px;}
  5. body,th,td{font: 13px Arial,Tahoma;line-height: 16px;}
  6. .alt1 td{border-top:1px solid #fff;border-bottom:1px solid #ddd;background:#fff;padding:10px 10px 10px 5px;border-right: 1px solid #ddd;}
  7. .alt2 td{border-top:1px solid #fff;border-bottom:1px solid #ddd;background:#fff;padding:10px 10px 10px 5px;border-right: 1px solid #ddd;vertical-align: middle;}
  8. .focus td{border-top:1px solid #fff;border-bottom:1px solid #ddd;background:#F4FCFA;padding:10px 10px 10px 5px;border-right: 1px solid #ddd;}
  9. .head th{border-top:1px solid #fff;border-bottom:1px solid #ddd;background:#e9e9e9;padding:10px 10px 10px 5px;font-weight:bold;}
  10. .head th span{font-weight:normal;}
  11. </style>
  12. <div id="append_parent"></div>
  13. <div id="ajaxwaitid"></div>
  14. <div class="page">
  15. <div class="flexigrid">
  16. <!-- 操作说明 -->
  17. <div id="explanation" class="explanation" style="color: rgb(44, 188, 163); background-color: rgb(237, 251, 248); margin-bottom: 10px;">
  18. <div id="checkZoom" class="title"><i class="fa fa-lightbulb-o"></i>
  19. <h4 title="提示相关设置操作时应注意的要点">操作提示</h4>
  20. <span title="收起提示" id="explanationZoom" style="display: block;"></span>
  21. </div>
  22. <ul>
  23. <li>扫描网站是否存在DOS攻击脚本php文件、可疑恶意木马文件等</li>
  24. <li>默认不扫描图片目录,可安装【易优系统助手】插件单独扫码图片</li>
  25. </ul>
  26. </div>
  27. <div style="margin:0px auto;border: 1px solid #ccc;">
  28. <table border="0" cellpadding="0" cellspacing="0" width="100%">
  29. <tbody>
  30. <tr class="head">
  31. <th>安全扫描</th>
  32. </tr>
  33. </tbody>
  34. </table>
  35. <br>
  36. <table width="100%" border="0" cellspacing="0" cellpadding="0">
  37. <tbody>
  38. <tr>
  39. <th style="vertical-align:middle; padding-left:5px;">网站存放路径:
  40. {$root_path}
  41. <input type="hidden" name="path" id="path" value="{$root_path}">
  42. &nbsp;&nbsp;
  43. <a href="javascript:void(0);" class="ncap-btn ncap-btn-green" onclick="scan();">开始扫描</a>
  44. </th>
  45. </tr>
  46. </tbody>
  47. </table>
  48. <br>
  49. <div id="div_scanlist" style="display: ;">
  50. <div style="padding:10px; background-color:#F4F4F4">扫描:<span id="span_scanned">0</span>&nbsp;文件&nbsp;&nbsp;|&nbsp;&nbsp;发现:<span id="span_count">0</span>&nbsp;行可疑恶意代码&nbsp;&nbsp;|&nbsp;&nbsp;耗时:<span id="span_spent">0</span>&nbsp;&nbsp;|&nbsp;&nbsp;请管理员手动处理以下可疑恶意文件</div>
  51. <table width="100%" border="0" cellspacing="0" cellpadding="0">
  52. <thead>
  53. <tr class="head">
  54. <th width="30" style="text-align: center;">No.</th>
  55. <th>可疑恶意文件</th>
  56. <th width="100">所在行号</th>
  57. <th width="500">详细代码片段</th>
  58. <th width="30">操作</th>
  59. </tr>
  60. </thead>
  61. <tbody id="tr_scan_html">
  62. <tr>
  63. <td class="no-data" style="width: auto !important;" align="center" axis="col0" colspan="5">
  64. <i class="fa fa-exclamation-circle"></i>请点击<a href="javascript:void(0);" onclick="scan();">开始扫描</a>
  65. </td>
  66. </tr>
  67. </tbody>
  68. </table>
  69. <center>
  70. <div style="margin: 20px 0px;">
  71. 病毒库持续更新,扫描结果仅供排查
  72. </div>
  73. </center>
  74. </div>
  75. </div>
  76. </div>
  77. </div>
  78. <script>
  79. // scan();
  80. function scan()
  81. {
  82. var timer = '';
  83. var loading = layer.msg(
  84. '<span id="progress_speed">准备扫描</span>...&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;请勿刷新页面',
  85. {
  86. time: 3600000, //1小时后后自动关闭
  87. shade: [0.2] //0.1透明度的白色背景
  88. });
  89. //loading层
  90. var index = layer.load(2, {
  91. shade: [0.1,'#fff'] //0.1透明度的白色背景
  92. });
  93. $.ajax({
  94. type: "POST",
  95. url: "{:url('Security/ddos_scan')}",
  96. data: {_ajax:1},
  97. dataType: 'json',
  98. beforeSend: function(xhr) {
  99. var html = '';
  100. html += '<tr>';
  101. html += ' <td class="no-data" style="width: auto !important;" align="center" axis="col0" colspan="5">';
  102. html += ' <i class="fa fa-exclamation-circle"></i>正在扫描中';
  103. html += ' </td>';
  104. html += '</tr>';
  105. $('#tr_scan_html').html(html);
  106. $('#div_scanlist').show();
  107. progressd(0);
  108. },
  109. success: function (res) {
  110. if(res.code == 1){
  111. $('#progress_speed').html('已扫描<font id="progress_num">100</font>%');
  112. setTimeout(function(){
  113. layer.closeAll();
  114. $('#span_scanned').html(res.data.scanned);
  115. $('#span_count').html(res.data.num_ky);
  116. $('#span_spent').html(res.data.spent);
  117. $('#tr_scan_html').html(res.data.html);
  118. showErrorAlert(res.msg, 6);
  119. },1000);
  120. }else{
  121. layer.closeAll();
  122. showErrorAlert(res.msg);
  123. }
  124. },
  125. error:function(e){
  126. layer.closeAll();
  127. showErrorAlert(e.responseText);
  128. }
  129. });
  130. }
  131. function progressd(init)
  132. {
  133. $.ajax({
  134. type: "POST",
  135. url: "{:url('Security/ddos_progressd')}",
  136. data: {init:init, _ajax:1},
  137. dataType: 'json',
  138. success: function (res) {
  139. if(res.code == 1){
  140. if (res.data.progress > 0) {
  141. $('#span_scanned').html(res.data.file_num);
  142. $('#span_count').html(res.data.file_num_ky);
  143. $('#span_spent').html('计时中');
  144. $('#tr_scan_html').html(res.data.html);
  145. $('#div_scanlist').show();
  146. var progress_num = $('#progress_num').val();
  147. if (res.data.progress > progress_num || progress_num == undefined) {
  148. $('#progress_speed').html('已扫描<font id="progress_num">' + res.data.progress + '</font>%');
  149. }
  150. }
  151. if (100 > res.data.progress) {
  152. progressd(1);
  153. }
  154. }
  155. }
  156. });
  157. }
  158. function delfile(obj)
  159. {
  160. title = '确认删除?';
  161. btn = ['确定', '取消']; //按钮
  162. layer.confirm(title, {
  163. shade: layer_shade,
  164. area: ['480px', '190px'],
  165. move: false,
  166. title: '提示',
  167. btnAlign:'r',
  168. closeBtn: 3,
  169. btn: btn, //按钮
  170. success: function () {
  171. $(".layui-layer-content").css('text-align', 'left');
  172. }
  173. }, function(){
  174. // 确定
  175. layer_loading('正在处理');
  176. var md5key = $(obj).attr('data-md5key');
  177. $.ajax({
  178. type : 'POST',
  179. url : "{:url('Security/ddos_delfile')}",
  180. data : {md5key:md5key, _ajax:1},
  181. dataType : 'json',
  182. success : function(res){
  183. layer.closeAll();
  184. if(res.code == 1){
  185. $('#tr_scan_html').find('a[data-md5key='+md5key+']').each(function(index, item){
  186. $(item).parent().parent().remove();
  187. });
  188. if ($('#tr_scan_html tr').length == 0) {
  189. var html = '';
  190. html += '<tr>';
  191. html += ' <td class="no-data" style="width: auto !important;" align="center" axis="col0" colspan="5">';
  192. html += ' <i class="fa fa-exclamation-circle"></i>没有发现可疑文件';
  193. html += ' </td>';
  194. html += '</tr>';
  195. $('#tr_scan_html').html(html);
  196. }
  197. layer.msg(res.msg, {icon: 1, time: 500});
  198. }else{
  199. showErrorAlert(res.msg);
  200. }
  201. },
  202. error:function(e){
  203. layer.closeAll();
  204. showErrorAlert(e.responseText);
  205. }
  206. })
  207. }, function(index){
  208. layer.close(index);
  209. return false;// 取消
  210. }
  211. );
  212. }
  213. </script>
  214. {include file="public/footer" /}