• perl版 Webshell存活检测


    原理:
    检测url返回状态即可

    源码:

     1 #!c:\perl\bin\perl.exe
     2 use warnings;
     3 use strict;
     4 use LWP::UserAgent;
     5 $| = 1;
     6 print "---------------------------------------------------------
    ";
     7 print "|              Webshell online check v1.0               |
    ";
     8 print "---------------------------------------------------------
    ";
     9 print "|                                                       |
    ";
    10 print '|              Power by :FireC@t                        |'."
    ";
    11 print "|              bbs:www.script-toolf.info                |
    ";
    12 print "|                                                       |
    ";
    13 print "---------------------------------------------------------
    ";
    14 my $ua = LWP::UserAgent->new();
    15 $ua->timeout(5);
    16 my $ok = 'OK';
    17 my $false = 'False';
    18 while(1){
    19     print "---------------------------------------------------------
    ";
    20     open FILE, "<", "webshell.txt" or die "webshell file open error:$!
    ";
    21     foreach(<FILE>){
    22         chomp;
    23         if($_ !~ m#^http#i){$_ = 'http://'.$_;}
    24         my $req = HTTP::Request->new(GET => "$_");
    25         my $rep = $ua->request($req);
    26         if($rep->status_line =~ /200/){
    27             print "Yes --> $_
    ";
    28         }else{
    29             print " No --> $_
    ";
    30         }
    31     }
    32     close FILE;
    33     print "---------------------------------------------------------
    ";
    34     print "Ctrl+c to exit
    The Next Check after 30sec please waite.....
    ";
    35     sleep(30);
    36     system('cls');
    37     #system('clear');
    38 }
    39  
    40 print "press any key to continue";
    41 getc();

    #等有时间优化一下
    #注意, 这个是用于win版本, 因为开头的#!路径, 还有就是system(‘cls’)用于WIN, 如果是linux的话
    #请修改system(‘cls’)为system(‘clear’)
    #再把开头的#!c:\perl\bin\perl.exe修改为相应的perl路径
    #
    #

  • 相关阅读:
    MicXP程序爱好者
    cnblogs上的mysql学习心得
    iwebship 购物系统 PHP lamp环境
    可以购买的网址
    模板网址
    学习ecshop 教程网址
    ecshop数据库操作函数
    yzoj1568: 数字组合 题解
    yzoj1891 最优配对问题 题解
    yzoj1985 最长公共单调上升子序列 题解
  • 原文地址:https://www.cnblogs.com/perl6/p/6120058.html
Copyright © 2020-2023  润新知