1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
#!/usr/bin/env python
import lxml.etree
from filter_records import get_child
import Evtx.Evtx as evtx
def main():
import argparse
parser = argparse.ArgumentParser(
description="Print the record numbers of EVTX log entries " "that match the given EID."
)
parser.add_argument("evtx", type=str, help="Path to the Windows EVTX file")
parser.add_argument("eid", type=int, help="The EID of records to extract")
args = parser.parse_args()
with evtx.Evtx(args.evtx) as log:
for record in log.records():
try:
node = record.lxml()
except lxml.etree.XMLSyntaxError:
continue
if args.eid != int(get_child(get_child(node, "System"), "EventID").text):
continue
print(record.record_num())
if __name__ == "__main__":
main()
|