暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

virus_upload.htm 2.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {include file="header.htm" /}
  2. <body class="bodystyle" style="cursor: default; -moz-user-select: inherit; min-width:400px;">
  3. <div class="page" style="min-width: 400px;">
  4. <div style="border: 1px solid rgb(204, 204, 204);padding: 10px;margin: 10px 20px;">
  5. <p style="color: #0C0C0C;font-size: 14px;"><strong>安全建议:</strong></p>
  6. <p>1、本检测uploads目录下是否被人非法上传了存在木马的图片;</p>
  7. </div>
  8. <form class="form-horizontal" id="post_form" action="{:weapp_url('Systemdoctor/Systemdoctor/virus_upload')}" method="post">
  9. <div class="ncap-form-default">
  10. <dl class="row">
  11. <dt class="tit">
  12. <label for="info">&nbsp;</label>
  13. </dt>
  14. <dd class="opt">
  15. <a href="JavaScript:void(0);" class="ncap-btn-big ncap-btn-green" id="submitBtn">开始检测</a>
  16. </dd>
  17. </dl>
  18. </div>
  19. </form>
  20. <div id="virus_files">
  21. <p id="virus_files_p" style="padding-bottom: 10px;"><strong style="font-size: 14px;color: forestgreen;">检测结果:</strong>(结果仅供参考,请人工排查核对,请务必查看源码后才删除非法文件)</p>
  22. </div>
  23. </div>
  24. <script type="text/javascript">
  25. //检查
  26. $("#submitBtn").click(function(){
  27. $("#virus_files_p").siblings().remove();
  28. var url = "{:weapp_url('Systemdoctor/Systemdoctor/virus_channel')}";
  29. var index = layer.open({
  30. type: 2,
  31. title: '开始扫描',
  32. area: ['500px', '300px'],
  33. fix: false,
  34. maxmin: false,
  35. content: url
  36. });
  37. });
  38. // 删除
  39. function delete_uploads_file(obj){
  40. layer.confirm('此操作不可恢复,确认彻底删除?', {
  41. title: false,
  42. btn: ['确定','取消'] //按钮
  43. }, function(){
  44. layer_loading('正在处理');
  45. // 确定
  46. $.ajax({
  47. type : 'post',
  48. url : "{:weapp_url('Systemdoctor/Systemdoctor/delete_uploads_file')}",
  49. data : {filename:$(obj).attr('data-filename'), _ajax:1},
  50. dataType : 'json',
  51. success : function(data){
  52. layer.closeAll();
  53. if(data.code == 1){
  54. layer.msg(data.msg, {icon: 1,time:1500},function () {
  55. $(obj).parent().parent().remove();
  56. });
  57. }else{
  58. layer.alert(data.msg, {icon: 2 ,time:1500,title:false});
  59. }
  60. }
  61. })
  62. }, function(index){
  63. layer.close(index);
  64. });
  65. return false;
  66. }
  67. </script>
  68. {include file="footer.htm" /}