-
Notifications
You must be signed in to change notification settings - Fork 0
Issue 47: implement the stix 21 windows integrity level enumeration #103
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -168,6 +168,21 @@ gist:ThreatActorType | |
rdfs:subClassOf gist:StixCategoryObject ; | ||
. | ||
|
||
gist:WindowsIntegrityLevel | ||
a owl:Class ; | ||
rdfs:subClassOf gist:StixCategoryObject ; | ||
skos:definition """STIX 2.1 description: | ||
The Windows integrity level enumeration is currently used in the following STIX Cyber-observable Object(s): | ||
● Process (Windows Process extension) | ||
|
||
|
||
Comment on lines
+176
to
+178
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Strange - a single bullet and two blank lines. Its a poor definition. I wonder if we should have a
|
||
Windows integrity levels are a security feature and represent the trustworthiness of an object."""^^xsd:string ; | ||
skos:example ""^^xsd:string ; | ||
skos:note "This is described in STIX as an enumeration but no order of the enumeration is given."^^xsd:string ; | ||
skos:prefLabel "Windows™ Integrity Level Enumeration"^^xsd:string ; | ||
gist:stixTerm "windows-integrity-level-enum"^^xsd:string ; | ||
. | ||
|
||
gist:_AccountType_facebook | ||
a gist:AccountType ; | ||
rdfs:label "Facebook"^^xsd:string ; | ||
|
@@ -2473,6 +2488,38 @@ There is not enough information available to determine the type of threat actor. | |
skos:prefLabel "unknown"^^xsd:string ; | ||
. | ||
|
||
gist:_WindowsIntegrityLevel_high | ||
a gist:WindowsIntegrityLevel ; | ||
skos:definition """STIX 2.1 description: | ||
A high level of integrity."""^^xsd:string ; | ||
skos:prefLabel "High Integrity Level"^^xsd:string ; | ||
gist:stixTerm "high"^^xsd:string ; | ||
. | ||
|
||
gist:_WindowsIntegrityLevel_low | ||
a gist:WindowsIntegrityLevel ; | ||
skos:definition """STIX 2.1 description: | ||
A low level of integrity."""^^xsd:string ; | ||
skos:prefLabel "Low Integrity Level"^^xsd:string ; | ||
gist:stixTerm "low"^^xsd:string ; | ||
. | ||
|
||
gist:_WindowsIntegrityLevel_medium | ||
a gist:WindowsIntegrityLevel ; | ||
skos:definition """STIX 2.1 description: | ||
A medium level of integrity."""^^xsd:string ; | ||
skos:prefLabel "Medium Integrity Level"^^xsd:string ; | ||
gist:stixTerm "medium"^^xsd:string ; | ||
. | ||
|
||
gist:_WindowsIntegrityLevel_system | ||
a gist:WindowsIntegrityLevel ; | ||
skos:definition """STIX 2.1 description: | ||
A system level of integrity."""^^xsd:string ; | ||
skos:prefLabel "System Integrity Level"^^xsd:string ; | ||
gist:stixTerm "system"^^xsd:string ; | ||
. | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. IRI - prefLabel mismatch. Should be more like:
Do like the others, for consistency. |
||
gist:stixTerm | ||
a owl:AnnotationProperty ; | ||
. | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Belongs in TBox