Skip to content

Commit 4e9184f

Browse files
authored
Merge pull request Azure#13279 from artafres/feature/SlackAudit/parser_fix
Fixed parser issue in SlackAuditV2_CL
2 parents 56e5417 + 29e8902 commit 4e9184f

File tree

5 files changed

+79
-78
lines changed

5 files changed

+79
-78
lines changed
24.1 KB
Binary file not shown.

Solutions/SlackAudit/Package/mainTemplate.json

Lines changed: 70 additions & 70 deletions
Large diffs are not rendered by default.

Solutions/SlackAudit/Parsers/SlackAudit.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
id: fb5aaeb6-14fa-45e8-bb4a-6d4c642a710e
22
Function:
33
Title: Parser for SlackAudit
4-
Version: "1.0.0"
5-
LastUpdated: "2023-08-23"
4+
Version: "1.0.1"
5+
LastUpdated: "2025-12-12"
66
Category: Microsoft Sentinel Parser
77
FunctionName: SlackAudit
88
FunctionAlias: SlackAudit
@@ -204,8 +204,8 @@ FunctionQuery: |
204204
EntityChannelId=tostring(entity.channel.id),
205205
EntityChannelPrivacy=tostring(entity.channel.privacy),
206206
EntityChannelName=tostring(entity.channel.name),
207-
EntityChannelIsShared=tobool(entity.channel.is.shared),
208-
EntityChannelIsOrgShared=tobool(entity.channel.is.org.shared),
207+
EntityChannelIsShared=tobool(entity.channel.is_shared),
208+
EntityChannelIsOrgShared=tobool(entity.channel.is_org_shared),
209209
DetailsType=tostring(details.type),
210210
EntityUserId=tostring(entity.user.id),
211211
EntityUserName=tostring(entity.user.name),
@@ -226,8 +226,8 @@ FunctionQuery: |
226226
ContextLocationName=tostring(context.location.name),
227227
ContextLocationDomain=tostring(context.location.domain),
228228
ContextUA=tostring(context.ua),
229-
ContextIpAddress=tostring(context.ip.address),
230-
ContextSessionId=todouble(context.session.id),
229+
ContextIpAddress=tostring(context.ip_address),
230+
ContextSessionId=todouble(context.session_id),
231231
ActionDescription=column_ifexists('ActionDescription', ''),
232232
EventId=column_ifexists('Id', ''),
233233
EventEndTime=column_ifexists('DateCreate', ''),
@@ -236,7 +236,7 @@ FunctionQuery: |
236236
SrcUserName=tostring(actor.user.name),
237237
SrcUserEmail=tostring(actor.user.email),
238238
UserAgentOriginal=tostring(context.ua),
239-
SrcIpAddr=tostring(context.ip.address),
239+
SrcIpAddr=tostring(context.ip_address),
240240
DvcActionDesc=column_ifexists('ActionDescription', '')
241241
};
242242
union isfuzzy=true

Solutions/SlackAudit/ReleaseNotes.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
| **Version** | **Date Modified (DD-MM-YYYY)** | **Change History** |
22
|-------------|--------------------------------|--------------------------------------------------------------------|
3+
| 3.0.5 | 12-12-2025 | Updated the **Parser** yaml file. |
34
| 3.0.4 | 28-07-2025 | Removed Deprecated **Data Connector**. |
45
| 3.0.3 | 30-06-2025 | Moving **CCF Data Connector** to GA. |
56
| 3.0.2 | 30-05-2025 | Preview tag added to **CCF Data Connector**. |

Solutions/SlackAudit/data/Solution_SlackAudit.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
],
3939
"Metadata": "SolutionMetadata.json",
4040
"BasePath": "C:\\GitHub\\Azure-Sentinel\\Solutions\\SlackAudit",
41-
"Version": "3.0.0",
41+
"Version": "3.0.5",
4242
"TemplateSpec": true,
4343
"Is1PConnector": false
4444
}

0 commit comments

Comments
 (0)