-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit dacf43a
Showing
23 changed files
with
1,915 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# This workflow will install Python dependencies, run tests and lint with a single version of Python | ||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python | ||
|
||
name: Python application | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-22.04 | ||
permissions: | ||
contents: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python 3.10 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.10" | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install flake8 pytest | ||
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | ||
- name: Lint with flake8 | ||
run: | | ||
# stop the build if there are Python syntax errors or undefined names | ||
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics | ||
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide | ||
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics | ||
python3 schema_creator.py | ||
python3 database_filler.py | ||
- name: release | ||
uses: ncipollo/release-action@v1 | ||
with: | ||
artifacts: "requirements.db" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
*/__pycache__/ | ||
output.prisma | ||
requirements.db | ||
.env/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
This file lists the main contributions. For the full list of contributions, please refer to the commit log. | ||
|
||
* Alessandro Tomasi ([@wry-run](https://www.github.com/wry-run)) | ||
- initial data extraction and structuring from | ||
- ANSSI - Recommandations de sécurité relatives à TLS `v1.2` | ||
- BSI - `TR-02102-2` and `TR-03116-4` | ||
- NIST - `SP 800-52 Rev. 2` | ||
|
||
* Salvatore Manfredi ([@NetBender](https://www.github.com/NetBender)) | ||
- initial data review, formatting and translation | ||
- data extraction from | ||
- AgID - `AgID-RACCSECTLS-01` | ||
- Mozilla - Recommended configurations `v5.6` | ||
- NIST - `SP 800-131A Rev. 2` | ||
|
||
* Riccardo Germenia ([@Odinmylord](https://www.github.com/Odinmylord)) | ||
- data review, format standardization | ||
- addition of contextual notes to store references and reasonings | ||
- data extraction from | ||
- Mozilla - Recommended configurations `v5.7` | ||
- NIST - `SP 800-131A Rev. 2` and `SP 800-186` | ||
- dataset structuring | ||
- database schema definition (Prisma) | ||
- reproducible scheme generation | ||
- reproducible SQLite database generation |
Oops, something went wrong.