Python实现的检测网站挂马程序
作者:mdxy-dxy 时间:2023-11-21 16:39:38
系统管理员通常从svn/git中检索代码,部署站点后通常首先会生成该站点所有文件的MD5值,如果上线后网站页面内容被篡改(如挂马)等,可以比对之前生成MD5值快速查找去那些文件被更改,为了使系统管理员第一时间发现,可结合crontab或nagios等工具。
程序测试如下:
# 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
代码如下(check_change.py):
#!/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()
标签:网站挂马
0
投稿
猜你喜欢
Python图像阈值化处理及算法比对实例解析
2022-08-14 19:32:33
SQL语言基本语句介绍
2008-07-24 13:32:00
js 动态加载事件的几种方法总结
2024-04-22 22:24:42
python如何查看安装了的模块
2022-07-09 18:28:00
可能是最通俗的一篇介绍markdown的文章
2022-08-09 09:48:43
vue中如何引入html静态页面
2023-07-02 17:03:34
Centos MySQL 5.7安装、升级教程
2024-01-19 10:24:03
页面上存在多个FckEditor编辑器的验证方法
2022-07-29 07:00:49
Django框架教程之正则表达式URL误区详解
2021-03-18 13:46:13
django数据模型on_delete, db_constraint的使用详解
2023-02-16 04:48:06
asp伪继承初探_实例代码
2011-04-19 10:32:00
pyqt5圆形label显示打开的摄像头功能
2022-09-16 04:10:21
详细了解 MySQL锁机制
2010-08-08 09:04:00
php快递单号查询接口使用示例
2023-10-25 07:39:55
python使用正则表达式匹配字符串开头并打印示例
2021-07-02 00:52:13
SQL Server Table中XML列的操作代码
2024-01-23 14:21:11
Linux下创建Postgresql数据库的方法步骤
2024-01-29 09:29:19
基于vue-upload-component封装一个图片上传组件的示例
2024-05-10 14:14:42
解决golang中container/list包中的坑
2024-05-21 10:25:42
如何用python处理excel表格
2021-04-21 04:06:55