Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Odinmylord committed Jun 11, 2024
0 parents commit dacf43a
Show file tree
Hide file tree
Showing 23 changed files with 1,915 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/python-app.yml
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"
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
*/__pycache__/
output.prisma
requirements.db
.env/
25 changes: 25 additions & 0 deletions CREDITS.md
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
Loading

0 comments on commit dacf43a

Please sign in to comment.