asd
Posted cs2612109
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了asd相关的知识,希望对你有一定的参考价值。
import mmap
import contextlib
from Evtx.Evtx import FileHeader
from Evtx.Views import evtx_file_xml_view
from xml.dom import minidom
def MyFun():
EvtxPath = "C:\Windows\System32\winevt\Logs\Security.evtx"
with open(EvtxPath,‘r‘) as f:
with contextlib.closing(mmap.mmap(f.fileno(),0,access=mmap.ACCESS_READ)) as buf:
fh = FileHeader(buf,0)
for xml, record in evtx_file_xml_view(fh):
# #只输出事件ID为4624的内容
# InterestEvent(xml,4624)
# print ("")
print("xml:,record:".format(xml,record))
# 过滤掉不需要的事件,输出感兴趣的事件
# def InterestEvent(xml,EventID):
# pass
# # xmldoc = minidom.parseString(xml)
# # # 获取EventID节点的事件ID
# # booknode=root.getElementsByTagName(‘event‘)
# # for booklist in booknode:
# bookdict=
# bookdict[‘id‘]=booklist.getAttribute(‘id‘)
# bookdict[‘head‘]=booklist.getElementsByTagName(‘head‘)[0].childNodes[0].nodeValue.strip()
# bookdict[‘name‘]=booklist.getElementsByTagName(‘name‘)[0].childNodes[0].nodeValue.strip()
# bookdict[‘number‘]=booklist.getElementsByTagName(‘number‘)[0].childNodes[0].nodeValue.strip()
# bookdict[‘page‘]=booklist.getElementsByTagName(‘page‘)[0].childNodes[0].nodeValue.strip()
# if EventID == eventID:
# print (xml)
if __name__ == ‘__main__‘:
MyFun()
以上是关于asd的主要内容,如果未能解决你的问题,请参考以下文章
rescue1.asd文件怎么恢复成word word07打不开 说是格式不支持
如果可能的话,Java如何使用reduce函数将两个数组减少/合并为一个?