├── LICENSE ├── README.md ├── aws-cloudformation └── template-1-0.yaml ├── docker-compose ├── docker-compose.yaml └── nginx.conf ├── helm-chart ├── Chart.lock ├── Chart.yaml ├── charts │ └── postgresql-12.0.0.tgz ├── storageclass.yaml ├── templates │ ├── _helpers.tpl │ ├── backend-auth-deployment.yaml │ ├── backend-auth-service.yaml │ ├── backend-main-deployment.yaml │ ├── backend-main-service.yaml │ ├── configmap.yaml │ ├── frontend-deployment.yaml │ ├── frontend-service.yaml │ ├── hpa.yaml │ ├── ingress-backend-auth.yaml │ ├── ingress-backend-main.yaml │ ├── ingress-dependents.yaml │ ├── ingress-frontend.yaml │ ├── namespace.yaml │ ├── secret.yaml │ └── service-account.yaml └── values.yaml ├── src └── backend │ ├── __init__.py │ ├── alembic.ini │ ├── alembic │ ├── README │ ├── __pycache__ │ │ └── env.cpython-310.pyc │ ├── env.py │ ├── script.py.mako │ └── versions │ │ ├── 1735291973_vulnerability_scrore_migration_file.py │ │ ├── 1736666153_vul_lower_case_sev.py │ │ ├── 1736687903_whitelist_name_not_nullable.py │ │ ├── 1742713011_license_migration.py │ │ ├── 6af7a5ce8406_initial_migration_file.py │ │ └── __pycache__ │ │ ├── 1735291973_vulnerability_scrore_migration_file.cpython-310.pyc │ │ └── 6af7a5ce8406_initial_migration_file.cpython-310.pyc │ ├── app │ ├── __init__.py │ ├── core │ │ ├── config.py │ │ ├── db.py │ │ ├── logger.py │ │ └── security.py │ ├── main.py │ ├── modules │ │ ├── auth │ │ │ ├── __init__.py │ │ │ ├── auth_controller.py │ │ │ ├── auth_service.py │ │ │ ├── auth_utils.py │ │ │ └── schemas │ │ │ │ └── auth_schema.py │ │ ├── groups │ │ │ ├── __init__.py │ │ │ ├── groups_controller.py │ │ │ ├── groups_service.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ └── group_model.py │ │ │ └── schemas │ │ │ │ └── group_schema.py │ │ ├── incidents │ │ │ ├── __init__.py │ │ │ ├── incidents_controller.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── activity_model.py │ │ │ │ ├── comment_model.py │ │ │ │ └── incident_model.py │ │ │ ├── schemas │ │ │ │ ├── activity_schemas.py │ │ │ │ ├── comment_schemas.py │ │ │ │ └── incident_schemas.py │ │ │ └── services │ │ │ │ ├── activity_service.py │ │ │ │ ├── comment_service.py │ │ │ │ └── incident_service.py │ │ ├── jiraAlerts │ │ │ ├── jiraAlerts_controller.py │ │ │ ├── jiraAlerts_service.py │ │ │ ├── models │ │ │ │ └── model.py │ │ │ └── schemas │ │ │ │ └── schema.py │ │ ├── licenses │ │ │ ├── __init__.py │ │ │ ├── licenses_controller.py │ │ │ ├── licenses_model.py │ │ │ ├── licenses_schema.py │ │ │ └── licesses_service.py │ │ ├── live_commits │ │ │ ├── __init__.py │ │ │ ├── live_commits_controller.py │ │ │ ├── live_commits_scans_service.py │ │ │ ├── live_commits_service.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── live_commits.py │ │ │ │ └── live_commits_scan.py │ │ │ └── schemas │ │ │ │ └── live_commits_schemas.py │ │ ├── pr │ │ │ ├── __init__.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── pr.py │ │ │ │ └── pr_scan.py │ │ │ ├── pr_controller.py │ │ │ ├── pr_scan_service.py │ │ │ ├── pr_service.py │ │ │ └── schemas │ │ │ │ ├── pr_scan_schema.py │ │ │ │ └── pr_schema.py │ │ ├── repository │ │ │ ├── __init__.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── repository.py │ │ │ │ └── repository_scan.py │ │ │ ├── repository_scan_worker.py │ │ │ ├── repository_service.py │ │ │ ├── respository_controller.py │ │ │ └── schemas │ │ │ │ └── repository_schema.py │ │ ├── scoring │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ │ ├── __init__.py │ │ │ │ └── model.py │ │ │ ├── repository_property_controller.py │ │ │ ├── repository_property_service.py │ │ │ ├── schema │ │ │ │ └── schema.py │ │ │ ├── scoring_controller.py │ │ │ ├── scoring_cron.py │ │ │ └── scoring_service.py │ │ ├── secrets │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ └── secrets_model.cpython-310.pyc │ │ │ │ └── secrets_model.py │ │ │ ├── schema │ │ │ │ ├── __pycache__ │ │ │ │ │ └── secret_schema.cpython-310.pyc │ │ │ │ └── secret_schema.py │ │ │ ├── secret_controller.py │ │ │ └── secret_service.py │ │ ├── slack_integration │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ └── model.cpython-310.pyc │ │ │ │ └── model.py │ │ │ ├── schema │ │ │ │ ├── __pycache__ │ │ │ │ │ └── schemas.cpython-310.pyc │ │ │ │ └── schemas.py │ │ │ ├── slack_integration_controller.py │ │ │ └── slack_integration_service.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ └── user.cpython-310.pyc │ │ │ │ └── user.py │ │ │ ├── schemas │ │ │ │ ├── __pycache__ │ │ │ │ │ └── user_schema.cpython-310.pyc │ │ │ │ └── user_schema.py │ │ │ ├── user_controller.py │ │ │ └── user_service.py │ │ ├── vc │ │ │ ├── __init__.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ └── vc.cpython-310.pyc │ │ │ │ └── vc.py │ │ │ ├── schemas │ │ │ │ ├── __pycache__ │ │ │ │ │ └── vc_schema.cpython-310.pyc │ │ │ │ └── vc_schema.py │ │ │ ├── vc_controller.py │ │ │ └── vc_service.py │ │ ├── vulnerability │ │ │ ├── __init__.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ └── vulnerability_model.cpython-310.pyc │ │ │ │ └── vulnerability_model.py │ │ │ ├── schemas │ │ │ │ ├── __pycache__ │ │ │ │ │ └── vulnerability_schema.cpython-310.pyc │ │ │ │ └── vulnerability_schema.py │ │ │ ├── vulnerability_controller.py │ │ │ └── vulnerability_service.py │ │ ├── webhook │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ ├── event_handlers │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── live_commits_handler.cpython-310.pyc │ │ │ │ │ ├── pr_handler.cpython-310.pyc │ │ │ │ │ └── repo_creation_handler.cpython-310.pyc │ │ │ │ ├── live_commits_handler.py │ │ │ │ ├── pr_handler.py │ │ │ │ └── repo_creation_handler.py │ │ │ ├── schemas │ │ │ │ ├── webhook_live_commits_schemas.py │ │ │ │ └── webhook_pr_schemas.py │ │ │ ├── webhook_controller.py │ │ │ └── webhook_service.py │ │ ├── webhookConfig │ │ │ ├── __init__.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ └── webhookConfig.cpython-310.pyc │ │ │ │ └── webhookConfig.py │ │ │ ├── schemas │ │ │ │ ├── __pycache__ │ │ │ │ │ └── webhook_schema.cpython-310.pyc │ │ │ │ └── webhook_schema.py │ │ │ ├── webhook_config_controller.py │ │ │ └── webhook_config_service.py │ │ └── whitelist │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ └── whitelist_model.cpython-310.pyc │ │ │ └── whitelist_model.py │ │ │ ├── schema │ │ │ ├── __pycache__ │ │ │ │ └── whitelist_schema.cpython-310.pyc │ │ │ └── whitelist_schema.py │ │ │ ├── whitelist_controller.py │ │ │ └── whitelist_service.py │ ├── secret_scanner │ │ ├── live_commits_secret_scanner.py │ │ └── pr_secret_scanner.py │ └── utils │ │ ├── clone_repo.py │ │ ├── delete_folder.py │ │ ├── encoding_base_64.py │ │ ├── error_handling.py │ │ ├── fetch_repos.py │ │ ├── generateSecret.py │ │ ├── mark_severity.py │ │ ├── pagination.py │ │ ├── process_repo_data.py │ │ ├── sbom_generator.py │ │ ├── scan_repo_secrets.py │ │ ├── scan_secrets.py │ │ ├── secret_scanning │ │ ├── build_headers.py │ │ ├── create_commit_diff_file.py │ │ ├── extract_and_validate_signature.py │ │ ├── extract_event_info.py │ │ ├── fetch_pr_commits.py │ │ ├── findLooseScanFilePath.py │ │ ├── find_commit_loose_scan_file_paths.py │ │ ├── format_raw_data.py │ │ └── handle_pr_actions.py │ │ ├── store_secrets.py │ │ ├── string.py │ │ ├── validate_git_actions.py │ │ ├── vulnerability │ │ ├── confused.py │ │ └── grype.py │ │ └── whitelist │ │ ├── add_secret_str.py │ │ ├── add_vulnerability_str.py │ │ ├── check_secrets_whitelisted.py │ │ ├── check_vulnerability_whitelisted.py │ │ ├── update_pr_status.py │ │ └── update_secret.py │ ├── nginx.conf │ ├── package.json │ ├── pnpm-lock.yaml │ ├── requirements.txt │ └── v2 │ ├── .dockerignore │ ├── .editorconfig │ ├── .gitignore │ ├── .npmrc │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── apps │ └── user-auth │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ ├── eslint.config.cjs │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ ├── app │ │ │ ├── app.controller.ts │ │ │ ├── app.module.ts │ │ │ ├── auth │ │ │ │ ├── auth.controller.spec.ts │ │ │ │ ├── auth.controller.ts │ │ │ │ ├── auth.module.ts │ │ │ │ ├── auth.service.spec.ts │ │ │ │ ├── auth.service.ts │ │ │ │ └── dto │ │ │ │ │ └── auth.dto.ts │ │ │ ├── eula │ │ │ │ ├── dto │ │ │ │ │ └── accept-eula.dto.ts │ │ │ │ ├── entities │ │ │ │ │ └── eula.entity.ts │ │ │ │ ├── eula.controller.spec.ts │ │ │ │ ├── eula.controller.ts │ │ │ │ ├── eula.module.ts │ │ │ │ ├── eula.service.spec.ts │ │ │ │ └── eula.service.ts │ │ │ ├── sso │ │ │ │ ├── dto │ │ │ │ │ ├── add-sso-config.dto.ts │ │ │ │ │ └── get-sso-config-query.dto.ts │ │ │ │ ├── entities │ │ │ │ │ └── sso-config.entity.ts │ │ │ │ ├── enums │ │ │ │ │ └── sso-config-type.enum.ts │ │ │ │ ├── mock │ │ │ │ │ └── sso.mock.ts │ │ │ │ ├── sso.controller.spec.ts │ │ │ │ ├── sso.controller.ts │ │ │ │ ├── sso.module.ts │ │ │ │ ├── sso.service.spec.ts │ │ │ │ └── sso.service.ts │ │ │ ├── types │ │ │ │ └── express.d.ts │ │ │ └── user │ │ │ │ ├── dto │ │ │ │ ├── create-user.dto.ts │ │ │ │ ├── get-user.dto.ts │ │ │ │ └── update-user.dto.ts │ │ │ │ ├── entities │ │ │ │ └── user.entity.ts │ │ │ │ ├── enums │ │ │ │ └── user-role.enum.ts │ │ │ │ ├── mock │ │ │ │ └── user.mock.ts │ │ │ │ ├── user.controller.spec.ts │ │ │ │ ├── user.controller.ts │ │ │ │ ├── user.module.ts │ │ │ │ ├── user.service.spec.ts │ │ │ │ └── user.service.ts │ │ ├── data-source.ts │ │ ├── main.ts │ │ └── migrations │ │ │ ├── 1737491305595-migration.ts │ │ │ ├── 1737997572654-migration.ts │ │ │ ├── 1738258085900-migration.ts │ │ │ ├── 1738604071838-migration.ts │ │ │ └── 1738820433484-migration.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── webpack.config.js │ ├── eslint.config.cjs │ ├── jest.config.ts │ ├── jest.preset.js │ ├── libs │ ├── core │ │ ├── README.md │ │ ├── eslint.config.cjs │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── core.module.ts │ │ │ │ └── core.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── decorators │ │ ├── README.md │ │ ├── eslint.config.cjs │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── decorators.module.ts │ │ │ │ ├── filters.decorators.ts │ │ │ │ └── roles.decorators.ts │ │ ├── tsconfig.json │ │ └── tsconfig.lib.json │ ├── dto │ │ ├── README.md │ │ ├── eslint.config.cjs │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── cloud-events.dto.ts │ │ │ │ ├── dto.module.ts │ │ │ │ ├── filters.dto.ts │ │ │ │ └── pagination.dto.ts │ │ ├── tsconfig.json │ │ └── tsconfig.lib.json │ ├── entities │ │ ├── README.md │ │ ├── eslint.config.cjs │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── entities.module.ts │ │ │ │ └── user │ │ │ │ └── user.entity.ts │ │ ├── tsconfig.json │ │ └── tsconfig.lib.json │ ├── enums │ │ ├── README.md │ │ ├── eslint.config.cjs │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── enums.module.ts │ │ │ │ ├── filters.enums.ts │ │ │ │ └── user.enums.ts │ │ ├── tsconfig.json │ │ └── tsconfig.lib.json │ ├── guards │ │ ├── README.md │ │ ├── eslint.config.cjs │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── auth.gaurd.ts │ │ │ │ ├── gaurds.module.ts │ │ │ │ └── roles.gaurd.ts │ │ ├── tsconfig.json │ │ └── tsconfig.lib.json │ ├── types │ │ ├── README.md │ │ ├── eslint.config.cjs │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── filters.types.ts │ │ │ │ └── types.module.ts │ │ ├── tsconfig.json │ │ └── tsconfig.lib.json │ └── utils │ │ ├── README.md │ │ ├── eslint.config.cjs │ │ ├── project.json │ │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── base64.utils.ts │ │ │ ├── bcrypt.utils.ts │ │ │ ├── modules.utils.ts │ │ │ └── utils.module.ts │ │ ├── tsconfig.json │ │ └── tsconfig.lib.json │ ├── nx.json │ ├── package.json │ ├── pnpm-lock.yaml │ └── tsconfig.base.json └── static ├── Defendstack-gif.gif └── defendstack-logo.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/README.md -------------------------------------------------------------------------------- /aws-cloudformation/template-1-0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/aws-cloudformation/template-1-0.yaml -------------------------------------------------------------------------------- /docker-compose/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/docker-compose/docker-compose.yaml -------------------------------------------------------------------------------- /docker-compose/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/docker-compose/nginx.conf -------------------------------------------------------------------------------- /helm-chart/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/helm-chart/Chart.lock -------------------------------------------------------------------------------- /helm-chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/helm-chart/Chart.yaml -------------------------------------------------------------------------------- /helm-chart/charts/postgresql-12.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/helm-chart/charts/postgresql-12.0.0.tgz -------------------------------------------------------------------------------- /helm-chart/storageclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/helm-chart/storageclass.yaml -------------------------------------------------------------------------------- /helm-chart/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/helm-chart/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-chart/templates/backend-auth-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/helm-chart/templates/backend-auth-deployment.yaml -------------------------------------------------------------------------------- /helm-chart/templates/backend-auth-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/helm-chart/templates/backend-auth-service.yaml -------------------------------------------------------------------------------- /helm-chart/templates/backend-main-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/helm-chart/templates/backend-main-deployment.yaml -------------------------------------------------------------------------------- /helm-chart/templates/backend-main-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/helm-chart/templates/backend-main-service.yaml -------------------------------------------------------------------------------- /helm-chart/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/helm-chart/templates/configmap.yaml -------------------------------------------------------------------------------- /helm-chart/templates/frontend-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/helm-chart/templates/frontend-deployment.yaml -------------------------------------------------------------------------------- /helm-chart/templates/frontend-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/helm-chart/templates/frontend-service.yaml -------------------------------------------------------------------------------- /helm-chart/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/helm-chart/templates/hpa.yaml -------------------------------------------------------------------------------- /helm-chart/templates/ingress-backend-auth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/helm-chart/templates/ingress-backend-auth.yaml -------------------------------------------------------------------------------- /helm-chart/templates/ingress-backend-main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/helm-chart/templates/ingress-backend-main.yaml -------------------------------------------------------------------------------- /helm-chart/templates/ingress-dependents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/helm-chart/templates/ingress-dependents.yaml -------------------------------------------------------------------------------- /helm-chart/templates/ingress-frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/helm-chart/templates/ingress-frontend.yaml -------------------------------------------------------------------------------- /helm-chart/templates/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/helm-chart/templates/namespace.yaml -------------------------------------------------------------------------------- /helm-chart/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/helm-chart/templates/secret.yaml -------------------------------------------------------------------------------- /helm-chart/templates/service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/helm-chart/templates/service-account.yaml -------------------------------------------------------------------------------- /helm-chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/helm-chart/values.yaml -------------------------------------------------------------------------------- /src/backend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/alembic.ini -------------------------------------------------------------------------------- /src/backend/alembic/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /src/backend/alembic/__pycache__/env.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/alembic/__pycache__/env.cpython-310.pyc -------------------------------------------------------------------------------- /src/backend/alembic/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/alembic/env.py -------------------------------------------------------------------------------- /src/backend/alembic/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/alembic/script.py.mako -------------------------------------------------------------------------------- /src/backend/alembic/versions/1735291973_vulnerability_scrore_migration_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/alembic/versions/1735291973_vulnerability_scrore_migration_file.py -------------------------------------------------------------------------------- /src/backend/alembic/versions/1736666153_vul_lower_case_sev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/alembic/versions/1736666153_vul_lower_case_sev.py -------------------------------------------------------------------------------- /src/backend/alembic/versions/1736687903_whitelist_name_not_nullable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/alembic/versions/1736687903_whitelist_name_not_nullable.py -------------------------------------------------------------------------------- /src/backend/alembic/versions/1742713011_license_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/alembic/versions/1742713011_license_migration.py -------------------------------------------------------------------------------- /src/backend/alembic/versions/6af7a5ce8406_initial_migration_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/alembic/versions/6af7a5ce8406_initial_migration_file.py -------------------------------------------------------------------------------- /src/backend/alembic/versions/__pycache__/1735291973_vulnerability_scrore_migration_file.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/alembic/versions/__pycache__/1735291973_vulnerability_scrore_migration_file.cpython-310.pyc -------------------------------------------------------------------------------- /src/backend/alembic/versions/__pycache__/6af7a5ce8406_initial_migration_file.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/alembic/versions/__pycache__/6af7a5ce8406_initial_migration_file.cpython-310.pyc -------------------------------------------------------------------------------- /src/backend/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/app/core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/core/config.py -------------------------------------------------------------------------------- /src/backend/app/core/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/core/db.py -------------------------------------------------------------------------------- /src/backend/app/core/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/core/logger.py -------------------------------------------------------------------------------- /src/backend/app/core/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/core/security.py -------------------------------------------------------------------------------- /src/backend/app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/main.py -------------------------------------------------------------------------------- /src/backend/app/modules/auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/app/modules/auth/auth_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/auth/auth_controller.py -------------------------------------------------------------------------------- /src/backend/app/modules/auth/auth_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/auth/auth_service.py -------------------------------------------------------------------------------- /src/backend/app/modules/auth/auth_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/auth/auth_utils.py -------------------------------------------------------------------------------- /src/backend/app/modules/auth/schemas/auth_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/auth/schemas/auth_schema.py -------------------------------------------------------------------------------- /src/backend/app/modules/groups/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/app/modules/groups/groups_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/groups/groups_controller.py -------------------------------------------------------------------------------- /src/backend/app/modules/groups/groups_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/groups/groups_service.py -------------------------------------------------------------------------------- /src/backend/app/modules/groups/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/app/modules/groups/models/group_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/groups/models/group_model.py -------------------------------------------------------------------------------- /src/backend/app/modules/groups/schemas/group_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/groups/schemas/group_schema.py -------------------------------------------------------------------------------- /src/backend/app/modules/incidents/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/app/modules/incidents/incidents_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/incidents/incidents_controller.py -------------------------------------------------------------------------------- /src/backend/app/modules/incidents/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/app/modules/incidents/models/activity_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/incidents/models/activity_model.py -------------------------------------------------------------------------------- /src/backend/app/modules/incidents/models/comment_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/incidents/models/comment_model.py -------------------------------------------------------------------------------- /src/backend/app/modules/incidents/models/incident_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/incidents/models/incident_model.py -------------------------------------------------------------------------------- /src/backend/app/modules/incidents/schemas/activity_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/incidents/schemas/activity_schemas.py -------------------------------------------------------------------------------- /src/backend/app/modules/incidents/schemas/comment_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/incidents/schemas/comment_schemas.py -------------------------------------------------------------------------------- /src/backend/app/modules/incidents/schemas/incident_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/incidents/schemas/incident_schemas.py -------------------------------------------------------------------------------- /src/backend/app/modules/incidents/services/activity_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/incidents/services/activity_service.py -------------------------------------------------------------------------------- /src/backend/app/modules/incidents/services/comment_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/incidents/services/comment_service.py -------------------------------------------------------------------------------- /src/backend/app/modules/incidents/services/incident_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/incidents/services/incident_service.py -------------------------------------------------------------------------------- /src/backend/app/modules/jiraAlerts/jiraAlerts_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/jiraAlerts/jiraAlerts_controller.py -------------------------------------------------------------------------------- /src/backend/app/modules/jiraAlerts/jiraAlerts_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/jiraAlerts/jiraAlerts_service.py -------------------------------------------------------------------------------- /src/backend/app/modules/jiraAlerts/models/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/jiraAlerts/models/model.py -------------------------------------------------------------------------------- /src/backend/app/modules/jiraAlerts/schemas/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/jiraAlerts/schemas/schema.py -------------------------------------------------------------------------------- /src/backend/app/modules/licenses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/app/modules/licenses/licenses_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/licenses/licenses_controller.py -------------------------------------------------------------------------------- /src/backend/app/modules/licenses/licenses_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/licenses/licenses_model.py -------------------------------------------------------------------------------- /src/backend/app/modules/licenses/licenses_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/licenses/licenses_schema.py -------------------------------------------------------------------------------- /src/backend/app/modules/licenses/licesses_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/licenses/licesses_service.py -------------------------------------------------------------------------------- /src/backend/app/modules/live_commits/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/app/modules/live_commits/live_commits_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/live_commits/live_commits_controller.py -------------------------------------------------------------------------------- /src/backend/app/modules/live_commits/live_commits_scans_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/live_commits/live_commits_scans_service.py -------------------------------------------------------------------------------- /src/backend/app/modules/live_commits/live_commits_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/live_commits/live_commits_service.py -------------------------------------------------------------------------------- /src/backend/app/modules/live_commits/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/app/modules/live_commits/models/live_commits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/live_commits/models/live_commits.py -------------------------------------------------------------------------------- /src/backend/app/modules/live_commits/models/live_commits_scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/live_commits/models/live_commits_scan.py -------------------------------------------------------------------------------- /src/backend/app/modules/live_commits/schemas/live_commits_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/live_commits/schemas/live_commits_schemas.py -------------------------------------------------------------------------------- /src/backend/app/modules/pr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/app/modules/pr/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/app/modules/pr/models/pr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/pr/models/pr.py -------------------------------------------------------------------------------- /src/backend/app/modules/pr/models/pr_scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/pr/models/pr_scan.py -------------------------------------------------------------------------------- /src/backend/app/modules/pr/pr_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/pr/pr_controller.py -------------------------------------------------------------------------------- /src/backend/app/modules/pr/pr_scan_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/pr/pr_scan_service.py -------------------------------------------------------------------------------- /src/backend/app/modules/pr/pr_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/pr/pr_service.py -------------------------------------------------------------------------------- /src/backend/app/modules/pr/schemas/pr_scan_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/pr/schemas/pr_scan_schema.py -------------------------------------------------------------------------------- /src/backend/app/modules/pr/schemas/pr_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/pr/schemas/pr_schema.py -------------------------------------------------------------------------------- /src/backend/app/modules/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/app/modules/repository/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/app/modules/repository/models/repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/repository/models/repository.py -------------------------------------------------------------------------------- /src/backend/app/modules/repository/models/repository_scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/repository/models/repository_scan.py -------------------------------------------------------------------------------- /src/backend/app/modules/repository/repository_scan_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/repository/repository_scan_worker.py -------------------------------------------------------------------------------- /src/backend/app/modules/repository/repository_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/repository/repository_service.py -------------------------------------------------------------------------------- /src/backend/app/modules/repository/respository_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/repository/respository_controller.py -------------------------------------------------------------------------------- /src/backend/app/modules/repository/schemas/repository_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/repository/schemas/repository_schema.py -------------------------------------------------------------------------------- /src/backend/app/modules/scoring/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/app/modules/scoring/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/app/modules/scoring/model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/scoring/model/model.py -------------------------------------------------------------------------------- /src/backend/app/modules/scoring/repository_property_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/scoring/repository_property_controller.py -------------------------------------------------------------------------------- /src/backend/app/modules/scoring/repository_property_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/scoring/repository_property_service.py -------------------------------------------------------------------------------- /src/backend/app/modules/scoring/schema/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/scoring/schema/schema.py -------------------------------------------------------------------------------- /src/backend/app/modules/scoring/scoring_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/scoring/scoring_controller.py -------------------------------------------------------------------------------- /src/backend/app/modules/scoring/scoring_cron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/scoring/scoring_cron.py -------------------------------------------------------------------------------- /src/backend/app/modules/scoring/scoring_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/scoring/scoring_service.py -------------------------------------------------------------------------------- /src/backend/app/modules/secrets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/app/modules/secrets/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/app/modules/secrets/model/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/secrets/model/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /src/backend/app/modules/secrets/model/__pycache__/secrets_model.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/secrets/model/__pycache__/secrets_model.cpython-310.pyc -------------------------------------------------------------------------------- /src/backend/app/modules/secrets/model/secrets_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/secrets/model/secrets_model.py -------------------------------------------------------------------------------- /src/backend/app/modules/secrets/schema/__pycache__/secret_schema.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/secrets/schema/__pycache__/secret_schema.cpython-310.pyc -------------------------------------------------------------------------------- /src/backend/app/modules/secrets/schema/secret_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/secrets/schema/secret_schema.py -------------------------------------------------------------------------------- /src/backend/app/modules/secrets/secret_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/secrets/secret_controller.py -------------------------------------------------------------------------------- /src/backend/app/modules/secrets/secret_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/secrets/secret_service.py -------------------------------------------------------------------------------- /src/backend/app/modules/slack_integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/app/modules/slack_integration/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/app/modules/slack_integration/model/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/slack_integration/model/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /src/backend/app/modules/slack_integration/model/__pycache__/model.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/slack_integration/model/__pycache__/model.cpython-310.pyc -------------------------------------------------------------------------------- /src/backend/app/modules/slack_integration/model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/slack_integration/model/model.py -------------------------------------------------------------------------------- /src/backend/app/modules/slack_integration/schema/__pycache__/schemas.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/slack_integration/schema/__pycache__/schemas.cpython-310.pyc -------------------------------------------------------------------------------- /src/backend/app/modules/slack_integration/schema/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/slack_integration/schema/schemas.py -------------------------------------------------------------------------------- /src/backend/app/modules/slack_integration/slack_integration_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/slack_integration/slack_integration_controller.py -------------------------------------------------------------------------------- /src/backend/app/modules/slack_integration/slack_integration_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/slack_integration/slack_integration_service.py -------------------------------------------------------------------------------- /src/backend/app/modules/user/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/app/modules/user/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/app/modules/user/models/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/user/models/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /src/backend/app/modules/user/models/__pycache__/user.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/user/models/__pycache__/user.cpython-310.pyc -------------------------------------------------------------------------------- /src/backend/app/modules/user/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/user/models/user.py -------------------------------------------------------------------------------- /src/backend/app/modules/user/schemas/__pycache__/user_schema.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/user/schemas/__pycache__/user_schema.cpython-310.pyc -------------------------------------------------------------------------------- /src/backend/app/modules/user/schemas/user_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/user/schemas/user_schema.py -------------------------------------------------------------------------------- /src/backend/app/modules/user/user_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/user/user_controller.py -------------------------------------------------------------------------------- /src/backend/app/modules/user/user_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/user/user_service.py -------------------------------------------------------------------------------- /src/backend/app/modules/vc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/app/modules/vc/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/app/modules/vc/models/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/vc/models/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /src/backend/app/modules/vc/models/__pycache__/vc.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/vc/models/__pycache__/vc.cpython-310.pyc -------------------------------------------------------------------------------- /src/backend/app/modules/vc/models/vc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/vc/models/vc.py -------------------------------------------------------------------------------- /src/backend/app/modules/vc/schemas/__pycache__/vc_schema.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/vc/schemas/__pycache__/vc_schema.cpython-310.pyc -------------------------------------------------------------------------------- /src/backend/app/modules/vc/schemas/vc_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/vc/schemas/vc_schema.py -------------------------------------------------------------------------------- /src/backend/app/modules/vc/vc_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/vc/vc_controller.py -------------------------------------------------------------------------------- /src/backend/app/modules/vc/vc_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/vc/vc_service.py -------------------------------------------------------------------------------- /src/backend/app/modules/vulnerability/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/app/modules/vulnerability/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/app/modules/vulnerability/models/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/vulnerability/models/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /src/backend/app/modules/vulnerability/models/__pycache__/vulnerability_model.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/vulnerability/models/__pycache__/vulnerability_model.cpython-310.pyc -------------------------------------------------------------------------------- /src/backend/app/modules/vulnerability/models/vulnerability_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/vulnerability/models/vulnerability_model.py -------------------------------------------------------------------------------- /src/backend/app/modules/vulnerability/schemas/__pycache__/vulnerability_schema.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/vulnerability/schemas/__pycache__/vulnerability_schema.cpython-310.pyc -------------------------------------------------------------------------------- /src/backend/app/modules/vulnerability/schemas/vulnerability_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/vulnerability/schemas/vulnerability_schema.py -------------------------------------------------------------------------------- /src/backend/app/modules/vulnerability/vulnerability_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/vulnerability/vulnerability_controller.py -------------------------------------------------------------------------------- /src/backend/app/modules/vulnerability/vulnerability_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/vulnerability/vulnerability_service.py -------------------------------------------------------------------------------- /src/backend/app/modules/webhook/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/app/modules/webhook/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/webhook/constants.py -------------------------------------------------------------------------------- /src/backend/app/modules/webhook/event_handlers/__pycache__/live_commits_handler.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/webhook/event_handlers/__pycache__/live_commits_handler.cpython-310.pyc -------------------------------------------------------------------------------- /src/backend/app/modules/webhook/event_handlers/__pycache__/pr_handler.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/webhook/event_handlers/__pycache__/pr_handler.cpython-310.pyc -------------------------------------------------------------------------------- /src/backend/app/modules/webhook/event_handlers/__pycache__/repo_creation_handler.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/webhook/event_handlers/__pycache__/repo_creation_handler.cpython-310.pyc -------------------------------------------------------------------------------- /src/backend/app/modules/webhook/event_handlers/live_commits_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/webhook/event_handlers/live_commits_handler.py -------------------------------------------------------------------------------- /src/backend/app/modules/webhook/event_handlers/pr_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/webhook/event_handlers/pr_handler.py -------------------------------------------------------------------------------- /src/backend/app/modules/webhook/event_handlers/repo_creation_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/webhook/event_handlers/repo_creation_handler.py -------------------------------------------------------------------------------- /src/backend/app/modules/webhook/schemas/webhook_live_commits_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/webhook/schemas/webhook_live_commits_schemas.py -------------------------------------------------------------------------------- /src/backend/app/modules/webhook/schemas/webhook_pr_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/webhook/schemas/webhook_pr_schemas.py -------------------------------------------------------------------------------- /src/backend/app/modules/webhook/webhook_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/webhook/webhook_controller.py -------------------------------------------------------------------------------- /src/backend/app/modules/webhook/webhook_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/webhook/webhook_service.py -------------------------------------------------------------------------------- /src/backend/app/modules/webhookConfig/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/app/modules/webhookConfig/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/app/modules/webhookConfig/models/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/webhookConfig/models/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /src/backend/app/modules/webhookConfig/models/__pycache__/webhookConfig.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/webhookConfig/models/__pycache__/webhookConfig.cpython-310.pyc -------------------------------------------------------------------------------- /src/backend/app/modules/webhookConfig/models/webhookConfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/webhookConfig/models/webhookConfig.py -------------------------------------------------------------------------------- /src/backend/app/modules/webhookConfig/schemas/__pycache__/webhook_schema.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/webhookConfig/schemas/__pycache__/webhook_schema.cpython-310.pyc -------------------------------------------------------------------------------- /src/backend/app/modules/webhookConfig/schemas/webhook_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/webhookConfig/schemas/webhook_schema.py -------------------------------------------------------------------------------- /src/backend/app/modules/webhookConfig/webhook_config_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/webhookConfig/webhook_config_controller.py -------------------------------------------------------------------------------- /src/backend/app/modules/webhookConfig/webhook_config_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/webhookConfig/webhook_config_service.py -------------------------------------------------------------------------------- /src/backend/app/modules/whitelist/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/app/modules/whitelist/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/app/modules/whitelist/model/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/whitelist/model/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /src/backend/app/modules/whitelist/model/__pycache__/whitelist_model.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/whitelist/model/__pycache__/whitelist_model.cpython-310.pyc -------------------------------------------------------------------------------- /src/backend/app/modules/whitelist/model/whitelist_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/whitelist/model/whitelist_model.py -------------------------------------------------------------------------------- /src/backend/app/modules/whitelist/schema/__pycache__/whitelist_schema.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/whitelist/schema/__pycache__/whitelist_schema.cpython-310.pyc -------------------------------------------------------------------------------- /src/backend/app/modules/whitelist/schema/whitelist_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/whitelist/schema/whitelist_schema.py -------------------------------------------------------------------------------- /src/backend/app/modules/whitelist/whitelist_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/whitelist/whitelist_controller.py -------------------------------------------------------------------------------- /src/backend/app/modules/whitelist/whitelist_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/modules/whitelist/whitelist_service.py -------------------------------------------------------------------------------- /src/backend/app/secret_scanner/live_commits_secret_scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/secret_scanner/live_commits_secret_scanner.py -------------------------------------------------------------------------------- /src/backend/app/secret_scanner/pr_secret_scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/secret_scanner/pr_secret_scanner.py -------------------------------------------------------------------------------- /src/backend/app/utils/clone_repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/utils/clone_repo.py -------------------------------------------------------------------------------- /src/backend/app/utils/delete_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/utils/delete_folder.py -------------------------------------------------------------------------------- /src/backend/app/utils/encoding_base_64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/utils/encoding_base_64.py -------------------------------------------------------------------------------- /src/backend/app/utils/error_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/utils/error_handling.py -------------------------------------------------------------------------------- /src/backend/app/utils/fetch_repos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/utils/fetch_repos.py -------------------------------------------------------------------------------- /src/backend/app/utils/generateSecret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/utils/generateSecret.py -------------------------------------------------------------------------------- /src/backend/app/utils/mark_severity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/utils/mark_severity.py -------------------------------------------------------------------------------- /src/backend/app/utils/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/utils/pagination.py -------------------------------------------------------------------------------- /src/backend/app/utils/process_repo_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/utils/process_repo_data.py -------------------------------------------------------------------------------- /src/backend/app/utils/sbom_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/utils/sbom_generator.py -------------------------------------------------------------------------------- /src/backend/app/utils/scan_repo_secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/utils/scan_repo_secrets.py -------------------------------------------------------------------------------- /src/backend/app/utils/scan_secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/utils/scan_secrets.py -------------------------------------------------------------------------------- /src/backend/app/utils/secret_scanning/build_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/utils/secret_scanning/build_headers.py -------------------------------------------------------------------------------- /src/backend/app/utils/secret_scanning/create_commit_diff_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/utils/secret_scanning/create_commit_diff_file.py -------------------------------------------------------------------------------- /src/backend/app/utils/secret_scanning/extract_and_validate_signature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/utils/secret_scanning/extract_and_validate_signature.py -------------------------------------------------------------------------------- /src/backend/app/utils/secret_scanning/extract_event_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/utils/secret_scanning/extract_event_info.py -------------------------------------------------------------------------------- /src/backend/app/utils/secret_scanning/fetch_pr_commits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/utils/secret_scanning/fetch_pr_commits.py -------------------------------------------------------------------------------- /src/backend/app/utils/secret_scanning/findLooseScanFilePath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/utils/secret_scanning/findLooseScanFilePath.py -------------------------------------------------------------------------------- /src/backend/app/utils/secret_scanning/find_commit_loose_scan_file_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/utils/secret_scanning/find_commit_loose_scan_file_paths.py -------------------------------------------------------------------------------- /src/backend/app/utils/secret_scanning/format_raw_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/utils/secret_scanning/format_raw_data.py -------------------------------------------------------------------------------- /src/backend/app/utils/secret_scanning/handle_pr_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/utils/secret_scanning/handle_pr_actions.py -------------------------------------------------------------------------------- /src/backend/app/utils/store_secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/utils/store_secrets.py -------------------------------------------------------------------------------- /src/backend/app/utils/string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/utils/string.py -------------------------------------------------------------------------------- /src/backend/app/utils/validate_git_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/utils/validate_git_actions.py -------------------------------------------------------------------------------- /src/backend/app/utils/vulnerability/confused.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/utils/vulnerability/confused.py -------------------------------------------------------------------------------- /src/backend/app/utils/vulnerability/grype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/utils/vulnerability/grype.py -------------------------------------------------------------------------------- /src/backend/app/utils/whitelist/add_secret_str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/utils/whitelist/add_secret_str.py -------------------------------------------------------------------------------- /src/backend/app/utils/whitelist/add_vulnerability_str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/utils/whitelist/add_vulnerability_str.py -------------------------------------------------------------------------------- /src/backend/app/utils/whitelist/check_secrets_whitelisted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/utils/whitelist/check_secrets_whitelisted.py -------------------------------------------------------------------------------- /src/backend/app/utils/whitelist/check_vulnerability_whitelisted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/utils/whitelist/check_vulnerability_whitelisted.py -------------------------------------------------------------------------------- /src/backend/app/utils/whitelist/update_pr_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/utils/whitelist/update_pr_status.py -------------------------------------------------------------------------------- /src/backend/app/utils/whitelist/update_secret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/app/utils/whitelist/update_secret.py -------------------------------------------------------------------------------- /src/backend/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/nginx.conf -------------------------------------------------------------------------------- /src/backend/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "crypto": "^1.0.1" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/backend/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/requirements.txt -------------------------------------------------------------------------------- /src/backend/v2/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/.dockerignore -------------------------------------------------------------------------------- /src/backend/v2/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/.editorconfig -------------------------------------------------------------------------------- /src/backend/v2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/.gitignore -------------------------------------------------------------------------------- /src/backend/v2/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/.npmrc -------------------------------------------------------------------------------- /src/backend/v2/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/.prettierignore -------------------------------------------------------------------------------- /src/backend/v2/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /src/backend/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/README.md -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/.dockerignore: -------------------------------------------------------------------------------- 1 | tmp/ 2 | .env 3 | node_modules/ -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/Dockerfile -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/eslint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/eslint.config.cjs -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/jest.config.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/project.json -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/app/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/app/app.controller.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/app/app.module.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/app/auth/auth.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/app/auth/auth.controller.spec.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/app/auth/auth.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/app/auth/auth.controller.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/app/auth/auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/app/auth/auth.module.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/app/auth/auth.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/app/auth/auth.service.spec.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/app/auth/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/app/auth/auth.service.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/app/auth/dto/auth.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/app/auth/dto/auth.dto.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/app/eula/dto/accept-eula.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/app/eula/dto/accept-eula.dto.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/app/eula/entities/eula.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/app/eula/entities/eula.entity.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/app/eula/eula.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/app/eula/eula.controller.spec.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/app/eula/eula.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/app/eula/eula.controller.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/app/eula/eula.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/app/eula/eula.module.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/app/eula/eula.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/app/eula/eula.service.spec.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/app/eula/eula.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/app/eula/eula.service.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/app/sso/dto/add-sso-config.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/app/sso/dto/add-sso-config.dto.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/app/sso/dto/get-sso-config-query.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/app/sso/dto/get-sso-config-query.dto.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/app/sso/entities/sso-config.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/app/sso/entities/sso-config.entity.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/app/sso/enums/sso-config-type.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/app/sso/enums/sso-config-type.enum.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/app/sso/mock/sso.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/app/sso/mock/sso.mock.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/app/sso/sso.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/app/sso/sso.controller.spec.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/app/sso/sso.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/app/sso/sso.controller.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/app/sso/sso.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/app/sso/sso.module.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/app/sso/sso.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/app/sso/sso.service.spec.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/app/sso/sso.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/app/sso/sso.service.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/app/types/express.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/app/types/express.d.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/app/user/dto/create-user.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/app/user/dto/create-user.dto.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/app/user/dto/get-user.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/app/user/dto/get-user.dto.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/app/user/dto/update-user.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/app/user/dto/update-user.dto.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/app/user/entities/user.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/app/user/entities/user.entity.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/app/user/enums/user-role.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/app/user/enums/user-role.enum.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/app/user/mock/user.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/app/user/mock/user.mock.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/app/user/user.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/app/user/user.controller.spec.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/app/user/user.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/app/user/user.controller.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/app/user/user.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/app/user/user.module.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/app/user/user.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/app/user/user.service.spec.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/app/user/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/app/user/user.service.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/data-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/data-source.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/main.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/migrations/1737491305595-migration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/migrations/1737491305595-migration.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/migrations/1737997572654-migration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/migrations/1737997572654-migration.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/migrations/1738258085900-migration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/migrations/1738258085900-migration.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/migrations/1738604071838-migration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/migrations/1738604071838-migration.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/src/migrations/1738820433484-migration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/src/migrations/1738820433484-migration.ts -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/tsconfig.app.json -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/tsconfig.json -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/tsconfig.spec.json -------------------------------------------------------------------------------- /src/backend/v2/apps/user-auth/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/apps/user-auth/webpack.config.js -------------------------------------------------------------------------------- /src/backend/v2/eslint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/eslint.config.cjs -------------------------------------------------------------------------------- /src/backend/v2/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/jest.config.ts -------------------------------------------------------------------------------- /src/backend/v2/jest.preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/jest.preset.js -------------------------------------------------------------------------------- /src/backend/v2/libs/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/core/README.md -------------------------------------------------------------------------------- /src/backend/v2/libs/core/eslint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/core/eslint.config.cjs -------------------------------------------------------------------------------- /src/backend/v2/libs/core/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/core/jest.config.ts -------------------------------------------------------------------------------- /src/backend/v2/libs/core/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/core/project.json -------------------------------------------------------------------------------- /src/backend/v2/libs/core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/core/src/index.ts -------------------------------------------------------------------------------- /src/backend/v2/libs/core/src/lib/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/core/src/lib/core.module.ts -------------------------------------------------------------------------------- /src/backend/v2/libs/core/src/lib/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/core/src/lib/core.ts -------------------------------------------------------------------------------- /src/backend/v2/libs/core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/core/tsconfig.json -------------------------------------------------------------------------------- /src/backend/v2/libs/core/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/core/tsconfig.lib.json -------------------------------------------------------------------------------- /src/backend/v2/libs/core/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/core/tsconfig.spec.json -------------------------------------------------------------------------------- /src/backend/v2/libs/decorators/README.md: -------------------------------------------------------------------------------- 1 | # decorators 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | -------------------------------------------------------------------------------- /src/backend/v2/libs/decorators/eslint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/decorators/eslint.config.cjs -------------------------------------------------------------------------------- /src/backend/v2/libs/decorators/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/decorators/project.json -------------------------------------------------------------------------------- /src/backend/v2/libs/decorators/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/decorators/src/index.ts -------------------------------------------------------------------------------- /src/backend/v2/libs/decorators/src/lib/decorators.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/decorators/src/lib/decorators.module.ts -------------------------------------------------------------------------------- /src/backend/v2/libs/decorators/src/lib/filters.decorators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/decorators/src/lib/filters.decorators.ts -------------------------------------------------------------------------------- /src/backend/v2/libs/decorators/src/lib/roles.decorators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/decorators/src/lib/roles.decorators.ts -------------------------------------------------------------------------------- /src/backend/v2/libs/decorators/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/decorators/tsconfig.json -------------------------------------------------------------------------------- /src/backend/v2/libs/decorators/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/decorators/tsconfig.lib.json -------------------------------------------------------------------------------- /src/backend/v2/libs/dto/README.md: -------------------------------------------------------------------------------- 1 | # dto 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | -------------------------------------------------------------------------------- /src/backend/v2/libs/dto/eslint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/dto/eslint.config.cjs -------------------------------------------------------------------------------- /src/backend/v2/libs/dto/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/dto/project.json -------------------------------------------------------------------------------- /src/backend/v2/libs/dto/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/dto/src/index.ts -------------------------------------------------------------------------------- /src/backend/v2/libs/dto/src/lib/cloud-events.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/dto/src/lib/cloud-events.dto.ts -------------------------------------------------------------------------------- /src/backend/v2/libs/dto/src/lib/dto.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/dto/src/lib/dto.module.ts -------------------------------------------------------------------------------- /src/backend/v2/libs/dto/src/lib/filters.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/dto/src/lib/filters.dto.ts -------------------------------------------------------------------------------- /src/backend/v2/libs/dto/src/lib/pagination.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/dto/src/lib/pagination.dto.ts -------------------------------------------------------------------------------- /src/backend/v2/libs/dto/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/dto/tsconfig.json -------------------------------------------------------------------------------- /src/backend/v2/libs/dto/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/dto/tsconfig.lib.json -------------------------------------------------------------------------------- /src/backend/v2/libs/entities/README.md: -------------------------------------------------------------------------------- 1 | # entities 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | -------------------------------------------------------------------------------- /src/backend/v2/libs/entities/eslint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/entities/eslint.config.cjs -------------------------------------------------------------------------------- /src/backend/v2/libs/entities/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/entities/project.json -------------------------------------------------------------------------------- /src/backend/v2/libs/entities/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/entities/src/index.ts -------------------------------------------------------------------------------- /src/backend/v2/libs/entities/src/lib/entities.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/entities/src/lib/entities.module.ts -------------------------------------------------------------------------------- /src/backend/v2/libs/entities/src/lib/user/user.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/entities/src/lib/user/user.entity.ts -------------------------------------------------------------------------------- /src/backend/v2/libs/entities/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/entities/tsconfig.json -------------------------------------------------------------------------------- /src/backend/v2/libs/entities/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/entities/tsconfig.lib.json -------------------------------------------------------------------------------- /src/backend/v2/libs/enums/README.md: -------------------------------------------------------------------------------- 1 | # enums 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | -------------------------------------------------------------------------------- /src/backend/v2/libs/enums/eslint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/enums/eslint.config.cjs -------------------------------------------------------------------------------- /src/backend/v2/libs/enums/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/enums/project.json -------------------------------------------------------------------------------- /src/backend/v2/libs/enums/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/enums/src/index.ts -------------------------------------------------------------------------------- /src/backend/v2/libs/enums/src/lib/enums.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/enums/src/lib/enums.module.ts -------------------------------------------------------------------------------- /src/backend/v2/libs/enums/src/lib/filters.enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/enums/src/lib/filters.enums.ts -------------------------------------------------------------------------------- /src/backend/v2/libs/enums/src/lib/user.enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/enums/src/lib/user.enums.ts -------------------------------------------------------------------------------- /src/backend/v2/libs/enums/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/enums/tsconfig.json -------------------------------------------------------------------------------- /src/backend/v2/libs/enums/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/enums/tsconfig.lib.json -------------------------------------------------------------------------------- /src/backend/v2/libs/guards/README.md: -------------------------------------------------------------------------------- 1 | # gaurds 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | -------------------------------------------------------------------------------- /src/backend/v2/libs/guards/eslint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/guards/eslint.config.cjs -------------------------------------------------------------------------------- /src/backend/v2/libs/guards/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/guards/project.json -------------------------------------------------------------------------------- /src/backend/v2/libs/guards/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/guards/src/index.ts -------------------------------------------------------------------------------- /src/backend/v2/libs/guards/src/lib/auth.gaurd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/guards/src/lib/auth.gaurd.ts -------------------------------------------------------------------------------- /src/backend/v2/libs/guards/src/lib/gaurds.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/guards/src/lib/gaurds.module.ts -------------------------------------------------------------------------------- /src/backend/v2/libs/guards/src/lib/roles.gaurd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/guards/src/lib/roles.gaurd.ts -------------------------------------------------------------------------------- /src/backend/v2/libs/guards/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/guards/tsconfig.json -------------------------------------------------------------------------------- /src/backend/v2/libs/guards/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/guards/tsconfig.lib.json -------------------------------------------------------------------------------- /src/backend/v2/libs/types/README.md: -------------------------------------------------------------------------------- 1 | # types 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | -------------------------------------------------------------------------------- /src/backend/v2/libs/types/eslint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/types/eslint.config.cjs -------------------------------------------------------------------------------- /src/backend/v2/libs/types/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/types/project.json -------------------------------------------------------------------------------- /src/backend/v2/libs/types/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/types/src/index.ts -------------------------------------------------------------------------------- /src/backend/v2/libs/types/src/lib/filters.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/types/src/lib/filters.types.ts -------------------------------------------------------------------------------- /src/backend/v2/libs/types/src/lib/types.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/types/src/lib/types.module.ts -------------------------------------------------------------------------------- /src/backend/v2/libs/types/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/types/tsconfig.json -------------------------------------------------------------------------------- /src/backend/v2/libs/types/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/types/tsconfig.lib.json -------------------------------------------------------------------------------- /src/backend/v2/libs/utils/README.md: -------------------------------------------------------------------------------- 1 | # utils 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | -------------------------------------------------------------------------------- /src/backend/v2/libs/utils/eslint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/utils/eslint.config.cjs -------------------------------------------------------------------------------- /src/backend/v2/libs/utils/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/utils/project.json -------------------------------------------------------------------------------- /src/backend/v2/libs/utils/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/utils/src/index.ts -------------------------------------------------------------------------------- /src/backend/v2/libs/utils/src/lib/base64.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/utils/src/lib/base64.utils.ts -------------------------------------------------------------------------------- /src/backend/v2/libs/utils/src/lib/bcrypt.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/utils/src/lib/bcrypt.utils.ts -------------------------------------------------------------------------------- /src/backend/v2/libs/utils/src/lib/modules.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/utils/src/lib/modules.utils.ts -------------------------------------------------------------------------------- /src/backend/v2/libs/utils/src/lib/utils.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/utils/src/lib/utils.module.ts -------------------------------------------------------------------------------- /src/backend/v2/libs/utils/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/utils/tsconfig.json -------------------------------------------------------------------------------- /src/backend/v2/libs/utils/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/libs/utils/tsconfig.lib.json -------------------------------------------------------------------------------- /src/backend/v2/nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/nx.json -------------------------------------------------------------------------------- /src/backend/v2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/package.json -------------------------------------------------------------------------------- /src/backend/v2/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/backend/v2/tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/src/backend/v2/tsconfig.base.json -------------------------------------------------------------------------------- /static/Defendstack-gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/static/Defendstack-gif.gif -------------------------------------------------------------------------------- /static/defendstack-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defendstack/DefendStack-Suite/HEAD/static/defendstack-logo.png --------------------------------------------------------------------------------