Introduction

knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)
# library(mitre)

Cyber security data sets

Explore cybersecurity standards

This is a basic example which shows you how to view shield tactics ids and names:

# shield.tactics[, c("id", "name")]

This example shows the distribution of vulnerability risk:

# hist(cve.nist$cvss3.score, 
#      main = "CVE risk distribution", xlab = "cvss3")

Standards network

This code shows you the type of nodes for each standard:

# mitrenet <- build_network(as_igraph = FALSE)
# table(mitrenet$nodes$type, mitrenet$nodes$group)

And the type of relationships:

# table(mitrenet$edges$label)


Try the mitre package in your browser

Any scripts or data that you put into this service are public.

mitre documentation built on May 21, 2021, 9:07 a.m.