Parsing Windows Event Logs, is it possible?

Posted by xceph on Stack Overflow See other posts from Stack Overflow or by xceph
Published on 2010-05-25T19:01:13Z Indexed on 2010/05/25 19:11 UTC
Read the original article Hit count: 161

Filed under:
|

Hello, I am doing a little research into the feasibility of a project I have in mind. It involves doing a little forensic work on images of hard drives, and I have been looking for information on how to analyze saved windows event log files.

I do not require the ability to monitor current events, I simply want to be able to view events which have been created, and record the time and application/process which created those events. However I do not have much experience in the inner workings of the windows system specifics, and am wondering if this is possible?

The plan is to create images of a hard drive, and then do the analysis on a second machine. Ideally this would be done in either Java or Python, as they are my most proficient languages.

The main concerns I have are as follows:

Is this information encrypted in anyway?

Are there any existing API for parsing this data directly?

Is there information available regarding the format in which these logs are stored, and how does it differ from windows versions?

This must be possible from analyzing the drive itself, as ideally the installation of windows on the drive would not be running, (as it would be a mounted image on another system)

The closest thing I could find in my searches is http://www.j-interop.org/ but that seems to be aimed at remote clients. Ideally nothing would have to be installed on the imaged drive. The other solution which seemed to also pop up is the JNI library, but that also seems to be more so in the area of monitoring a running system.

Any help at all is greatly appreciated. :)

© Stack Overflow or respective owner

Related posts about java

Related posts about python