This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Requires -Version 3 | |
param ( | |
[string]$lognames | |
) | |
#reading security log requires elevated privileges so only read Application and System for now | |
[string[]]$logname = $("Application", "System" ) | |
if ($lognames) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/usr/bin/python | |
# By Dan Pool | |
# Custom filter for parsing XML variables using xpath | |
from functools import partial | |
from io import BytesIO | |
try: | |
from lxml import etree | |
import lxml |