Skip to content

Commit

Permalink
add missing Repudiation to STRIDE
Browse files Browse the repository at this point in the history
  • Loading branch information
vgwmarcloney committed Nov 27, 2021
1 parent 7d993ad commit 8d92f43
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions pkg/spec/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ func (t *ThreatmodelSpecConfig) setDefaults() {

t.STRIDE = append(t.STRIDE, "Spoofing")
t.STRIDE = append(t.STRIDE, "Tampering")
t.STRIDE = append(t.STRIDE, "Repudiation")
t.STRIDE = append(t.STRIDE, "Info Disclosure")
t.STRIDE = append(t.STRIDE, "Denial Of Service")
t.STRIDE = append(t.STRIDE, "Elevation Of Privilege")
Expand Down
3 changes: 2 additions & 1 deletion spec.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,11 @@ threatmodel "threatmodel name" {
// The available values are:
// Spoofing
// Tampering
// Repudiation
// Info Disclosure
// Denial Of Service
// Elevation Of Privilege
stride = ["Spoofing", "Tampering", "Info Disclosure", "Denial Of Service", "Elevation Of Privilege"]
stride = ["Spoofing", "Tampering", "Repudiation", "Info Disclosure", "Denial Of Service", "Elevation Of Privilege"]

// The information_asset_refs are an optional array of information_assets
// the elements must much existing information_assets - as above
Expand Down

0 comments on commit 8d92f43

Please sign in to comment.