首页 > 代码库 > perl版 Webshell存活检测
perl版 Webshell存活检测
原理:
检测url返回状态即可
源码:
1 #!c:\\perl\\bin\\perl.exe 2 use warnings; 3 use strict; 4 use LWP::UserAgent; 5 $| = 1; 6 print "---------------------------------------------------------\n"; 7 print "| Webshell online check v1.0 |\n"; 8 print "---------------------------------------------------------\n"; 9 print "| |\n"; 10 print ‘| Power by :FireC@t |‘."\n"; 11 print "| bbs:www.script-toolf.info |\n"; 12 print "| |\n"; 13 print "---------------------------------------------------------\n"; 14 my $ua = LWP::UserAgent->new(); 15 $ua->timeout(5); 16 my $ok = ‘OK‘; 17 my $false = ‘False‘; 18 while(1){ 19 print "---------------------------------------------------------\n"; 20 open FILE, "<", "webshell.txt" or die "webshell file open error:$!\n"; 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 --> $_\n"; 28 }else{ 29 print " No --> $_\n"; 30 } 31 } 32 close FILE; 33 print "---------------------------------------------------------\n"; 34 print "Ctrl+c to exit\nThe Next Check after 30sec please waite.....\n"; 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路径
#
#
perl版 Webshell存活检测
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。