Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/alshadex/evtxreader

The Python Windows .evtx log file parser module
https://github.com/alshadex/evtxreader

evtx logging parser pip windows

Last synced: about 1 month ago
JSON representation

The Python Windows .evtx log file parser module

Awesome Lists containing this project

README

        

# Python Evtx Module

Python module for reading Windows Evtx files.

This file holds hard coded offsets from [here](https://github.com/libyal/libevtx/blob/master/documentation/Windows%20XML%20Event%20Log%20%28EVTX%29.asciidoc#file_flags).

## Development

For development, start a venv and do:
```
$ pip3 install -e .
```
This will enable edit mode which is basically a hot reload version.

## Testing
For running pytest, first do:
```
$ pip3 install -e .[test]
```
Then run:
```
$ pytest
```
or
```
$ pytest --file path/to/file.evtx
```