-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
153 lines (138 loc) · 4.66 KB
/
mkdocs.yml
File metadata and controls
153 lines (138 loc) · 4.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
site_name: Risk Based Prioritization
site_url: https://github.com/RiskBasedPrioritization/RiskBasedPrioritization.github.io
# Page tree
nav:
- Home: index.md
- Introduction:
- Foreword: introduction/foreword.md
- Preface: introduction/preface.md
- Introduction: introduction/Introduction.md
- Contributors: introduction/contributors.md
- Scope: introduction/Scope.md
- Source Code and Data: introduction/code_and_data.md
- Risk:
- Vulnerability Landscape: risk/Vulnerability_Landscape.md
- Understanding Risk: risk/Understanding_Risk.md
- Likelihood of Exploitation Populations: risk/Data_Sources.md
- Applied Back of Napkin Risk Prioritization: risk/Back_of_napkin.md
- Standards:
- Common Vulnerability Scoring System (CVSS): cvss/CVSS.md
- CISA Known Exploited Vulnerabilities (CISA KEV): cisa_kev/cisa_kev.md
- Exploit Prediction Scoring System (EPSS):
- Exploit Prediction Scoring System (EPSS): epss/Introduction_to_EPSS.md
- Applying EPSS to your environment: epss/Applying_EPSS_to_your_environment.md
- EPSS and CISA Known Exploited Vulnerabilities (CISA KEV): epss/EPSS_and_CISA_KEV.md
- What Users Ask For: epss/What_users_ask_for.md
- EPSS Thresholds: epss/EPSS_Thresholds.md
- Stakeholder-Specific Vulnerability Categorization (SSVC):
- Stakeholder-Specific Vulnerability Categorization (SSVC): ssvc/SSVC.md
- Decision Trees From Scratch: ssvc/decision_trees_from_scratch.md
- Decision Trees Example Usage: ssvc/decision_trees.md
- Applied Log4Shell Example: risk/Log4Shell.md
- Vendors:
- Vendors: vendors/vendors.md
- Qualys: vendors/Qualys.md
- EdgeScan: vendors/Edgescan.md
- Microsoft Exploitability Index: vendors/Microsoft_Exploitability_Index.md
- Organizations:
- Yahoo: organizations/Yahoo.md
- ACME Inc: organizations/acme/Applied.md
- Takeaway:
- Risk Based Prioritization Schemes: risk/Rbp_schemes.md
- Takeaway: risk/Takeaway.md
- Annex:
- Talks & Research: talks/talks.md
- Requirements: requirements/Requirements.md
- Glossary: annex/Glossary.md
theme:
name: material
custom_dir: docs/overrides
icon:
logo: material/fire-off
features:
- navigation.expand
- navigation.footer
##- navigation.indexes
##- navigation.instant
###- navigation.instant.prefetch
# - navigation.instant.progress
# - navigation.prune
#- navigation.sections
##- navigation.tabs
# - navigation.tabs.sticky
##- navigation.top
##- navigation.tracking
- search.highlight
- search.share
- search.suggest
#- toc.follow
# - toc.integrate
language: en
palette:
- scheme: default
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
primary: light blue
accent: purple
- scheme: slate
toggle:
icon: material/toggle-switch
name: Switch to light mode
primary: teal
accent: lime
markdown_extensions:
- pymdownx.snippets:
auto_append: [includes/abbreviations.md]
base_path: docs
- abbr
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.magiclink # to hyperlink all urls
- admonition
- pymdownx.arithmatex:
generic: true
- footnotes
- pymdownx.details
- pymdownx.superfences
- pymdownx.mark
- attr_list
- md_in_html
- tables
- markdown_include.include:
base_path: docs
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- toc:
permalink: true
extra_css:
- stylesheets/extra.css
extra_javascript:
- https://unpkg.com/tablesort@5.3.0/dist/tablesort.min.js # for sortable tables
- javascripts/tablesort.js
watch:
- docs/includes
- docs
extra:
analytics:
provider: google
property: G-51FVYR35TJ
social:
- icon: fontawesome/solid/house
link: https://github.com/RiskBasedPrioritization/RiskBasedPrioritization.github.io
name: Risk Based Prioritization Guide
- icon: fontawesome/solid/bug
link: https://github.com/RiskBasedPrioritization/RiskBasedPrioritization.github.io/issues/
name: Report an Issue or Suggest a Change
- icon: fontawesome/brands/github
link: https://github.com/RiskBasedPrioritization/RiskBasedPrioritization.github.io
name: Risk Based Prioritization source on Github
- icon: fontawesome/solid/download
link: https://riskbasedprioritization.github.io/print_page/
name: Save as HTML or print to PDF / paper
copyright: Copyright © Contributors to the Risk Based Prioritization Guide.
plugins:
- search
- print-site