winevt-ng


Namewinevt-ng JSON
Version 0.1.0 PyPI version JSON
download
home_pagehttps://github.com/schorschii/winevt_ng
SummaryScript to programmatically interface with Windows Events.
upload_time2024-01-21 19:38:32
maintainer
docs_urlNone
author
requires_python
licenseMIT
keywords windows event log evt evtx
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Overview
This is a library to interact with the Windows Event Logging system. The focus is to interact directly with the Windows API, rather than parsing evt files. This will allow you to use python to parse events as well as subscribe to providers.

It is a fork of the abandoned [bannsec/winevt](https://github.com/bannsec/winevt) with some fixes and improvements.

# Install
`winevt_ng` can be installed directly as a package from pypi. I recommend you install it into a python virtual environment.

```bash
$ mkvirtualenv --python=$(which python3) winevt_ng # Optional
(winevt_ng)$ pip install winevt_ng
```

# Current Features
Currently, this library supports querying and subscribing to event logs or parsing of event log files. Because this library uses the Windows API directly, you can query for any of the reigstered event providers.

# Example
## Query
Let's say you want to review the error report alerts that are in your Application event log. To print out all the times you dropped a dump file, you could do the following:

```python
In [1]: from winevt_ng import EventLog

In [2]: query = EventLog.Query("Application","Event/System/Provider[@Name='Windows Error Reporting']")

In [3]: for event in query:
   ...:     for item in event.EventData.Data:
   ...:         if "dmp" in item.cdata:
   ...:             print(item.cdata)
```

If you were interested in seeing every time you had an error or critical event from the System, you could do:

```python
In [1]: from winevt_ng import EventLog

In [2]: query = EventLog.Query("System","Event/System[Level<=2]")

In [3]: for event in query:
   ...:     print(event.System.Provider['Name'])
```

## Subscription
Let's say you want to watch for new Errors and Critial events from the System log, and want to be able to take some form of immediate action. You can acomplish that through a subcription using a python function as your callback.

```python
In [1]: from winevt_ng import EventLog

In [2]: def handle_event(action, pContext, event):
   ...:     print("Got event: " + str(event))
   ...:

In [3]: cb = EventLog.Subscribe("System","Event/System[Level<=2]",handle_event)

In [4]: Got event: <Event EventID=10016 Level=Error>
Got event: <Event EventID=10016 Level=Error>
Got event: <Event EventID=10016 Level=Error>
```

If you want to cancel your subscription, simply use the unsubscribe method:

```python
In [5]: cb.unsubscribe()
```

# EventLog.Event
The `EventLog.Event` class abstracts the concept of a Windows Event Log. There are likely two primary ways you would use this:

## Event.xml
Every `Event` object has an `xml` property to it. That property is the same XML you would find looking through the Windows Event Viewer. It is returned as a string and you can parse it however you wish.

## Event structure
Every `Event` object also has a structure to it. The structure is effectively the output of `untangle`. That said, it starts at the Event level so it makes Windows Events easier to traverse. Here's an example of XML:

```xml
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
  <System>
    <Provider EventSourceName="Software Protection Platform Service" Guid="{E23B33B0-C8C9-472C-A5F9-F2BDFEA0F156}" Name="Microsoft-Windows-Security-SPP"/>
    <EventID Qualifiers="16384">903</EventID>
    <Version>0</Version>
    <Level>0</Level>
    <Task>0</Task>
    <Opcode>0</Opcode>
    <Keywords>0x80000000000000</Keywords>
    <TimeCreated SystemTime="2017-05-05T16:11:37.282412200Z"/>
    <EventRecordID>12126</EventRecordID>
    <Correlation/>
    <Execution ProcessID="0" ThreadID="0"/>
    <Channel>Application</Channel>
    <Computer>Phoenix</Computer>
    <Security/>
  </System>
  <EventData/>
</Event>
```

If this were the XML for our `Event` object, and we wanted to find out the TimeCreated, we could do the following:

```python
event.System.TimeCreated['SystemTime']
```

# Authenticate Local and Remote
You can authenticate locally and remotely. If you provide no extra details, you will by default authenticate locally as your current user. However, for both `Query` and `Subscribe`, you can provide the following optional arguments:

 - username
 - password
 - domain
 - server
 - auth (default, negotiate, kerberos, ntlm)

For example, if you wished to connect to a server using username "administrator", it would be:

```python
query = EventLog.Query("Security","*",username="administrator", server="myserver", domain="mydomain")
```

You would then be prompted for the password interactively.

# Bookmarks
If you want to ensure you're not losing your place, you can use bookmarks. The Bookmark class abstracts the fundamental Windows construct of a bookmark. Use of bookmarks can be done by:

1. Instantiate a new bookmark

```python
bookmark = EventLog.Bookmark()
```

1b. If you already have a bookmark, just feed in the xml

```python
bookmark = EventLog.Bookmark(xml)
```

2. Give the bookmark parameter to `Query` or `Subscribe`

```python
cb = EventLog.Subscribe("System","*",handle_event,bookmark=bookmark)
```

3. Save your bookmark by saving your xml however you wish

```python
bookmark.xml
```

The updating of the bookmark will occur behind the scenes for you.

# Multiple Subscription Support
This library supports subscribing to as many channels as you want. The caveat is that you should not allow your `Subscription` objects to be garbage collected. In practice, this just means don't overwrite your class variables. Even if you're not using them, keep them around so that python doesn't try to garbage collect them on you.

# Tested On
I have only tested this on my Windows 10 x64 system with python 3.6 x64. It should work across most Windows systems given a Python x64 version >=3.2 (cffi changes).

It will very likely NOT work on python 2.

It might work on python 3.2+ x86. Let me know your experience.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/schorschii/winevt_ng",
    "name": "winevt-ng",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "windows event log evt evtx",
    "author": "",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/71/39/e5dc0281a891a80b9c25aa9123f74cd67b92d784dfafdabe5f8c762b08c7/winevt_ng-0.1.0.tar.gz",
    "platform": null,
    "description": "# Overview\r\nThis is a library to interact with the Windows Event Logging system. The focus is to interact directly with the Windows API, rather than parsing evt files. This will allow you to use python to parse events as well as subscribe to providers.\r\n\r\nIt is a fork of the abandoned [bannsec/winevt](https://github.com/bannsec/winevt) with some fixes and improvements.\r\n\r\n# Install\r\n`winevt_ng` can be installed directly as a package from pypi. I recommend you install it into a python virtual environment.\r\n\r\n```bash\r\n$ mkvirtualenv --python=$(which python3) winevt_ng # Optional\r\n(winevt_ng)$ pip install winevt_ng\r\n```\r\n\r\n# Current Features\r\nCurrently, this library supports querying and subscribing to event logs or parsing of event log files. Because this library uses the Windows API directly, you can query for any of the reigstered event providers.\r\n\r\n# Example\r\n## Query\r\nLet's say you want to review the error report alerts that are in your Application event log. To print out all the times you dropped a dump file, you could do the following:\r\n\r\n```python\r\nIn [1]: from winevt_ng import EventLog\r\n\r\nIn [2]: query = EventLog.Query(\"Application\",\"Event/System/Provider[@Name='Windows Error Reporting']\")\r\n\r\nIn [3]: for event in query:\r\n   ...:     for item in event.EventData.Data:\r\n   ...:         if \"dmp\" in item.cdata:\r\n   ...:             print(item.cdata)\r\n```\r\n\r\nIf you were interested in seeing every time you had an error or critical event from the System, you could do:\r\n\r\n```python\r\nIn [1]: from winevt_ng import EventLog\r\n\r\nIn [2]: query = EventLog.Query(\"System\",\"Event/System[Level<=2]\")\r\n\r\nIn [3]: for event in query:\r\n   ...:     print(event.System.Provider['Name'])\r\n```\r\n\r\n## Subscription\r\nLet's say you want to watch for new Errors and Critial events from the System log, and want to be able to take some form of immediate action. You can acomplish that through a subcription using a python function as your callback.\r\n\r\n```python\r\nIn [1]: from winevt_ng import EventLog\r\n\r\nIn [2]: def handle_event(action, pContext, event):\r\n   ...:     print(\"Got event: \" + str(event))\r\n   ...:\r\n\r\nIn [3]: cb = EventLog.Subscribe(\"System\",\"Event/System[Level<=2]\",handle_event)\r\n\r\nIn [4]: Got event: <Event EventID=10016 Level=Error>\r\nGot event: <Event EventID=10016 Level=Error>\r\nGot event: <Event EventID=10016 Level=Error>\r\n```\r\n\r\nIf you want to cancel your subscription, simply use the unsubscribe method:\r\n\r\n```python\r\nIn [5]: cb.unsubscribe()\r\n```\r\n\r\n# EventLog.Event\r\nThe `EventLog.Event` class abstracts the concept of a Windows Event Log. There are likely two primary ways you would use this:\r\n\r\n## Event.xml\r\nEvery `Event` object has an `xml` property to it. That property is the same XML you would find looking through the Windows Event Viewer. It is returned as a string and you can parse it however you wish.\r\n\r\n## Event structure\r\nEvery `Event` object also has a structure to it. The structure is effectively the output of `untangle`. That said, it starts at the Event level so it makes Windows Events easier to traverse. Here's an example of XML:\r\n\r\n```xml\r\n<Event xmlns=\"http://schemas.microsoft.com/win/2004/08/events/event\">\r\n  <System>\r\n    <Provider EventSourceName=\"Software Protection Platform Service\" Guid=\"{E23B33B0-C8C9-472C-A5F9-F2BDFEA0F156}\" Name=\"Microsoft-Windows-Security-SPP\"/>\r\n    <EventID Qualifiers=\"16384\">903</EventID>\r\n    <Version>0</Version>\r\n    <Level>0</Level>\r\n    <Task>0</Task>\r\n    <Opcode>0</Opcode>\r\n    <Keywords>0x80000000000000</Keywords>\r\n    <TimeCreated SystemTime=\"2017-05-05T16:11:37.282412200Z\"/>\r\n    <EventRecordID>12126</EventRecordID>\r\n    <Correlation/>\r\n    <Execution ProcessID=\"0\" ThreadID=\"0\"/>\r\n    <Channel>Application</Channel>\r\n    <Computer>Phoenix</Computer>\r\n    <Security/>\r\n  </System>\r\n  <EventData/>\r\n</Event>\r\n```\r\n\r\nIf this were the XML for our `Event` object, and we wanted to find out the TimeCreated, we could do the following:\r\n\r\n```python\r\nevent.System.TimeCreated['SystemTime']\r\n```\r\n\r\n# Authenticate Local and Remote\r\nYou can authenticate locally and remotely. If you provide no extra details, you will by default authenticate locally as your current user. However, for both `Query` and `Subscribe`, you can provide the following optional arguments:\r\n\r\n - username\r\n - password\r\n - domain\r\n - server\r\n - auth (default, negotiate, kerberos, ntlm)\r\n\r\nFor example, if you wished to connect to a server using username \"administrator\", it would be:\r\n\r\n```python\r\nquery = EventLog.Query(\"Security\",\"*\",username=\"administrator\", server=\"myserver\", domain=\"mydomain\")\r\n```\r\n\r\nYou would then be prompted for the password interactively.\r\n\r\n# Bookmarks\r\nIf you want to ensure you're not losing your place, you can use bookmarks. The Bookmark class abstracts the fundamental Windows construct of a bookmark. Use of bookmarks can be done by:\r\n\r\n1. Instantiate a new bookmark\r\n\r\n```python\r\nbookmark = EventLog.Bookmark()\r\n```\r\n\r\n1b. If you already have a bookmark, just feed in the xml\r\n\r\n```python\r\nbookmark = EventLog.Bookmark(xml)\r\n```\r\n\r\n2. Give the bookmark parameter to `Query` or `Subscribe`\r\n\r\n```python\r\ncb = EventLog.Subscribe(\"System\",\"*\",handle_event,bookmark=bookmark)\r\n```\r\n\r\n3. Save your bookmark by saving your xml however you wish\r\n\r\n```python\r\nbookmark.xml\r\n```\r\n\r\nThe updating of the bookmark will occur behind the scenes for you.\r\n\r\n# Multiple Subscription Support\r\nThis library supports subscribing to as many channels as you want. The caveat is that you should not allow your `Subscription` objects to be garbage collected. In practice, this just means don't overwrite your class variables. Even if you're not using them, keep them around so that python doesn't try to garbage collect them on you.\r\n\r\n# Tested On\r\nI have only tested this on my Windows 10 x64 system with python 3.6 x64. It should work across most Windows systems given a Python x64 version >=3.2 (cffi changes).\r\n\r\nIt will very likely NOT work on python 2.\r\n\r\nIt might work on python 3.2+ x86. Let me know your experience.\r\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Script to programmatically interface with Windows Events.",
    "version": "0.1.0",
    "project_urls": {
        "Homepage": "https://github.com/schorschii/winevt_ng"
    },
    "split_keywords": [
        "windows",
        "event",
        "log",
        "evt",
        "evtx"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7139e5dc0281a891a80b9c25aa9123f74cd67b92d784dfafdabe5f8c762b08c7",
                "md5": "5e3a0dfb58e5788479009995669e78cc",
                "sha256": "d8f8931d582f69e877416323d77c8187788a7bbdc4e99e77f545b686b2b7e1bc"
            },
            "downloads": -1,
            "filename": "winevt_ng-0.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "5e3a0dfb58e5788479009995669e78cc",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 28410,
            "upload_time": "2024-01-21T19:38:32",
            "upload_time_iso_8601": "2024-01-21T19:38:32.782437Z",
            "url": "https://files.pythonhosted.org/packages/71/39/e5dc0281a891a80b9c25aa9123f74cd67b92d784dfafdabe5f8c762b08c7/winevt_ng-0.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-21 19:38:32",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "schorschii",
    "github_project": "winevt_ng",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "winevt-ng"
}
        
Elapsed time: 0.19234s