-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzensical.toml
More file actions
190 lines (165 loc) · 6.25 KB
/
Copy pathzensical.toml
File metadata and controls
190 lines (165 loc) · 6.25 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
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
[project]
site_name = "trustsight"
site_description = "Audits AUR PKGBUILDs before you update: catches careless malice and structural risk, and tells you what it can't verify."
site_url = "https://docs.trustsight.org/"
docs_dir = "docs"
site_dir = "site"
copyright = "© 2026 Emiliano Gandini Outeda"
extra_css = ["stylesheets/extra.css"]
# ==============================================================================
# Theme
# ==============================================================================
[project.theme]
variant = "modern"
custom_dir = "overrides"
favicon = "assets/images/favicon.png"
font.text = "Ubuntu"
font.code = "JetBrains Mono"
features = [
"navigation.instant",
"navigation.instant.prefetch",
"navigation.tabs",
"navigation.indexes",
"navigation.top",
"navigation.footer",
"search.suggest",
"search.highlight",
"content.code.copy",
"content.code.annotate",
"toc.follow",
]
[[project.theme.palette]]
scheme = "default"
primary = "custom"
accent = "custom"
toggle.icon = "lucide/sun"
toggle.name = "Switch to dark mode"
[[project.theme.palette]]
scheme = "slate"
primary = "custom"
accent = "custom"
toggle.icon = "lucide/moon"
toggle.name = "Switch to light mode"
# ==============================================================================
# Footer / extra
# ==============================================================================
[[project.extra.social]]
icon = "fontawesome/brands/github"
link = "https://github.com/emiliano-go/trustsight"
name = "trustsight on GitHub"
[[project.extra.social]]
icon = "fontawesome/brands/python"
link = "https://pypi.org/project/trustsight/"
name = "trustsight on PyPI"
# ==============================================================================
# Navigation
# ==============================================================================
[[project.nav]]
Overview = [
{Home = "index.md"},
{Changelog = "changelog.md"},
{License = "license.md"},
]
[[project.nav]]
Security = [
{"Security Model" = "security.md"},
]
[[project.nav]]
"Get Started" = [
{Overview = "getting-started/index.md"},
{Installation = "getting-started/installation.md"},
{Quickstart = "getting-started/quickstart.md"},
{"Reading a Report" = "getting-started/reading-a-report.md"},
]
[[project.nav]]
Guides = [
{Overview = "guides/index.md"},
{"Auditing Before Update" = "guides/auditing-before-update.md"},
{"Using in CI" = "guides/using-in-ci.md"},
{"Acting on a Flag" = "guides/acting-on-a-flag.md"},
{"Configuring Rules and Weights" = "guides/configuring-rules-and-weights.md"},
{"Tuning False Positives" = "guides/tuning-false-positives.md"},
]
[[project.nav]]
Rules = [
{"Rules Overview" = "reference/rules/index.md"},
{"Rule System" = "reference/rules/system.md"},
{"Fetch and Execution" = "reference/rules/fetch-and-execution.md"},
{Obfuscation = "reference/rules/obfuscation.md"},
{"Deception and Anti-Analysis" = "reference/rules/deception.md"},
{"Install and Persistence" = "reference/rules/install-and-persist.md"},
{"Staging and Reconnaissance" = "reference/rules/staging-and-recon.md"},
{"Integrity and Verification" = "reference/rules/integrity.md"},
{"Naming and Dependencies" = "reference/rules/naming-and-dependency.md"},
{"Maintainer and Metadata" = "reference/rules/maintainer-and-metadata.md"},
{"Temporal Context" = "reference/rules/temporal.md"},
{Composition = "reference/rules/composition.md"},
{"Count-Based" = "reference/rules/count-based.md"},
{"Corpus Behavioral" = "reference/rules/corpus-behavioral.md"},
{Crossfire = "reference/rules/crossfire.md"},
{Sabotage = "reference/rules/sabotage.md"},
{Unverifiable = "reference/rules/unverifiable.md"},
]
[[project.nav]]
Reference = [
{Overview = "reference/index.md"},
{"CLI Reference" = "reference/cli.md"},
{"Python API" = "reference/python-api.md"},
{"Configuration Reference" = "reference/configuration.md"},
{"Report Schema" = "reference/report-schema.md"},
{"Evidence Tiers" = "reference/evidence-tiers.md"},
{"Baseline Keys" = "reference/baseline-keys.md"},
{"IOC Federation" = "reference/ioc.md"},
{"Exit Codes" = "reference/exit-codes.md"},
]
[[project.nav]]
Explanation = [
{Overview = "explanation/index.md"},
{"Scoring Philosophy" = "explanation/scoring-philosophy.md"},
{"Cold Start and Maturity" = "explanation/cold-start-and-maturity.md"},
{"Corpus and Priors" = "explanation/corpus-and-priors.md"},
{"Fire Rates" = "explanation/fire-rates.md"},
{"What TrustSight Cannot See" = "explanation/what-trustsight-cannot-see.md"},
{"Seed Provenance" = "explanation/seed-provenance.md"},
{"Benchmarks and Methodology" = "explanation/benchmarks-and-methodology.md"},
{"Sandboxing the Tokenizer" = "explanation/sandboxing-the-tokenizer.md"},
]
[[project.nav]]
Contributing = [
{Overview = "contributing/index.md"},
{"Development Setup" = "contributing/development-setup.md"},
{"Writing a Rule" = "contributing/writing-a-rule.md"},
{"Re-baselining" = "contributing/re-baselining.md"},
{"Publishing Baselines" = "contributing/publishing-baselines.md"},
{Releasing = "contributing/releasing.md"},
{"Reviewing a Security Control" = "contributing/security-review.md"},
{"Blinded Evaluation" = "contributing/blinded-evaluation.md"},
]
# ==============================================================================
# Markdown extensions
# ==============================================================================
[project.markdown_extensions]
tables = {}
admonition = {}
toc = { permalink = true }
"seoslug.contrib.zensical" = {
canonical_host = "docs.trustsight.org",
public_base_url = "https://docs.trustsight.org/",
site_name = "trustsight",
title_template = "{title} - TrustSight",
default_og_image = "https://docs.trustsight.org/assets/images/trustsight-banner.png",
publisher_name = "Emiliano Gandini Outeda",
locale = "en_US",
twitter_site = "@emiliano_go_",
auto_generate_schema = true,
debug_dir = ".seo-debug",
}
[project.markdown_extensions.pymdownx]
highlight = { anchor_linenums = true, line_spans = "__span", pygments_lang_class = true }
inlinehilite = {}
snippets = {}
superfences = {}
tabbed = { alternate_style = true }
tasklist = { custom_checkbox = true }
[project.markdown_extensions.attr_list]
[project.markdown_extensions.md_in_html]