Skip to content

Commit 268134d

Browse files
[client] remove default confidence value of 15 for sightings (opencti #6835)
1 parent c6b346c commit 268134d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pycti/utils/opencti_stix2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1378,7 +1378,7 @@ def import_sighting(
13781378
created=stix_sighting["created"] if "created" in stix_sighting else None,
13791379
modified=stix_sighting["modified"] if "modified" in stix_sighting else None,
13801380
confidence=(
1381-
stix_sighting["confidence"] if "confidence" in stix_sighting else 15
1381+
stix_sighting["confidence"] if "confidence" in stix_sighting else None
13821382
),
13831383
createdBy=extras["created_by_id"] if "created_by_id" in extras else None,
13841384
objectMarking=(

0 commit comments

Comments
 (0)