Skip to content

Commit

Permalink
Merge pull request #841 from mikeradka/816_boolean_consistency
Browse files Browse the repository at this point in the history
#816 Boolean-Type Consistency
  • Loading branch information
pagbabian-splunk authored Nov 9, 2023
2 parents 6664c08 + 5825353 commit 39ac429
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 6 deletions.
28 changes: 23 additions & 5 deletions dictionary.json
Original file line number Diff line number Diff line change
Expand Up @@ -1545,6 +1545,10 @@
"type": "string_t"
},
"http_only": {
"@deprecated": {
"message": "Use the <code> is_http_only </code> attribute instead.",
"since": "v1.1.0"
},
"caption": "HTTP Only",
"description": "A cookie attribute to make it inaccessible via JavaScript",
"type": "boolean_t"
Expand Down Expand Up @@ -1733,6 +1737,11 @@
"description": "Indicates if a fix is available for the reported vulnerability.",
"type": "boolean_t"
},
"is_http_only": {
"caption": "HTTP Only",
"description": "This attribute prevents the cookie from being accessed via JavaScript.",
"type": "boolean_t"
},
"is_managed": {
"caption": "Managed Device",
"description": "The event occurred on a managed device.",
Expand Down Expand Up @@ -1768,6 +1777,16 @@
"description": "The indication of whether this is a lease/session renewal event.",
"type": "boolean_t"
},
"is_secure": {
"caption": "Secure",
"description": "The cookie attribute indicates that cookies are sent to the server only when the request is encrypted using the HTTPS protocol.",
"type": "boolean_t"
},
"is_superseded": {
"caption": "The patch is superseded.",
"description": "The vendor patch has been replaced by another.",
"type": "boolean_t"
},
"is_system": {
"caption": "System",
"description": "The indication of whether the object is part of the operating system.",
Expand Down Expand Up @@ -2864,6 +2883,10 @@
"type": "integer_t"
},
"secure": {
"@deprecated": {
"message": "Use the <code> is_secure </code> attribute instead.",
"since": "v1.1.0"
},
"caption": "Secure",
"description": "The cookie attribute to only send cookies to the server with an encrypted request over the HTTPS protocol.",
"type": "boolean_t"
Expand Down Expand Up @@ -3188,11 +3211,6 @@
"description": "Additional data supporting a finding as provided by security tool",
"type": "json_t"
},
"superseded": {
"caption": "The patch is superseded.",
"description": "The vendor patch has been replaced by another.",
"type": "boolean_t"
},
"surname": {
"caption": "Surname",
"description": "The last or family name for the user.",
Expand Down
6 changes: 6 additions & 0 deletions objects/http_cookie.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@
"http_only": {
"requirement": "optional"
},
"is_http_only": {
"requirement": "optional"
},
"is_secure": {
"requirement": "optional"
},
"name": {
"description": "The HTTP cookie name.",
"requirement": "required"
Expand Down
2 changes: 1 addition & 1 deletion objects/kb_article.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"description": "The product details the kb article applies.",
"requirement": "optional"
},
"superseded": {
"is_superseded": {
"description": "The kb article has been replaced by another.",
"requirement": "optional"
},
Expand Down

0 comments on commit 39ac429

Please sign in to comment.