-
Notifications
You must be signed in to change notification settings - Fork 61
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 #177 from CluelessAtCoding/master
Create Microsoft-Windows-SmbClient-Security_Microsoft-Windows-SMBClie…
- Loading branch information
Showing
1 changed file
with
58 additions
and
0 deletions.
There are no files selected for viewing
58 changes: 58 additions & 0 deletions
58
evtx/Maps/Microsoft-Windows-SmbClient-Security_Microsoft-Windows-SMBClient_31010.map
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,58 @@ | ||
Author: Paul Elliott | ||
Description: The SMB client failed to connect to the share | ||
EventId: 31010 | ||
Channel: "Microsoft-Windows-SmbClient/Security" | ||
Provider: Microsoft-Windows-SMBClient | ||
Maps: | ||
- | ||
Property: PayloadData1 | ||
PropertyValue: "Share Name: %ShareName%" | ||
Values: | ||
- | ||
Name: ShareName | ||
Value: "/Event/EventData/Data[@Name=\"ShareName\"]" | ||
- | ||
Property: PayloadData2 | ||
PropertyValue: "Reason: %Reason%" | ||
Values: | ||
- | ||
Name: Reason | ||
Value: "/Event/EventData/Data[@Name=\"Reason\"]" | ||
|
||
Lookups: | ||
- | ||
Name: Reason | ||
Default: Unknown code | ||
Values: | ||
12: Access Denied. | ||
|
||
# Documentation: | ||
# | ||
# | ||
# Example Event Data: | ||
# <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event"> | ||
# <System> | ||
# <Provider Name="Microsoft-Windows-SMBClient" Guid="{988c59c5-0a1c-45b6-a555-0c62276e327d}" /> | ||
# <EventID>31010</EventID> | ||
# <Version>0</Version> | ||
# <Level>2</Level> | ||
# <Task>0</Task> | ||
# <Opcode>0</Opcode> | ||
# <Keywords>0x200000000000100</Keywords> | ||
# <TimeCreated SystemTime="1999-12-31T23:59:59.6168183Z" /> | ||
# <EventRecordID>123456</EventRecordID> | ||
# <Correlation /> | ||
# <Execution ProcessID="0" ThreadID="0" /> | ||
# <Channel>Microsoft-Windows-SmbClient/Security</Channel> | ||
# <Computer>machine.domain.tld</Computer> | ||
# <Security /> | ||
# </System> | ||
# <EventData> | ||
# <Data Name="Reason">12</Data> | ||
# <Data Name="Status">3221225506</Data> | ||
# <Data Name="ShareNameLength">17</Data> | ||
# <Data Name="ShareName">\fileserver\share</Data> | ||
# <Data Name="ObjectNameLength">0</Data> | ||
# <Data Name="ObjectName" /> | ||
# </EventData> | ||
# </Event> |