Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added Solutions/SlackAudit/Package/3.0.5.zip
Binary file not shown.
140 changes: 70 additions & 70 deletions Solutions/SlackAudit/Package/mainTemplate.json

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions Solutions/SlackAudit/Parsers/SlackAudit.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
id: fb5aaeb6-14fa-45e8-bb4a-6d4c642a710e
Function:
Title: Parser for SlackAudit
Version: "1.0.0"
LastUpdated: "2023-08-23"
Version: "1.0.1"
LastUpdated: "2025-12-12"
Category: Microsoft Sentinel Parser
FunctionName: SlackAudit
FunctionAlias: SlackAudit
Expand Down Expand Up @@ -204,8 +204,8 @@ FunctionQuery: |
EntityChannelId=tostring(entity.channel.id),
EntityChannelPrivacy=tostring(entity.channel.privacy),
EntityChannelName=tostring(entity.channel.name),
EntityChannelIsShared=tobool(entity.channel.is.shared),
EntityChannelIsOrgShared=tobool(entity.channel.is.org.shared),
EntityChannelIsShared=tobool(entity.channel.is_shared),
EntityChannelIsOrgShared=tobool(entity.channel.is_org_shared),
DetailsType=tostring(details.type),
EntityUserId=tostring(entity.user.id),
EntityUserName=tostring(entity.user.name),
Expand All @@ -226,8 +226,8 @@ FunctionQuery: |
ContextLocationName=tostring(context.location.name),
ContextLocationDomain=tostring(context.location.domain),
ContextUA=tostring(context.ua),
ContextIpAddress=tostring(context.ip.address),
ContextSessionId=todouble(context.session.id),
ContextIpAddress=tostring(context.ip_address),
ContextSessionId=todouble(context.session_id),
ActionDescription=column_ifexists('ActionDescription', ''),
EventId=column_ifexists('Id', ''),
EventEndTime=column_ifexists('DateCreate', ''),
Expand All @@ -236,7 +236,7 @@ FunctionQuery: |
SrcUserName=tostring(actor.user.name),
SrcUserEmail=tostring(actor.user.email),
UserAgentOriginal=tostring(context.ua),
SrcIpAddr=tostring(context.ip.address),
SrcIpAddr=tostring(context.ip_address),
DvcActionDesc=column_ifexists('ActionDescription', '')
};
union isfuzzy=true
Expand Down
1 change: 1 addition & 0 deletions Solutions/SlackAudit/ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
| **Version** | **Date Modified (DD-MM-YYYY)** | **Change History** |
|-------------|--------------------------------|--------------------------------------------------------------------|
| 3.0.5 | 12-12-2025 | Updated the **Parser** yaml file. |
| 3.0.4 | 28-07-2025 | Removed Deprecated **Data Connector**. |
| 3.0.3 | 30-06-2025 | Moving **CCF Data Connector** to GA. |
| 3.0.2 | 30-05-2025 | Preview tag added to **CCF Data Connector**. |
Expand Down
2 changes: 1 addition & 1 deletion Solutions/SlackAudit/data/Solution_SlackAudit.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
],
"Metadata": "SolutionMetadata.json",
"BasePath": "C:\\GitHub\\Azure-Sentinel\\Solutions\\SlackAudit",
"Version": "3.0.0",
"Version": "3.0.5",
"TemplateSpec": true,
"Is1PConnector": false
}
Loading