diff --git a/dictionary.json b/dictionary.json
index 1b591f18e..310b1ac2c 100644
--- a/dictionary.json
+++ b/dictionary.json
@@ -1545,6 +1545,10 @@
"type": "string_t"
},
"http_only": {
+ "@deprecated": {
+ "message": "Use the is_http_only
attribute instead.",
+ "since": "v1.1.0"
+ },
"caption": "HTTP Only",
"description": "A cookie attribute to make it inaccessible via JavaScript",
"type": "boolean_t"
@@ -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.",
@@ -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.",
@@ -2864,6 +2883,10 @@
"type": "integer_t"
},
"secure": {
+ "@deprecated": {
+ "message": "Use the is_secure
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"
@@ -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.",
diff --git a/objects/http_cookie.json b/objects/http_cookie.json
index f7a8690f8..8db19533a 100644
--- a/objects/http_cookie.json
+++ b/objects/http_cookie.json
@@ -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"
diff --git a/objects/kb_article.json b/objects/kb_article.json
index 679752bf4..229a37582 100644
--- a/objects/kb_article.json
+++ b/objects/kb_article.json
@@ -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"
},