Skip to content

Commit

Permalink
Merge pull request #1070 from PavelJurka/signature_state
Browse files Browse the repository at this point in the history
Feat: [#1069] - added signature state id into the Digital signature
  • Loading branch information
pagbabian-splunk committed May 15, 2024
2 parents 0949e27 + 2574015 commit 58d418f
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ Thankyou! -->
* #### Objects
1. Added `ext` to `File` object. #1046
2. Added account, device, email, url, user to evidences in detection finding. #1000
3. Added `state_id`, `state` to `Digital Signature` object. #1069
* #### Platform Extensions

### Bugfixes
Expand Down
30 changes: 30 additions & 0 deletions objects/digital_signature.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,36 @@
},
"digest": {
"requirement": "optional"
},
"state": {
"description": "The digital signature state defines the signature state, normalized to the caption of 'state_id'. In the case of 'Other', it is defined by the event source.",
"requirement": "optional"
},
"state_id": {
"description": "The normalized identifier of the signature state.",
"enum": {
"1": {
"caption": "Valid",
"description": "The digital signature is valid."
},
"2": {
"caption": "Expired",
"description": "The digital signature is not valid due to expiration of certificate."
},
"3": {
"caption": "Revoked",
"description": "The digital signature is invalid due to certificate revocation."
},
"4": {
"caption": "Suspended",
"description": "The digital signature is invalid due to certificate suspension."
},
"5": {
"caption": "Pending",
"description": "The digital signature state is pending."
}
},
"requirement": "optional"
}
}
}

0 comments on commit 58d418f

Please sign in to comment.