Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Detailed ANSSI hygiene guide #1152

Merged
merged 5 commits into from
Dec 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ Checkout the [library](/backend/library/libraries/) and [tools](/tools/) for the

A library can be a framework, a catalog of threats or reference controls, and even a custom risk matrix.

Take a look at the `tools` directory and its dedicated readme. The `convert_library.py` script will help you create your library from a simple Excel file. Once you have structured your items in that format, just run the script and use the resulting yaml file.
Take a look at the `tools` directory and its [dedicated README](tools/README.md). The `convert_library.py` script will help you create your library from a simple Excel file. Once you have structured your items in that format, just run the script and use the resulting yaml file.

You can also find some specific converters in the tools directory (e.g. for CIS or CCM Controls).

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Generated by Django 5.1.1 on 2024-12-07 22:10

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("core", "0044_qualification"),
]

operations = [
migrations.AlterField(
model_name="appliedcontrol",
name="category",
field=models.CharField(
blank=True,
choices=[
("policy", "Policy"),
("process", "Process"),
("technical", "Technical"),
("physical", "Physical"),
("procedure", "Procedure"),
],
max_length=20,
null=True,
verbose_name="Category",
),
),
migrations.AlterField(
model_name="referencecontrol",
name="category",
field=models.CharField(
blank=True,
choices=[
("policy", "Policy"),
("process", "Process"),
("technical", "Technical"),
("physical", "Physical"),
("procedure", "Procedure"),
],
max_length=20,
null=True,
verbose_name="Category",
),
),
]
1 change: 1 addition & 0 deletions backend/core/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -780,6 +780,7 @@ class ReferenceControl(ReferentialObjectMixin, I18nObjectMixin):
("process", _("Process")),
("technical", _("Technical")),
("physical", _("Physical")),
("procedure", _("Procedure")),
]

CSF_FUNCTION = [
Expand Down
3,214 changes: 3,214 additions & 0 deletions backend/library/libraries/anssi-guide-hygiene-detail.yaml

Large diffs are not rendered by default.

Loading
Loading