EVTX
This is a parser for the Windows EVTX format.
Note that it is complete as in the sense that it successfully parses a wide variety of samples, but I've yet to implement the full specification.
This parser is implemented using 100% safe rust.
Example usage:
use EvtxParser;
For parallel iteration (uses rayon):
use EvtxParser;
The parallel version is enabled when compiling with feature "multithreading" (enabled by default).
Benchmarking
Initial benchmarking that I've performed indicates that this implementation is relatively fast.
It crunches through a 30MB .evtx file (around 62K records) in around 4 seconds (single threaded).
When using parallel_records, this drops to about 1 second on my machine.
License
Licensed under either of
- Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.