Closed losynix closed 5 years ago
Hey! Thanks for taking a look :) When I was using this with python (via https://github.com/omerbenamram/pyevtx-rs/), it appears python was lax and didn't care about missing tag!
The issue should be fixed with https://github.com/omerbenamram/evtx/pull/8 (also added a text compare test)
BTW: I'm indeed interested in adding JSON output, I'll need to refactor the parser a bit, probably to flatten the information and feed it to serde, but it's the next thing on my TODO list.
Works great now thanks !
I'm indeed interested in adding JSON output, I'll need to refactor the parser a bit, probably to flatten the information and feed it to serde, but it's the next thing on my TODO list.
Cool, will keep an eye out for that. Thanks again for your work :)
Hi ! Thank you for your work :)
I noticed that somehow the \<Event> tag is never closed:
Shouldn't there be a \</Event> at the end of each record ?
Only gave a quick look at the code and it seems that the last call to visit_close_element (in src/xml_output.rs) returns because eof_reached is already true.
By the way, would you be interested in a json output or it's not in the scope of the project ?