找回密码
 立即注册
CeraNetworksBGVM服务器主机交流IP归属甄别会员请立即修改密码
查看: 14|回复: 0

检测网站挂马程序(Python)

[复制链接]

81

主题

8

回帖

665

积分

高级会员

积分
665
发表于 2023-11-3 20:34:58 | 显示全部楼层 |阅读模式
系统管理员通常从svn/git中检索代码,部署站点后通常首先会生成该站点所有文件的MD5值,如果上线后网站页面内容被篡改(如挂马)等,可以比对之前生成MD5值快速查找去那些文件被更改,为了使系统管理员第一时间发现,可结合crontab或nagios等工具。

程序测试如下:
[ol]
  • # python check_change.py
  •     Usage: python check_change.py update /home/wwwroot
  •            python check_change.py check /home/wwwroot
  • # python check_change.py update /data/www #生成站点的md5值
  • # echo ' ' > /data/www/sitemap.html #测试清空文件
  • # rm -rf /data/www/sitemap.xml #测试删除文件
  • # python check_change.py check /data/www  #查找那些文件被篡改
  • /data/www/sitemap.xml
  • /data/www/sitemap.html[/ol]复制代码
    代码如下(check_change.py):

    [ol]
  • #!/usr/bin/env python  
  •   
  • import os,sys,subprocess  
  •   
  • def update(path):  
  •     f = open(file,'w')  
  •     for root,dirs,files in os.walk(path):  
  •         for name in files:  
  •             line = os.path.join(root, name)  
  •             (stdin,stderr) = subprocess.Popen(['md5sum',line],stdout=subprocess.PIPE).communicate()  
  •             f.write(stdin)  
  •     f.close()  
  •   
  • def check(path):  
  •     f = open(file,'r')  
  •     for line in f:  
  •         check_ok = """echo '%s' | md5sum -c > /dev/null 2>&1""" % line  
  •         #print check_ok  
  •         if not subprocess.call(check_ok, shell = True) == 0:  
  •             abnormal = line.split()  
  •             print abnormal[1]  
  •     f.close()  
  •   
  • def Usage():  
  •     print '''
  •     Usage: python %s update /home/wwwroot
  •            python %s check /home/wwwroot
  •     ''' % (sys.argv[0],sys.argv[0])  
  •     sys.exit()  
  •   
  • if len(sys.argv) != 3:  
  •     Usage()  
  •   
  • file = 'file.key'  
  • model = sys.argv[1]  
  • path = sys.argv[2]  
  •   
  • if os.path.exists(path) == False:  
  •     print "\033[;31mThe directory or file does not exist\033[0m"  
  •     sys.exit()  
  • elif model == 'update':  
  •     update(path)  
  • elif model == 'check':  
  •     check(path)  
  • else:  
  •     Usage()  [/ol]复制代码
  • 回复

    使用道具 举报

    您需要登录后才可以回帖 登录 | 立即注册

    本版积分规则

    Archiver|手机版|小黑屋|HS2V主机综合交流论坛

    GMT+8, 2024-4-29 15:21 , Processed in 0.043492 second(s), 3 queries , Gzip On, Redis On.

    Powered by Discuz! X3.5

    © 2001-2023 Discuz! Team.

    快速回复 返回顶部 返回列表