Datasets:
add citation to readme and dataset info
Browse files
README.md
CHANGED
@@ -106,3 +106,16 @@ which has opened my eyes to a new world of cybersecurity modeling.
|
|
106 |
|
107 |
If you are a cybersecurity expert please consider [contributing to
|
108 |
D3FEND](https://d3fend.mitre.org/contribute/).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
106 |
|
107 |
If you are a cybersecurity expert please consider [contributing to
|
108 |
D3FEND](https://d3fend.mitre.org/contribute/).
|
109 |
+
|
110 |
+
[D3FEND Resources](https://d3fend.mitre.org/resources/)
|
111 |
+
|
112 |
+
### Citation
|
113 |
+
```bibtex
|
114 |
+
@techreport{kaloroumakis2021d3fend,
|
115 |
+
title={Toward a Knowledge Graph of Cybersecurity Countermeasures},
|
116 |
+
author={Kaloroumakis, Peter E. and Smith, Michael J.},
|
117 |
+
institution={The MITRE Corporation},
|
118 |
+
year={2021},
|
119 |
+
url={https://d3fend.mitre.org/resources/D3FEND.pdf}
|
120 |
+
}
|
121 |
+
```
|
d3fend.py
CHANGED
@@ -15,6 +15,13 @@ class D3FENDDatasetBuilder(GeneratorBasedBuilder):
|
|
15 |
description="D3FEND is a framework which encodes a countermeasure knowledge base as a knowledge graph. The graph contains the types and relations that define key concepts in the cybersecurity countermeasure domain and the relations necessary to link those concepts to each other. Each of these concepts and relations are linked to references in the cybersecurity literature.",
|
16 |
homepage="https://d3fend.mitre.org/",
|
17 |
license="MIT",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
features=Features({
|
19 |
'subject': Value('string'),
|
20 |
'predicate': Value('string'),
|
|
|
15 |
description="D3FEND is a framework which encodes a countermeasure knowledge base as a knowledge graph. The graph contains the types and relations that define key concepts in the cybersecurity countermeasure domain and the relations necessary to link those concepts to each other. Each of these concepts and relations are linked to references in the cybersecurity literature.",
|
16 |
homepage="https://d3fend.mitre.org/",
|
17 |
license="MIT",
|
18 |
+
citation=r"""@techreport{kaloroumakis2021d3fend,
|
19 |
+
title={Toward a Knowledge Graph of Cybersecurity Countermeasures},
|
20 |
+
author={Kaloroumakis, Peter E. and Smith, Michael J.},
|
21 |
+
institution={The MITRE Corporation},
|
22 |
+
year={2021},
|
23 |
+
url={https://d3fend.mitre.org/resources/D3FEND.pdf}
|
24 |
+
}""",
|
25 |
features=Features({
|
26 |
'subject': Value('string'),
|
27 |
'predicate': Value('string'),
|