forked from CybercentreCanada/assemblyline4_docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
213 lines (213 loc) · 7.24 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
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
extra:
alternate:
- lang: en
link: ./en/
name: English
- lang: fr
link: ./fr/
name: Français
extra_css:
- stylesheets/extra.css
extra_javascript:
- https://cdnjs.cloudflare.com/ajax/libs/tablesort/5.2.1/tablesort.min.js
- javascripts/tables.js
markdown_extensions:
- toc:
permalink: true
- attr_list
- pymdownx.tabbed
- pymdownx.details
- pymdownx.highlight
- pymdownx.superfences
- admonition
- def_list
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.emoji:
emoji_generator: !!python/name:materialx.emoji.to_svg ''
emoji_index: !!python/name:materialx.emoji.twemoji ''
nav:
- Home: index.md
- Overview:
- overview/how_it_works.md
- overview/architecture.md
- overview/services.md
- overview/community_services.md
- User's manual:
- user_manual/submitting_file.md
- user_manual/results.md
- user_manual/searching.md
- Installation:
- Getting Started:
- installation/deployment.md
- Appliance:
- Docker: installation/appliance/docker.md
- MicroK8s: installation/appliance/kubernetes-microk8s.md
- Cluster:
- Kubernetes: installation/cluster/general.md
- MicroK8s: installation/cluster/microk8s.md
- Appliance Migration: installation/deployment_migration.md
- Configuration:
- installation/configuration/config_file.md
- installation/configuration/authentication.md
- installation/configuration/core.md
- installation/configuration/datasources.md
- installation/configuration/datastore.md
- installation/configuration/filestore.md
- installation/configuration/logging.md
- installation/configuration/services.md
- installation/configuration/submission.md
- installation/configuration/system.md
- installation/configuration/ui.md
- Kubernetes-specific:
- installation/configuration/kubernetes/internal_encryption.md
- installation/classification_engine.md
- installation/monitoring.md
- installation/replay.md
- Administration:
- administration/signature_management.md
- administration/source_management.md
- administration/service_management.md
- administration/system_management.md
- administration/system_safelist.md
- administration/user_management.md
- administration/troubleshooting.md
- administration/submission_actions.md
- Integration:
- integration/ingestion_method.md
- integration/key_generation.md
- integration/python.md
- integration/java.md
- integration/rest.md
- Developer's guide:
- Setup Environment:
- developer_manual/env/getting_started.md
- VSCode:
- developer_manual/env/vscode/setup_script.md
- developer_manual/env/vscode/use_vscode.md
- Pycharm:
- developer_manual/env/pycharm/local_development.md
- developer_manual/env/pycharm/remote_development.md
- developer_manual/env/pycharm/use_pycharm.md
- Services:
- Developing a service: developer_manual/services/developing_an_assemblyline_service.md
- developer_manual/services/adding_a_service_updater.md
- developer_manual/services/run_your_service.md
- Advanced development:
- ServiceBase Class: developer_manual/services/advanced/service_base.md
- ServiceUpdater Class: developer_manual/services/advanced/service_updater_base.md
- Request Class: developer_manual/services/advanced/request.md
- Result Class: developer_manual/services/advanced/result.md
- ResultSection Class: developer_manual/services/advanced/result_section.md
- developer_manual/services/advanced/service_manifest.md
- developer_manual/services/advanced/service_updater_upgrade.md
- Infrastructure: developer_manual/core/infrastructure.md
- Frontend: developer_manual/frontend/frontend.md
- Documentation: developer_manual/docs/docs.md
- Data Ontology:
- Getting Started: odm/getting_started.md
- Models:
- PostprocessAction: odm/models/actions.md
- Alert: odm/models/alert.md
- CachedFile: odm/models/cached_file.md
- Config: odm/models/config.md
- EmptyResult: odm/models/emptyresult.md
- Error: odm/models/error.md
- File: odm/models/file.md
- FileScore: odm/models/filescore.md
- Heuristic: odm/models/heuristic.md
- Ontology:
- Filetypes:
- PE: odm/models/ontology/filetypes/pe.md
- ResultOntology: odm/models/ontology/ontology.md
- Results:
- Antivirus: odm/models/ontology/results/antivirus.md
- MalwareConfig: odm/models/ontology/results/malware_config.md
- NetworkConnection: odm/models/ontology/results/network.md
- Process: odm/models/ontology/results/process.md
- Sandbox: odm/models/ontology/results/sandbox.md
- Signature: odm/models/ontology/results/signature.md
- ReplayConfig: odm/models/replay.md
- Result: odm/models/result.md
- Safelist: odm/models/safelist.md
- Service: odm/models/service.md
- ServiceDelta: odm/models/service_delta.md
- Signature: odm/models/signature.md
- Statistics: odm/models/statistics.md
- Submission: odm/models/submission.md
- SubmissionSummary: odm/models/submission_summary.md
- SubmissionTree: odm/models/submission_tree.md
- Tagging: odm/models/tagging.md
- User: odm/models/user.md
- UserFavorites: odm/models/user_favorites.md
- UserSettings: odm/models/user_settings.md
- Workflow: odm/models/workflow.md
- Messages:
- AlertMessage: odm/messages/alert.md
- AlerterMessage: odm/messages/alerter_heartbeat.md
- ArchiveMessage: odm/messages/archive_heartbeat.md
- DispatcherMessage: odm/messages/dispatcher_heartbeat.md
- DispatcherCommandMessage: odm/messages/dispatching.md
- ExpiryMessage: odm/messages/expiry_heartbeat.md
- IngestMessage: odm/messages/ingest_heartbeat.md
- MetricsMessage: odm/messages/metrics.md
- ScalerMessage: odm/messages/scaler_heartbeat.md
- ScalerStatusMessage: odm/messages/scaler_status_heartbeat.md
- ServiceMessage: odm/messages/service_heartbeat.md
- ServiceTimingMessage: odm/messages/service_timing_heartbeat.md
- SubmissionMessage: odm/messages/submission.md
- TaskMessage: odm/messages/task.md
- VacuumMessage: odm/messages/vacuum_heartbeat.md
plugins:
- glightbox:
auto_caption: false
caption_position: bottom
draggable: false
effect: zoom
height: auto
loop: false
skip_classes:
- no-zoom
touchNavigation: true
width: 100%
zoomable: true
- search
- i18n:
default_language: en
languages:
en: english
fr: français
nav_translations:
fr:
Developer's guide: Guide du développeur
Home: Accueil
Integration: Intégration
Overview: Tour
User's manual: Manuel d'utilisateur
repo_url: https://github.com/CybercentreCanada/assemblyline4_docs
site_name: Assemblyline 4
theme:
custom_dir: override
favicon: images/crane.png
features:
- navigation.tabs
- navigation.expand
- navigation.top
icon:
repo: fontawesome/brands/github
language: en
logo: images/crane.png
name: material
palette:
- media: '(prefers-color-scheme: dark)'
scheme: slate
toggle:
icon: material/toggle-switch-off-outline
name: Switch to light mode
- media: '(prefers-color-scheme: light)'
scheme: default
toggle:
icon: material/toggle-switch
name: Switch to dark mode
static_templates:
- 404.html