Skip to content

Commit 27c88ed

Browse files
authored
Merge branch 'main' into add-create-monitors-section-to-otel-apps
2 parents e0aab0b + 252fb03 commit 27c88ed

File tree

4 files changed

+2563
-1609
lines changed

4 files changed

+2563
-1609
lines changed

blog-cse/2024-11-22-content.md

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
---
2+
title: November 22, 2024 - Content Release
3+
hide_table_of_contents: true
4+
keywords:
5+
- log mappers
6+
- log parsers
7+
- detection rules
8+
- tag schemas
9+
image: https://help.sumologic.com/img/sumo-square.png
10+
---
11+
12+
import useBaseUrl from '@docusaurus/useBaseUrl';
13+
14+
<a href="https://help.sumologic.com/release-notes-cse/rss.xml"><img src={useBaseUrl('img/release-notes/rss-orange2.png')} alt="icon" width="50"/></a>
15+
16+
This content release includes:
17+
* New mapping support for: Qumulo Core, and Teramind Teraserver.
18+
* Updates to existing parsers for: Code42 Incydr, Palo Alto, and Okta.
19+
* Updates to the existing Okta log mappings to support a new HTTP source log formatting.
20+
* Updates to Code42 Incydr Alerts C2C mapping to support new alert log format.
21+
22+
Changes are enumerated below.
23+
24+
### Rules
25+
* [Deleted] FIRST-S00031 First Seen IP Address Associated with User for a Successful Azure AD Sign In Event
26+
* Consider using FIRST-S00047 (First Seen ASN Associated with User for a Successful Azure AD Sign In Event) in its place.
27+
* [New] THRESHOLD-S00116 Password Attack from IP
28+
* This is a fork of THRESHOLD-S00095 Password Attack to address a bug with null values causing backend issues with detection rules. Rule has been forked to ensure no null values are considered in the entity grouping.
29+
* [Updated] FIRST-S00095 Password Attack from Host
30+
* Updates rule to remove IP entity (now handled in THRESHOLD-S00116) and ensure no null values are considered for the host entity.
31+
* [Updated] FIRST-S00068 Okta - First Seen User Accessing Admin Application
32+
* Baseline retention window size increased from 35 days to the standard 90 day retention.
33+
* Modified the summary description to read as follows: "User: `{{user_username}}` has successfully accessed the Okta Admin Application".
34+
35+
### Log Mappers
36+
* [New] Palo Alto Threat DLP non File - Custom Parser
37+
* Mapping support added for event id pattern: threat-dlp-non-file.
38+
* [New] Qumulo Core - Catch All
39+
* [New] Qumulo Core - Login
40+
* [New] Teramind Authentication
41+
* [New] Teramind Catch All
42+
* [New] Teramind Email
43+
* [Updated] Code42 Incydr Alerts C2C
44+
* [Updated] Okta Authentication - auth_via_AD_agent
45+
* [Updated] Okta Authentication - auth_via_mfa
46+
* [Updated] Okta Authentication - auth_via_radius
47+
* [Updated] Okta Authentication - sso
48+
* [Updated] Okta Authentication Events
49+
* [Updated] Okta Catch All
50+
* [Updated] Okta Security Threat Events
51+
52+
### Parsers
53+
* [New] /Parsers/System/Qumulo/Qumulo Core
54+
* [New] /Parsers/System/Salesforce/Salesforce
55+
* [New] /Parsers/System/Teramind/Teramind Teraserver
56+
* [Updated] /Parsers/System/Code42/Code42 Incydr
57+
* Transform update for a new alert log format for tenantId.
58+
* [Updated] /Parsers/System/Okta/Okta
59+
* Modified event_id from eventType to event_type.
60+
* [Updated] /Parsers/System/Palo Alto/PAN Firewall CSV
61+
* Additional parsing support for a new Palo Alto Threat event format.

docs/cse/administration/cse-audit-logging.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Use  `_index=sumologic_system_events` to limit results to events related to sys
3737

3838
You can use the `subsystem` field, which every event log contains, to limit the events returned to Cloud SIEM-related events:
3939

40-
`subsystem=cse`
40+
`subsystem=cse*`
4141

4242
For information about other fields you can use in Audit Index searches, see auto-generated documentation at the documentation URL for your deployment.
4343

@@ -122,7 +122,7 @@ To search the Audit Event Index or System Event Index for logs that describe Clo
122122
```sql
123123
_index=sumologic_system_events
124124
| json auto
125-
| where subsystem="cse"
125+
| where subsystem="cse*"
126126
```
127127
3. Choose the time range for your search.
128128
4. Click **Start** to run the search.

package.json

Lines changed: 31 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,21 @@
1616
},
1717
"dependencies": {
1818
"@babel/plugin-proposal-decorators": "^7.23.7",
19+
"@babel/runtime-corejs3": "7.26.0",
1920
"@braintree/sanitize-url": "^6.0.1",
20-
"@docusaurus/core": "^3.5.2",
21-
"@docusaurus/cssnano-preset": "^3.5.2",
22-
"@docusaurus/plugin-client-redirects": "^3.5.2",
23-
"@docusaurus/plugin-content-blog": "^3.5.2",
24-
"@docusaurus/plugin-debug": "^3.5.2",
25-
"@docusaurus/plugin-google-analytics": "^3.5.2",
26-
"@docusaurus/plugin-google-gtag": "^3.5.2",
27-
"@docusaurus/plugin-google-tag-manager": "^3.5.2",
28-
"@docusaurus/plugin-sitemap": "^3.5.2",
29-
"@docusaurus/preset-classic": "^3.5.2",
30-
"@docusaurus/theme-classic": "^3.5.2",
31-
"@docusaurus/theme-search-algolia": "^3.5.2",
21+
"@docusaurus/bundler": "3.6.3",
22+
"@docusaurus/core": "^3.6.3",
23+
"@docusaurus/cssnano-preset": "3.6.3",
24+
"@docusaurus/plugin-client-redirects": "3.6.3",
25+
"@docusaurus/plugin-content-blog": "^3.6.3",
26+
"@docusaurus/plugin-debug": "3.6.3",
27+
"@docusaurus/plugin-google-analytics": "3.6.3",
28+
"@docusaurus/plugin-google-gtag": "3.6.3",
29+
"@docusaurus/plugin-google-tag-manager": "3.6.3",
30+
"@docusaurus/plugin-sitemap": "3.6.3",
31+
"@docusaurus/preset-classic": "3.6.3",
32+
"@docusaurus/theme-classic": "3.6.3",
33+
"@docusaurus/theme-search-algolia": "3.6.3",
3234
"@emotion/react": "^11.10.5",
3335
"@emotion/styled": "^11.10.5",
3436
"@eslint/eslintrc": "^1.3.3",
@@ -48,24 +50,32 @@
4850
"@svgr/plugin-svgo": "8.1.0",
4951
"@svgr/webpack": "8.1.0",
5052
"@swc/core": "^1.6.5",
53+
"@types/eslint": "9.6.1",
54+
"@types/eslint-scope": "3.7.7",
55+
"ansi-escapes": "4.3.2",
5156
"cacheable-request": "^10.2.7",
5257
"cheerio": "1.0.0-rc.12",
5358
"clsx": "^1.1.1",
5459
"codespell": "^1.1.7",
60+
"consola": "3.2.3",
5561
"css-declaration-sorter": "7.2.0",
5662
"css-tree": "2.3.1",
63+
"cssdb": "8.2.1",
5764
"cssnano": "6.1.2",
5865
"csso": "5.0.5",
5966
"docusaurus-plugin-sass": "^0.2.1",
6067
"docusaurus2-dotenv": "^1.4.0",
6168
"electron-to-chromium": "1.4.755",
69+
"figures": "3.2.0",
6270
"file-loader": "^6.2.0",
6371
"follow-redirects": "^1.15.6",
6472
"glob-parent": "^5.1.2",
6573
"got": "^12.5.2",
6674
"infima": "0.2.0-alpha.42",
75+
"jsesc": "3.0.2",
6776
"json5": "^2.2.3",
6877
"loader-utils": "^3.2.1",
78+
"markdown-table": "2.0.0",
6979
"mdn-data": "2.0.30",
7080
"mdx-mermaid": "^2.0.0",
7181
"mermaid": "^10.9.3",
@@ -74,6 +84,7 @@
7484
"node-fetch": "^2.6.7",
7585
"node-forge": "^1.3.0",
7686
"nth-check": "^2.0.1",
87+
"path-to-regexp": "3.3.0",
7788
"postcss": "^8.4.38",
7889
"postcss-calc": "9.0.1",
7990
"postcss-colormin": "6.1.0",
@@ -112,15 +123,19 @@
112123
"react-iframe": "^1.8.0",
113124
"react-json-view-lite": "1.2.1",
114125
"react-live": "^4.1.5",
126+
"regjsgen": "0.8.0",
115127
"remark-code-import": "^1.2.0",
116128
"remark-emoji": "^4.0.1",
117129
"remark-import-partial": "^0.0.2",
130+
"repeat-string": "1.6.1",
118131
"sass": "^1.44.0",
119132
"sass-loader": "^12.4.0",
133+
"serve-handler": "6.1.6",
120134
"shelljs": "^0.8.5",
121135
"snake-case": "3.0.4",
122136
"sort-css-media-queries": "2.2.0",
123137
"staticrypt": "^3.3.0",
138+
"std-env": "3.8.0",
124139
"stylehacks": "6.1.1",
125140
"svgo": "3.2.0",
126141
"swc": "^1.0.11",
@@ -129,10 +144,13 @@
129144
"url-loader": "^4.1.1",
130145
"use-sync-external-store": "1.2.0",
131146
"webpack": "^5.94.0",
147+
"webpack-bundle-analyzer": "4.10.2",
148+
"webpack-merge": "6.0.1",
149+
"wildcard": "2.0.1",
132150
"yaml": "^2.3.1"
133151
},
134152
"devDependencies": {
135-
"@docusaurus/module-type-aliases": "^3.5.2",
153+
"@docusaurus/module-type-aliases": "^3.6.3",
136154
"@tsconfig/docusaurus": "^1.0.4",
137155
"@types/react": "^17.0.0",
138156
"@types/webpack-env": "^1.16.3",

0 commit comments

Comments
 (0)