diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1a760e84d..159a0fb1f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -112,8 +112,7 @@ Thankyou! -->
6. Deprecated `Security Finding` class to be replaced by the new specific classes according to the use-case: `Vulnerability Finding`, `Compliance Finding`, `Detection Finding`, `Incident Finding`. #877
7. Deprecated `Web Resources Access Activity` event class. #890
8. Deprecated `Network File Activity` event class in favor of `File Hosting Activity `#917
-9. Deprecated `extensions` attribute to be replaced by `schema_extension_list` attribute which is used in the `metadata` object. #934
-10. Deprecated `extension_list` in TLS object in favor of `tls_extension_list`. #936
+9. Deprecated `extension_list` in TLS object in favor of `tls_extension_list`. #936
### Breaking changes
`n/a`
diff --git a/dictionary.json b/dictionary.json
index c4407c77b..20cf68b25 100644
--- a/dictionary.json
+++ b/dictionary.json
@@ -1515,13 +1515,19 @@
},
"extension": {
"@deprecated": {
- "message": "Use the schema_extension_list
attribute instead.",
+ "message": "Use the extensions
attribute instead.",
"since": "1.1.0"
},
"caption": "Schema Extension",
"description": "The schema extension used to create the event.",
"type": "extension"
},
+ "extensions": {
+ "caption": "Schema Extensions",
+ "description": "The schema extensions used to create the event.",
+ "is_array": true,
+ "type": "extension"
+ },
"extension_list": {
"@deprecated": {
"message": "Use the tls_extension_list
attribute instead.",
@@ -3138,12 +3144,6 @@
"description": "The unique identifier of the schedule associated with a scan job.",
"type": "string_t"
},
- "schema_extension_list": {
- "caption": "Schema Extension List",
- "description": "The list of schema extensions used to create the event.",
- "is_array": true,
- "type": "extension"
- },
"scheme": {
"caption": "Scheme",
"description": "The scheme portion of the URL. For example: http
, https
, ftp
, or sftp
.",
diff --git a/extensions/linux/extension.json b/extensions/linux/extension.json
index a40e12b79..26c691dc7 100644
--- a/extensions/linux/extension.json
+++ b/extensions/linux/extension.json
@@ -3,5 +3,5 @@
"description": "The Linux extension defines Linux specific attributes, objects and classes.",
"name": "linux",
"uid": 1,
- "version": "1.1.0"
+ "version": "1.2.0-dev"
}
diff --git a/extensions/macos/extension.json b/extensions/macos/extension.json
index c07fddbfe..4dbcbc514 100644
--- a/extensions/macos/extension.json
+++ b/extensions/macos/extension.json
@@ -3,5 +3,5 @@
"description": "The macOS extension defines macOS specific attributes, objects and classes.",
"name": "macos",
"uid": 3,
- "version": "1.1.0"
+ "version": "1.2.0-dev"
}
\ No newline at end of file
diff --git a/extensions/windows/extension.json b/extensions/windows/extension.json
index 6f31f8d3d..d3267d93a 100644
--- a/extensions/windows/extension.json
+++ b/extensions/windows/extension.json
@@ -3,5 +3,5 @@
"description": "The Windows extension defines Windows specific attributes, objects and classes.",
"name": "win",
"uid": 2,
- "version": "1.1.0"
+ "version": "1.2.0-dev"
}
diff --git a/objects/metadata.json b/objects/metadata.json
index 8aa596399..d5a4fb43d 100644
--- a/objects/metadata.json
+++ b/objects/metadata.json
@@ -13,6 +13,9 @@
"extension": {
"requirement": "optional"
},
+ "extensions": {
+ "requirement": "optional"
+ },
"labels": {
"description": "
The list of category labels attached to the event or specific attributes. Labels are user defined tags or aliases added at normalization time.
For example:[\"network\", \"connection.ip:destination\", \"device.ip:source\"]
",
"requirement": "optional"
@@ -49,9 +52,6 @@
"profiles": {
"requirement": "optional"
},
- "schema_extension_list": {
- "requirement": "optional"
- },
"sequence": {
"requirement": "optional"
},
diff --git a/objects/security_state.json b/objects/security_state.json
index 7987cf836..18222f4bf 100644
--- a/objects/security_state.json
+++ b/objects/security_state.json
@@ -102,18 +102,14 @@
"description": "Mobile OTA (Over The Air) updates have been disabled."
},
"21": {
- "caption": "iOS file system altered",
- "description": "The iOS file system has been altered."
- },
- "22": {
"caption": "Rooted",
"description": "The device has been modified to allow root access."
},
- "23": {
+ "22": {
"caption": "Android partition modified",
"description": "The Android partition has been modified."
},
- "24": {
+ "23": {
"caption": "Compliance failure",
"description": "The entity is not compliant with the associated security policy."
}
diff --git a/version.json b/version.json
index fabbd9ad1..4fae92ea7 100644
--- a/version.json
+++ b/version.json
@@ -1,3 +1,3 @@
{
- "version": "1.1.0"
+ "version": "1.2.0-dev"
}