大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。
Jetbrains全系列IDE稳定放心使用
# 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()
相关标签:网站挂马
本文原创发布php中文网,转载请注明出处,感谢您的尊重!
相关文章
相关视频
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/187497.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...