-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #171 from AndrewRathbun/master
Update Sysmon events with User fields
- Loading branch information
Showing
18 changed files
with
193 additions
and
2 deletions.
There are no files selected for viewing
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
Author: Andrew Rathbun | ||
Description: Pipeline Execution Details | ||
EventId: 800 | ||
Channel: Windows PowerShell | ||
Provider: PowerShell | ||
Maps: | ||
- | ||
Property: PayloadData1 | ||
PropertyValue: "%HostApplication%" | ||
Values: | ||
- | ||
Name: HostApplication | ||
Value: "/Event/EventData/Data" | ||
Refine: "HostApplication=(.+)" | ||
- | ||
Property: PayloadData2 | ||
PropertyValue: "%HostName%" | ||
Values: | ||
- | ||
Name: HostName | ||
Value: "/Event/EventData/Data" | ||
Refine: "HostName=(.+)" | ||
- | ||
Property: PayloadData3 | ||
PropertyValue: "%HostVersion%" | ||
Values: | ||
- | ||
Name: HostVersion | ||
Value: "/Event/EventData/Data" | ||
Refine: "HostVersion=(.+)" | ||
|
||
# Documentation: | ||
# https://www.myeventlog.com/search/show/975 | ||
# | ||
# Example Event Data: | ||
# <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event"> | ||
# <System> | ||
# <Provider Name="PowerShell" /> | ||
# <EventID Qualifiers="0">600</EventID> | ||
# <Level>4</Level> | ||
# <Task>6</Task> | ||
# <Keywords>0x80000000000000</Keywords> | ||
# <TimeCreated SystemTime="2001-01-01T01:01:01.012345678Z" /> | ||
# <EventRecordID>18</EventRecordID> | ||
# <Channel>Windows PowerShell</Channel> | ||
# <Computer>name.domain.tld</Computer> | ||
# <Security /> | ||
# </System> | ||
# <EventData> | ||
# <Data>Registry, Started, ProviderName=Registry | ||
# NewProviderState=Started | ||
# | ||
# SequenceNumber=1 | ||
# | ||
# HostName=ConsoleHost | ||
# HostVersion=5.1.18362.145 | ||
# HostId=b3dfcb89-d2f8-4b8b-a784-a6a9bcf61bd8 | ||
# HostApplication=powershell -command Set-ItemProperty -Path HKCU:\Software\Microsoft\Office\16.0\Outlook\AutoDiscover -Name 'ExcludeExplicitO365Endpoint' -Value 1 -Type DWORD -Force | ||
# EngineVersion= | ||
# RunspaceId= | ||
# PipelineId= | ||
# CommandName= | ||
# CommandType= | ||
# ScriptName= | ||
# CommandPath= | ||
# CommandLine=</Data> | ||
# </EventData> | ||
# </Event> |