Skip to content

Commit e8141e4

Browse files
aj-sumojpipkin1
andauthored
TLAB-2169: Updated threat intel documentation to remove references to TAXII2 in manually uploaded indicators (#5632)
Co-authored-by: John Pipkin (Sumo Logic) <[email protected]>
1 parent 3ca631d commit e8141e4

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docs/security/threat-intelligence/upload-formats.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Following is an example threat indicator file in normalized JSON format. (For an
3434
"id": "0001",
3535
"indicator": "192.0.2.0",
3636
"type": "ipv4-addr",
37-
"source": "TAXII2Source",
37+
"source": "my_custom_source",
3838
"validFrom": "2023-03-21T12:00:00.000Z",
3939
"validUntil": "2025-03-21T12:00:00.000Z",
4040
"confidence": 30,
@@ -50,7 +50,7 @@ Following is an example threat indicator file in normalized JSON format. (For an
5050
"id": "0002",
5151
"indicator": "192.0.2.1",
5252
"type": "ipv4-addr",
53-
"source": "TAXII2Source",
53+
"source": "my_custom_source",
5454
"validFrom": "2023-03-21T12:00:00.000Z",
5555
"validUntil": "2025-03-21T12:00:00.000Z",
5656
"confidence": 30,
@@ -90,7 +90,7 @@ The following attributes are required:
9090
* `process`. Process name. (Entity type in Cloud SIEM is `_process`.)
9191
* `url`. URL. (Entity type in Cloud SIEM is `_url`.)
9292
* `user-account`. User ID. (Entity type in Cloud SIEM is `user_username`.)
93-
* **source** (string). User-provided text to identify the source of the indicator. For example, `TAXII2Source`.
93+
* **source** (string). User-provided text to identify the source of the indicator. For example, `my_custom_source`.
9494
* **validFrom** (string [date-time]). Beginning time this indicator is valid. Timestamp in UTC in RFC3339 format. For example, `2023-03-21T12:00:00.000Z`.
9595
* **validUntil** (string [date-time]). Ending time this indicator is valid. If not set, the indicator never expires. Timestamp in UTC in RFC3339 format. For example, `2024-03-21T12:00:00.000Z`.
9696
* **confidence** (integer [ 1 .. 100 ]). Confidence that the creator has in the correctness of their data, where 100 is highest (as [defined by the confidence scale in STIX 2.1](https://docs.oasis-open.org/cti/stix/v2.1/os/stix-v2.1-os.html#_1v6elyto0uqg)). For example, `75`.
@@ -123,8 +123,8 @@ Comma-separated value (CSV) is a standard format for data upload.
123123
When uploading a CSV file with the UI, the format should be the same as used for a standard CSV file:
124124

125125
```
126-
0001,192.0.2.0,ipv4-addr,TAXII2Source,2023-02-21T12:00:00.00Z,2025-05-21T12:00:00.00Z,30,malicious-activity,,
127-
0002,192.0.2.1,ipv4-addr,TAXII2Source,2023-02-21T12:00:00.00Z,2025-05-21T12:00:00.00Z,30,malicious-activity,actor3,reconnaissance
126+
0001,192.0.2.0,ipv4-addr,my_custom_source,2023-02-21T12:00:00.00Z,2025-05-21T12:00:00.00Z,30,malicious-activity,,
127+
0002,192.0.2.1,ipv4-addr,my_custom_source,2023-02-21T12:00:00.00Z,2025-05-21T12:00:00.00Z,30,malicious-activity,actor3,reconnaissance
128128
```
129129

130130
:::tip
@@ -156,7 +156,7 @@ Columns for the following attributes are required in the upload file:
156156
* `process`. Process name. (Entity type in Cloud SIEM is `_process`.)
157157
* `url`. URL. (Entity type in Cloud SIEM is `_url`.)
158158
* `user-account`. User ID. (Entity type in Cloud SIEM is `_username`.)
159-
* **source** (string). User-provided text to identify the source of the indicator. For example, `TAXII2Source`.
159+
* **source** (string). User-provided text to identify the source of the indicator. For example, `my_custom_source`.
160160
* **validFrom** (string [date-time]). Beginning time this indicator is valid. Timestamp in UTC in RFC3339 format. For example, `2023-03-21T12:00:00.000Z`.
161161
* **validUntil** (string [date-time]). Ending time this indicator is valid. If not set, the indicator never expires. Timestamp in UTC in RFC3339 format. For example, `2024-03-21T12:00:00.000Z`.
162162
* **confidence** (integer [ 1 .. 100 ]). Confidence that the creator has in the correctness of their data, where 100 is highest. For example, `75`.
@@ -218,7 +218,7 @@ As shown in the following example, if uploading via the API you must add the `so
218218

219219
```json
220220
{
221-
"source": "TAXII2Source",
221+
"source": "my_custom_source",
222222
"indicators": [
223223
{
224224
"type": "indicator",

0 commit comments

Comments
 (0)