python 保存网页快照,python实现文件快照加密保护的方法 -电脑资料

作者:秋风秋雨 字体:[增加 减小] 类型:转载

这篇文章主要介绍了python实现文件快照加密保护的方法,涉及Python文件加密的技巧,可有效防止文件被篡改,需要的朋友可以参考下

本文实例讲述了python实现文件快照加密保护的方法,

这段代码可以对指定的目录进行扫描,包含子目录,对指定扩展名的文件进行SHA-1加密后存储在cvs文件,以防止文件被篡改

调用方法:python snapper.py > todayCheck.csv

# Hello, this is a script. written in Python. See http://www.pyhon.org## Snapper 1.2p## This script. will walk a directory (and its subdirectories) and compute# SHA (Secure Hash Algorithm) for specific files (according to their# extensions) and ouput a CSV file (suited for loading into a spreadsheet# editor,a database or simply comparing with diff or ExamDiff.).## You can redirect the output of this script. to a file.# eg. python snapper.py > todayCheck.csv## This script. can be usefull to check system files tampering.## This script. is public domain. Feel free to reuse it.# The author is:# Sebastien SAUVAGE# # http://sebsauvage.net## More quick & dirty scripts are available at http://sebsauvage.net/python/## Directory to scan and extensions are hardcoded below:directoryStart = r‘c:\windows‘extensionList=[‘.exe‘,‘.dll‘,‘.ini‘,‘.ocx‘,‘.cpl‘,‘.vxd‘,‘.drv‘,‘.vbx‘,‘.com‘,‘.bat‘,‘.src‘, ‘.sys‘,‘.386‘,‘.acm‘,‘.ax‘, ‘.bpl‘,‘.bin‘,‘.cab‘,‘.olb‘,‘.mpd‘,‘.pdr‘,‘.jar‘]import os,string,sha,stat,sysdef snapper ( directoryStart , extensionList ) : os.path.walk( directoryStart, snapper_callback, extensionList )def snapper_callback ( extensionList , directory, files ) : sys.stderr.write(‘Scanning ‘+directory+‘\n‘) for fileName in files: if os.path.isfile( os.path.join(directory,fileName) ) : if string.lower(os.path.splitext(fileName)[1]) in extensionList : filelist.append(fileSHA ( os.path.join(directory,fileName) ))def fileSHA ( filepath ) : sys.stderr.write(‘ Reading ‘+os.path.split(filepath)[1]+‘\n‘) file = open(filepath,‘rb‘) digest = sha.new() data = file.read(65536) while len(data) != 0: digest.update(data) data = file.read(65536) file.close() return ‘"‘+filepath+‘",‘+str(os.stat(filepath)[6])+‘,"‘+digest.hexdigest()+‘"‘sys.stderr.write(‘Snapper 1.1p - http://sebsauvage.net/python/\n‘)filelist = []snapper( directoryStart , extensionList )sys.stderr.write(‘Sorting...\n‘)filelist.sort()filelist.insert(0, ‘"File path","File size","SHA"‘ )sys.stderr.write(‘Printing...\n‘)for line in filelist: print linesys.stderr.write(‘All done.\n‘)

希望本文所述对大家的Python程序设计有所帮助,python实现文件快照加密保护的方法》(https://www.unjs.com)。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值