手机
当前位置:查字典教程网 >脚本专栏 >python >用Python和MD5实现网站挂马检测程序
用Python和MD5实现网站挂马检测程序
摘要:一、程序测试复制代码代码如下:#pythoncheck_change.pyUsage:pythoncheck_change.pyupdate...

一、程序测试

复制代码 代码如下:# 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 "33[;31mThe directory or file does not exist33[0m"

sys.exit()

elif model == 'update':

update(path)

elif model == 'check':

check(path)

else:

Usage()

【用Python和MD5实现网站挂马检测程序】相关文章:

python实现网页链接提取的方法分享

python调用短信猫控件实现发短信功能实例

使用python检测手机QQ在线状态的脚本代码

使用python实现baidu hi自动登录的代码

python数据结构树和二叉树简介

Python实现的金山快盘的签到程序

使用 Python 获取 Linux 系统信息的代码

Cython 三分钟入门教程

python 算法 排序实现快速排序

Python实现扫描指定目录下的子目录及文件的方法

精品推荐
分类导航