-
Notifications
You must be signed in to change notification settings - Fork 61
/
mkdocs.yml
99 lines (83 loc) · 2.22 KB
/
mkdocs.yml
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
site_name: Nemesis Documentation
site_url: https://specterops.github.io/Nemesis/
repo_url: https://github.com/SpecterOps/Nemesis
repo_name: SpecterOps/Nemesis
edit_uri: edit/main/docs/
plugins:
- search
exclude_docs: |
/requirements.txt
nav:
- Nemesis: index.md
- Quickstart: quickstart.md
- overview.md
- Installation:
- Setup: setup.md
- Requirements: requirements.md
- Unsupported Platforms:
- Docker Desktop: requirements_docker_desktop.md
- Minikube: requirements_minikube.md
- Quickstart Chart: quickstart_chart.md
- Nemesis Chart: nemesis_chart.md
- Usage:
- usage_guide.md
- access_nemesis.md
- submit_to_nemesis.md
- kubernetes.md
- troubleshooting.md
- Services:
- postgres.md
- rabbitmq.md
- elasticsearch-kibana.md
- hasura.md
- Developer:
- requirements_developer.md
- development.md
- remote_debugging.md
- new_connector.md
- new_seatbelt_datatype_ingestion.md
- new_service.md
- new_odr_datatype.md
- Operational Data References:
- odr/README.md
- References:
- odr/references/authentication_data.md
- odr/references/cookie.md
- odr/references/file_data.md
- odr/references/file_information.md
- odr/references/network_connection.md
- odr/references/path_list.md
- odr/references/raw_data.md
- Host Data:
- odr/references/host_data/named_pipe.md
- odr/references/host_data/process.md
- odr/references/host_data/registry_value.md
- odr/references/host_data/service.md
theme:
name: material
locale: en
logo: images/logo.png
favicon: images/logo.png
features:
- navigation.sections
- content.code.copy
icon:
repo: fontawesome/brands/github
palette:
- media: "(prefers-color-scheme: light)"
scheme: nemesis-light
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: nemesis-dark
toggle:
icon: material/brightness-4
name: Switch to light mode
extra_css:
- stylesheets/colors.css
markdown_extensions:
- admonition
- pymdownx.superfences
- pymdownx.highlight:
use_pygments: true