Skip to content

Commit

Permalink
Detailed ANSSI hygiene guide (#1152)
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-intuitem authored Dec 8, 2024
1 parent 1ef81e4 commit 063d3f9
Show file tree
Hide file tree
Showing 26 changed files with 4,469 additions and 81 deletions.
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

0 comments on commit 063d3f9

Please sign in to comment.