├── .dockerignore ├── .eslintrc.json ├── .funcignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── docker-dev.yml │ ├── release-binaries.yml │ ├── sast.yaml │ ├── sbom.yml │ ├── scorecard.yml │ └── versioning.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode ├── launch.json └── settings.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── Kexa ├── __tests__ │ ├── filesForTest │ │ └── capacity.json │ ├── helpers │ │ └── jsonStringify.test.ts │ ├── rules │ │ ├── test1 │ │ │ └── rule-test.yaml │ │ ├── test2 │ │ │ ├── rule-test.yaml │ │ │ └── rule-test2.yaml │ │ ├── test3 │ │ │ └── rule-test.yaml │ │ └── var │ │ │ ├── test1 │ │ │ ├── default.json │ │ │ └── rule-test.yaml │ │ │ ├── test2 │ │ │ ├── default.json │ │ │ └── rule-test.yaml │ │ │ └── test3 │ │ │ ├── default.json │ │ │ └── rule-test.yaml │ └── services │ │ ├── addOn.test.ts │ │ ├── analyse.test.ts │ │ └── updateCapability.test.ts ├── class │ └── azure │ │ └── ckiNetworkSecurityGroup.class.ts ├── emails │ ├── emails.ts │ ├── jira.ts │ └── teams.ts ├── enum │ ├── alert.enum.ts │ ├── beHavior.enum.ts │ ├── condition.enum.ts │ ├── debug.enum.ts │ ├── level.enum.ts │ ├── objectName.enum.ts │ ├── operator.enum.ts │ └── provider.enum.ts ├── function.json ├── fuzz-tests │ ├── Dockerfile │ ├── analyseService.fuzzing.ts │ ├── fuzz-project.yaml │ └── global.fuzzing.ts ├── helpers │ ├── dowloadFile.ts │ ├── extractAddonName.ts │ ├── extractURL.ts │ ├── files.ts │ ├── groupBy.ts │ ├── isEmpty.ts │ ├── jsonStringify.ts │ ├── loaderConfig.ts │ ├── spliter.ts │ ├── statsNumbers.ts │ └── time.ts ├── main.ts ├── models │ ├── aws │ │ ├── config.models.ts │ │ └── ressource.models.ts │ ├── azure │ │ ├── ckiNetwordSecurityGroup.models.ts │ │ ├── ckiNetworkSecurityGroupAdd.model.ts │ │ ├── config.models.ts │ │ └── resource.models.ts │ ├── export │ │ ├── amazonS3 │ │ │ └── config.models.ts │ │ ├── azureBlobStorage │ │ │ └── config.models.ts │ │ ├── config.models.ts │ │ ├── kexa │ │ │ └── config.model.ts │ │ ├── mongoDB │ │ │ └── config.models.ts │ │ ├── mysql │ │ │ └── config.models.ts │ │ ├── postgre │ │ │ └── config.models.ts │ │ └── prometheus │ │ │ ├── config.models.ts │ │ │ └── eventMetric.models.ts │ ├── fuzzing │ │ ├── config.models.ts │ │ └── resource.models.ts │ ├── gcp │ │ ├── config.models.ts │ │ └── resource.models.ts │ ├── git │ │ ├── config.models.ts │ │ └── resource.models.ts │ ├── google │ │ ├── config.models.ts │ │ └── ressource.models.ts │ ├── googleWorkspace │ │ ├── config.models.ts │ │ └── ressource.models.ts │ ├── helm │ │ ├── config.models.ts │ │ └── ressource.models.ts │ ├── http │ │ ├── code.models.ts │ │ ├── config.models.ts │ │ ├── request.models.ts │ │ └── resource.model.ts │ ├── kubernetes │ │ ├── config.models.ts │ │ └── kubernetes.models.ts │ ├── mongodb │ │ ├── config.models.ts │ │ └── resource.models.ts │ ├── mysql │ │ ├── config.models.ts │ │ └── resource.models.ts │ ├── o365 │ │ ├── config.models.ts │ │ └── ressource.models.ts │ ├── oracle │ │ ├── config.models.ts │ │ └── resource.models.ts │ ├── postgresql │ │ ├── config.models.ts │ │ └── resource.models.ts │ ├── providerResource.models.ts │ ├── resultScan.models.ts │ └── settingFile │ │ ├── alert.models.ts │ │ ├── alertRules.models.ts │ │ ├── capacity.models.ts │ │ ├── conditions.models.ts │ │ ├── config.models.ts │ │ ├── configAlert.models.ts │ │ ├── globalAlert.models.ts │ │ ├── header.models.ts │ │ ├── logs.models.ts │ │ ├── rules.models.ts │ │ └── settingFile.models.ts ├── query │ ├── CRUD │ │ ├── logs.iquery.ts │ │ ├── origins.iquery.ts │ │ ├── providerItems.iquery.ts │ │ ├── providers.iquery.ts │ │ ├── resources.iquery.ts │ │ ├── rules.iquery.ts │ │ └── scans.iquery.ts │ ├── CRUDPostgres │ │ ├── logs.iquery.ts │ │ ├── origins.iquery.ts │ │ ├── providerItems.iquery.ts │ │ ├── providers.iquery.ts │ │ ├── resources.iquery.ts │ │ ├── rules.iquery.ts │ │ └── scans.iquery.ts │ ├── table.iquery.ts │ └── tablePg.iquery.ts ├── services │ ├── addOn.service.ts │ ├── addOn │ │ ├── awsGathering.service.ts │ │ ├── azureGathering.service.ts │ │ ├── display │ │ │ ├── awsDisplay.service.ts │ │ │ ├── azureDisplay.service.ts │ │ │ ├── fuzzDisplay.service.ts │ │ │ ├── gcpDisplay.service.ts │ │ │ ├── githubDisplay.service.ts │ │ │ ├── googleDriveDisplay.service.ts │ │ │ ├── googleWorkspaceDisplay.service.ts │ │ │ ├── helmDisplay.service.ts │ │ │ ├── httpDisplay.service.ts │ │ │ ├── kubernetesDisplay.service.ts │ │ │ ├── mongodbDisplay.service.ts │ │ │ ├── mysqlDisplay.service.ts │ │ │ ├── o365Display.service.ts │ │ │ ├── oracleDisplay.service.ts │ │ │ └── postgresqlDisplay.service.ts │ │ ├── exportation │ │ │ ├── azureBlobStorageExportation.service.ts │ │ │ ├── kexaExportation.service.ts │ │ │ ├── mongoDBExportation.service.ts │ │ │ ├── mySQLExportation.service.ts │ │ │ └── postgresExportation.service.ts │ │ ├── fuzzGathering.service.ts │ │ ├── gcpGathering.service.ts │ │ ├── githubGathering.service.ts │ │ ├── googleDriveGathering.service.ts │ │ ├── googleWorkspaceGathering.service.ts │ │ ├── helmGathering.service.ts │ │ ├── httpGathering.service.ts │ │ ├── imports │ │ │ ├── awsPackage.import.ts │ │ │ ├── azurePackage.import.ts │ │ │ └── scripts │ │ │ │ ├── awsPackageInstall.script.sh │ │ │ │ └── azurePackageInstall.script.sh │ │ ├── kubernetesGathering.service.ts │ │ ├── mongodbGathering.service.ts │ │ ├── mysqlGathering.service.ts │ │ ├── o365Gathering.service.ts │ │ ├── oracleGathering.service.ts │ │ ├── postgresqlGathering.service.ts │ │ └── save │ │ │ ├── amazonS3Save.service.ts │ │ │ ├── azureBlobStorageSave.service.ts │ │ │ ├── kexaSave.service.ts │ │ │ ├── mongoDBSave.service.ts │ │ │ ├── mySQLSave.service.ts │ │ │ └── postgresSave.service.ts │ ├── addOnRegistry.ts │ ├── alerte.service.ts │ ├── alerting │ │ └── jiraAlerting.service.ts │ ├── analyse.service.ts │ ├── api │ │ ├── decryptApi.service.ts │ │ ├── encryption.config.ts │ │ ├── formatterApi.service.ts │ │ └── loaderApi.service.ts │ ├── display.service.ts │ ├── exportation.service.ts │ ├── headers.service.ts │ ├── logger.service.ts │ ├── manageVarEnvironnement.service.ts │ ├── memoisation.service.ts │ ├── save.service.ts │ ├── saving │ │ ├── azureBlobStorage.service.ts │ │ ├── mongoDB.service.ts │ │ ├── mySQL.service.ts │ │ └── postgresSQL.service.ts │ └── updateCapability.service.ts └── version.ts ├── LICENSE.txt ├── MAINTAINERS.md ├── Makefile ├── README.md ├── RESPONSIBILITIES.md ├── ROADMAP.md ├── SECURITY.md ├── VERSION ├── addpackages.sh ├── archive └── docs │ ├── Documentation-Kexa.md │ └── README.md ├── capacity.json ├── config ├── Config.d.ts ├── default.json ├── demo │ ├── aws.default.json │ ├── azure.default.json │ ├── azureBlobStorage.default.json │ ├── completeExample.default.json │ ├── exemple1.default.json │ ├── exemple2.default.json │ ├── exemple3.default.json │ ├── exemple4.default.json │ ├── exemple5.default.json │ ├── exemple6.default.json │ ├── gcp.default.json │ ├── github.default.json │ ├── googleDrive.default.json │ ├── googleWorkspace.default.json │ ├── helm.default.json │ ├── http.default.json │ ├── kexa.default.json │ ├── kubernetes.default.json │ ├── mongoDB.default.json │ ├── mySQL.default.json │ ├── o365.default.json │ ├── oracle.default.json │ ├── postgreSQL.default.json │ └── postgres.default.json ├── env │ ├── aws.json │ ├── azure.json │ ├── gcp.json │ ├── office365.json │ └── workspace.json └── freshTemplatesAddOn │ ├── XXXDisplay.service.ts │ ├── XXXExportation.service.ts │ ├── XXXGathering.service.ts │ └── XXXSave.service.ts ├── dockerstart.sh ├── docs ├── FAQ.md ├── README.md ├── configuration │ ├── README.md │ ├── _category_.json │ ├── environment-variables.md │ ├── global-configuration.md │ ├── multiple-environments.md │ └── rules-configuration.md ├── contributing │ ├── README.md │ ├── _category_.json │ ├── adding-addons.md │ ├── community-guidelines.md │ ├── development.md │ └── testing.md ├── deployment │ ├── README.md │ ├── _category_.json │ ├── azure-function.md │ ├── docker.md │ ├── github-actions.md │ ├── kubernetes.md │ └── local.md ├── getting-started │ ├── README.md │ ├── _category_.json │ ├── installation.md │ ├── prerequisites.md │ ├── quick-start.md │ └── viewing-results.md ├── notifications │ ├── README.md │ ├── _category_.json │ ├── email.md │ ├── jira.md │ ├── logs.md │ ├── sms.md │ ├── teams.md │ └── webhook.md ├── providers │ ├── AWS.md │ ├── Azure.md │ ├── GCP.md │ ├── Github.md │ ├── GoogleDrive.md │ ├── GoogleWorkspace.md │ ├── HTTP.md │ ├── Helm.md │ ├── Kubernetes.md │ ├── MongoDB.md │ ├── MySQL.md │ ├── O365.md │ ├── Oracle.md │ ├── Postgresql.md │ ├── README.md │ └── _category_.json └── save │ ├── AzureBlobStorage.md │ ├── Kexa.md │ ├── MongoDB.md │ ├── MySQL.md │ ├── Postgres.md │ ├── README.md │ └── _category_.json ├── eslint.config.js ├── function.json ├── host.json ├── images ├── Exemple_Scan_Security.png ├── Exemple_Scan_Security_html.png ├── MongoDB-Logo.png ├── MySQL-logo.png ├── aws-logo.png ├── azure-logo.png ├── azureBlobStorage.png ├── email-logo.png ├── expected_teams.png ├── gcp-logo.png ├── github-logo.png ├── google-drive-logo.png ├── helm-logo.png ├── helm-logo.svg ├── https-logo.png ├── issue_typeid.png ├── jira-logo.png ├── jira_projectid.png ├── jiraenv.png ├── jiraresults.png ├── jiraresults_details_multiple.png ├── jiraresults_details_one.png ├── kexa-no-background-color.png ├── kubernetes-logo.png ├── log-logo.png ├── msteams-logo.png ├── office-icon.png ├── postgres.png ├── postgresql-logo.svg.png ├── readme_grafana_addons.png ├── readme_grafana_kube1.png ├── readme_jira_result.png ├── readme_log_result.png ├── readme_saas_result.png ├── readme_teams_result.png ├── reamde_grafana_kube2.png ├── reamde_grafana_kube3.png ├── reamde_jira_result_2.png ├── ruleconfigjira.png ├── schema-UML-SQL.png ├── schema-engine.png ├── twilio-logo.png ├── webhook-logo.png └── workspace-icon.png ├── initKexa.ps1 ├── initKexa.sh ├── kexa-asciinema-git.gif ├── kexa-sbom.json ├── local.settings.json ├── nodemon.json ├── package.json ├── perProvider ├── awsSetRules.yaml ├── azureSetRules.yaml ├── driveRules.yaml ├── gcpSetRules.yaml ├── githubSetRules.yaml ├── googleDriveSetRules.yaml ├── googleWorkspaceSetRules.yaml ├── helmSetRules.yaml ├── httpSetRules.yaml ├── kubernetesSetRules.yaml └── o365SetRules.yaml ├── pnpm-lock.yaml ├── rules ├── AwsComplianceSetRules.yaml ├── AzureComplianceSetRules.yaml ├── BenchmarkOffice365.yaml ├── BenchmarkWorkspace.yaml ├── Deployement.yaml ├── Economy.yaml ├── GcpComplianceSetRules.yaml ├── HTTPRules.yaml ├── KubeComplianceSetRules.yaml ├── Kubernete.yaml ├── MongoDB.yaml ├── MySQL.yaml ├── OperationalExcellence.yaml ├── Performance.yaml ├── PostDeployement.yaml ├── PostgreSQL.yaml ├── PreDeployement.yaml ├── SecretsRotation.yaml ├── Security.yaml ├── StorageSecurity.yaml ├── awsBenchmarkRules.yaml ├── awsCisFoundations.yaml ├── awsOrphanResources.yaml ├── aws_cis_foundations_benchmark_rules.yaml ├── azureBenchmarkRules.yaml ├── azureCisFoundations_Compute.yaml ├── azureOrphanResources.yaml ├── crossCloudDisksChecks.yaml ├── gcpCisFoundations.yaml ├── gcpOrphanResources.yaml ├── githubMaliciousPackage-shaihuludreturns.yaml ├── githubMaliciousPackage.yaml ├── helmConfigurations.yaml ├── helmConsumptions.yaml ├── helmStatus.yaml ├── kub-prod-check.yaml ├── kubernetesConfigurations.yaml ├── kubernetesConsumptions.yaml ├── kubernetesLogs.yaml ├── kubernetesStatus.yaml └── perProvider │ ├── awsSetRules.yaml │ ├── azureSetRules.yaml │ ├── driveRules.yaml │ ├── gcpSetRules.yaml │ ├── githubSetRules.yaml │ ├── googleDriveSetRules.yaml │ ├── googleWorkspaceSetRules.yaml │ ├── helmSetRules.yaml │ ├── httpSetRules.yaml │ ├── kubernetesSetRules.yaml │ └── o365SetRules.yaml ├── scripts ├── install.ps1 └── install.sh └── tsconfig.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/.dockerignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.funcignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/.funcignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/docker-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/.github/workflows/docker-dev.yml -------------------------------------------------------------------------------- /.github/workflows/release-binaries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/.github/workflows/release-binaries.yml -------------------------------------------------------------------------------- /.github/workflows/sast.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/.github/workflows/sast.yaml -------------------------------------------------------------------------------- /.github/workflows/sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/.github/workflows/sbom.yml -------------------------------------------------------------------------------- /.github/workflows/scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/.github/workflows/scorecard.yml -------------------------------------------------------------------------------- /.github/workflows/versioning.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/.github/workflows/versioning.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | # Ignore artifacts: 2 | build 3 | coverage 4 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Dockerfile -------------------------------------------------------------------------------- /Kexa/__tests__/filesForTest/capacity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/__tests__/filesForTest/capacity.json -------------------------------------------------------------------------------- /Kexa/__tests__/helpers/jsonStringify.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/__tests__/helpers/jsonStringify.test.ts -------------------------------------------------------------------------------- /Kexa/__tests__/rules/test1/rule-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/__tests__/rules/test1/rule-test.yaml -------------------------------------------------------------------------------- /Kexa/__tests__/rules/test2/rule-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/__tests__/rules/test2/rule-test.yaml -------------------------------------------------------------------------------- /Kexa/__tests__/rules/test2/rule-test2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/__tests__/rules/test2/rule-test2.yaml -------------------------------------------------------------------------------- /Kexa/__tests__/rules/test3/rule-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/__tests__/rules/test3/rule-test.yaml -------------------------------------------------------------------------------- /Kexa/__tests__/rules/var/test1/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/__tests__/rules/var/test1/default.json -------------------------------------------------------------------------------- /Kexa/__tests__/rules/var/test1/rule-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/__tests__/rules/var/test1/rule-test.yaml -------------------------------------------------------------------------------- /Kexa/__tests__/rules/var/test2/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/__tests__/rules/var/test2/default.json -------------------------------------------------------------------------------- /Kexa/__tests__/rules/var/test2/rule-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/__tests__/rules/var/test2/rule-test.yaml -------------------------------------------------------------------------------- /Kexa/__tests__/rules/var/test3/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/__tests__/rules/var/test3/default.json -------------------------------------------------------------------------------- /Kexa/__tests__/rules/var/test3/rule-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/__tests__/rules/var/test3/rule-test.yaml -------------------------------------------------------------------------------- /Kexa/__tests__/services/addOn.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/__tests__/services/addOn.test.ts -------------------------------------------------------------------------------- /Kexa/__tests__/services/analyse.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/__tests__/services/analyse.test.ts -------------------------------------------------------------------------------- /Kexa/__tests__/services/updateCapability.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/__tests__/services/updateCapability.test.ts -------------------------------------------------------------------------------- /Kexa/class/azure/ckiNetworkSecurityGroup.class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/class/azure/ckiNetworkSecurityGroup.class.ts -------------------------------------------------------------------------------- /Kexa/emails/emails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/emails/emails.ts -------------------------------------------------------------------------------- /Kexa/emails/jira.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/emails/jira.ts -------------------------------------------------------------------------------- /Kexa/emails/teams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/emails/teams.ts -------------------------------------------------------------------------------- /Kexa/enum/alert.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/enum/alert.enum.ts -------------------------------------------------------------------------------- /Kexa/enum/beHavior.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/enum/beHavior.enum.ts -------------------------------------------------------------------------------- /Kexa/enum/condition.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/enum/condition.enum.ts -------------------------------------------------------------------------------- /Kexa/enum/debug.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/enum/debug.enum.ts -------------------------------------------------------------------------------- /Kexa/enum/level.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/enum/level.enum.ts -------------------------------------------------------------------------------- /Kexa/enum/objectName.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/enum/objectName.enum.ts -------------------------------------------------------------------------------- /Kexa/enum/operator.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/enum/operator.enum.ts -------------------------------------------------------------------------------- /Kexa/enum/provider.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/enum/provider.enum.ts -------------------------------------------------------------------------------- /Kexa/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/function.json -------------------------------------------------------------------------------- /Kexa/fuzz-tests/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/fuzz-tests/Dockerfile -------------------------------------------------------------------------------- /Kexa/fuzz-tests/analyseService.fuzzing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/fuzz-tests/analyseService.fuzzing.ts -------------------------------------------------------------------------------- /Kexa/fuzz-tests/fuzz-project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/fuzz-tests/fuzz-project.yaml -------------------------------------------------------------------------------- /Kexa/fuzz-tests/global.fuzzing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/fuzz-tests/global.fuzzing.ts -------------------------------------------------------------------------------- /Kexa/helpers/dowloadFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/helpers/dowloadFile.ts -------------------------------------------------------------------------------- /Kexa/helpers/extractAddonName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/helpers/extractAddonName.ts -------------------------------------------------------------------------------- /Kexa/helpers/extractURL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/helpers/extractURL.ts -------------------------------------------------------------------------------- /Kexa/helpers/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/helpers/files.ts -------------------------------------------------------------------------------- /Kexa/helpers/groupBy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/helpers/groupBy.ts -------------------------------------------------------------------------------- /Kexa/helpers/isEmpty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/helpers/isEmpty.ts -------------------------------------------------------------------------------- /Kexa/helpers/jsonStringify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/helpers/jsonStringify.ts -------------------------------------------------------------------------------- /Kexa/helpers/loaderConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/helpers/loaderConfig.ts -------------------------------------------------------------------------------- /Kexa/helpers/spliter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/helpers/spliter.ts -------------------------------------------------------------------------------- /Kexa/helpers/statsNumbers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/helpers/statsNumbers.ts -------------------------------------------------------------------------------- /Kexa/helpers/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/helpers/time.ts -------------------------------------------------------------------------------- /Kexa/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/main.ts -------------------------------------------------------------------------------- /Kexa/models/aws/config.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/aws/config.models.ts -------------------------------------------------------------------------------- /Kexa/models/aws/ressource.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/aws/ressource.models.ts -------------------------------------------------------------------------------- /Kexa/models/azure/ckiNetwordSecurityGroup.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/azure/ckiNetwordSecurityGroup.models.ts -------------------------------------------------------------------------------- /Kexa/models/azure/ckiNetworkSecurityGroupAdd.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/azure/ckiNetworkSecurityGroupAdd.model.ts -------------------------------------------------------------------------------- /Kexa/models/azure/config.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/azure/config.models.ts -------------------------------------------------------------------------------- /Kexa/models/azure/resource.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/azure/resource.models.ts -------------------------------------------------------------------------------- /Kexa/models/export/amazonS3/config.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/export/amazonS3/config.models.ts -------------------------------------------------------------------------------- /Kexa/models/export/azureBlobStorage/config.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/export/azureBlobStorage/config.models.ts -------------------------------------------------------------------------------- /Kexa/models/export/config.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/export/config.models.ts -------------------------------------------------------------------------------- /Kexa/models/export/kexa/config.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/export/kexa/config.model.ts -------------------------------------------------------------------------------- /Kexa/models/export/mongoDB/config.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/export/mongoDB/config.models.ts -------------------------------------------------------------------------------- /Kexa/models/export/mysql/config.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/export/mysql/config.models.ts -------------------------------------------------------------------------------- /Kexa/models/export/postgre/config.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/export/postgre/config.models.ts -------------------------------------------------------------------------------- /Kexa/models/export/prometheus/config.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/export/prometheus/config.models.ts -------------------------------------------------------------------------------- /Kexa/models/export/prometheus/eventMetric.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/export/prometheus/eventMetric.models.ts -------------------------------------------------------------------------------- /Kexa/models/fuzzing/config.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/fuzzing/config.models.ts -------------------------------------------------------------------------------- /Kexa/models/fuzzing/resource.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/fuzzing/resource.models.ts -------------------------------------------------------------------------------- /Kexa/models/gcp/config.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/gcp/config.models.ts -------------------------------------------------------------------------------- /Kexa/models/gcp/resource.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/gcp/resource.models.ts -------------------------------------------------------------------------------- /Kexa/models/git/config.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/git/config.models.ts -------------------------------------------------------------------------------- /Kexa/models/git/resource.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/git/resource.models.ts -------------------------------------------------------------------------------- /Kexa/models/google/config.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/google/config.models.ts -------------------------------------------------------------------------------- /Kexa/models/google/ressource.models.ts: -------------------------------------------------------------------------------- 1 | export interface googleResources { 2 | user: Array | null; 3 | } -------------------------------------------------------------------------------- /Kexa/models/googleWorkspace/config.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/googleWorkspace/config.models.ts -------------------------------------------------------------------------------- /Kexa/models/googleWorkspace/ressource.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/googleWorkspace/ressource.models.ts -------------------------------------------------------------------------------- /Kexa/models/helm/config.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/helm/config.models.ts -------------------------------------------------------------------------------- /Kexa/models/helm/ressource.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/helm/ressource.models.ts -------------------------------------------------------------------------------- /Kexa/models/http/code.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/http/code.models.ts -------------------------------------------------------------------------------- /Kexa/models/http/config.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/http/config.models.ts -------------------------------------------------------------------------------- /Kexa/models/http/request.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/http/request.models.ts -------------------------------------------------------------------------------- /Kexa/models/http/resource.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/http/resource.model.ts -------------------------------------------------------------------------------- /Kexa/models/kubernetes/config.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/kubernetes/config.models.ts -------------------------------------------------------------------------------- /Kexa/models/kubernetes/kubernetes.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/kubernetes/kubernetes.models.ts -------------------------------------------------------------------------------- /Kexa/models/mongodb/config.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/mongodb/config.models.ts -------------------------------------------------------------------------------- /Kexa/models/mongodb/resource.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/mongodb/resource.models.ts -------------------------------------------------------------------------------- /Kexa/models/mysql/config.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/mysql/config.models.ts -------------------------------------------------------------------------------- /Kexa/models/mysql/resource.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/mysql/resource.models.ts -------------------------------------------------------------------------------- /Kexa/models/o365/config.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/o365/config.models.ts -------------------------------------------------------------------------------- /Kexa/models/o365/ressource.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/o365/ressource.models.ts -------------------------------------------------------------------------------- /Kexa/models/oracle/config.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/oracle/config.models.ts -------------------------------------------------------------------------------- /Kexa/models/oracle/resource.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/oracle/resource.models.ts -------------------------------------------------------------------------------- /Kexa/models/postgresql/config.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/postgresql/config.models.ts -------------------------------------------------------------------------------- /Kexa/models/postgresql/resource.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/postgresql/resource.models.ts -------------------------------------------------------------------------------- /Kexa/models/providerResource.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/providerResource.models.ts -------------------------------------------------------------------------------- /Kexa/models/resultScan.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/resultScan.models.ts -------------------------------------------------------------------------------- /Kexa/models/settingFile/alert.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/settingFile/alert.models.ts -------------------------------------------------------------------------------- /Kexa/models/settingFile/alertRules.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/settingFile/alertRules.models.ts -------------------------------------------------------------------------------- /Kexa/models/settingFile/capacity.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/settingFile/capacity.models.ts -------------------------------------------------------------------------------- /Kexa/models/settingFile/conditions.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/settingFile/conditions.models.ts -------------------------------------------------------------------------------- /Kexa/models/settingFile/config.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/settingFile/config.models.ts -------------------------------------------------------------------------------- /Kexa/models/settingFile/configAlert.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/settingFile/configAlert.models.ts -------------------------------------------------------------------------------- /Kexa/models/settingFile/globalAlert.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/settingFile/globalAlert.models.ts -------------------------------------------------------------------------------- /Kexa/models/settingFile/header.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/settingFile/header.models.ts -------------------------------------------------------------------------------- /Kexa/models/settingFile/logs.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/settingFile/logs.models.ts -------------------------------------------------------------------------------- /Kexa/models/settingFile/rules.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/settingFile/rules.models.ts -------------------------------------------------------------------------------- /Kexa/models/settingFile/settingFile.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/models/settingFile/settingFile.models.ts -------------------------------------------------------------------------------- /Kexa/query/CRUD/logs.iquery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/query/CRUD/logs.iquery.ts -------------------------------------------------------------------------------- /Kexa/query/CRUD/origins.iquery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/query/CRUD/origins.iquery.ts -------------------------------------------------------------------------------- /Kexa/query/CRUD/providerItems.iquery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/query/CRUD/providerItems.iquery.ts -------------------------------------------------------------------------------- /Kexa/query/CRUD/providers.iquery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/query/CRUD/providers.iquery.ts -------------------------------------------------------------------------------- /Kexa/query/CRUD/resources.iquery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/query/CRUD/resources.iquery.ts -------------------------------------------------------------------------------- /Kexa/query/CRUD/rules.iquery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/query/CRUD/rules.iquery.ts -------------------------------------------------------------------------------- /Kexa/query/CRUD/scans.iquery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/query/CRUD/scans.iquery.ts -------------------------------------------------------------------------------- /Kexa/query/CRUDPostgres/logs.iquery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/query/CRUDPostgres/logs.iquery.ts -------------------------------------------------------------------------------- /Kexa/query/CRUDPostgres/origins.iquery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/query/CRUDPostgres/origins.iquery.ts -------------------------------------------------------------------------------- /Kexa/query/CRUDPostgres/providerItems.iquery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/query/CRUDPostgres/providerItems.iquery.ts -------------------------------------------------------------------------------- /Kexa/query/CRUDPostgres/providers.iquery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/query/CRUDPostgres/providers.iquery.ts -------------------------------------------------------------------------------- /Kexa/query/CRUDPostgres/resources.iquery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/query/CRUDPostgres/resources.iquery.ts -------------------------------------------------------------------------------- /Kexa/query/CRUDPostgres/rules.iquery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/query/CRUDPostgres/rules.iquery.ts -------------------------------------------------------------------------------- /Kexa/query/CRUDPostgres/scans.iquery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/query/CRUDPostgres/scans.iquery.ts -------------------------------------------------------------------------------- /Kexa/query/table.iquery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/query/table.iquery.ts -------------------------------------------------------------------------------- /Kexa/query/tablePg.iquery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/query/tablePg.iquery.ts -------------------------------------------------------------------------------- /Kexa/services/addOn.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn.service.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/awsGathering.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/awsGathering.service.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/azureGathering.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/azureGathering.service.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/display/awsDisplay.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/display/awsDisplay.service.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/display/azureDisplay.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/display/azureDisplay.service.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/display/fuzzDisplay.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/display/fuzzDisplay.service.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/display/gcpDisplay.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/display/gcpDisplay.service.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/display/githubDisplay.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/display/githubDisplay.service.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/display/googleDriveDisplay.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/display/googleDriveDisplay.service.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/display/googleWorkspaceDisplay.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/display/googleWorkspaceDisplay.service.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/display/helmDisplay.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/display/helmDisplay.service.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/display/httpDisplay.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/display/httpDisplay.service.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/display/kubernetesDisplay.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/display/kubernetesDisplay.service.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/display/mongodbDisplay.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/display/mongodbDisplay.service.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/display/mysqlDisplay.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/display/mysqlDisplay.service.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/display/o365Display.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/display/o365Display.service.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/display/oracleDisplay.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/display/oracleDisplay.service.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/display/postgresqlDisplay.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/display/postgresqlDisplay.service.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/exportation/azureBlobStorageExportation.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/exportation/azureBlobStorageExportation.service.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/exportation/kexaExportation.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/exportation/kexaExportation.service.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/exportation/mongoDBExportation.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/exportation/mongoDBExportation.service.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/exportation/mySQLExportation.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/exportation/mySQLExportation.service.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/exportation/postgresExportation.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/exportation/postgresExportation.service.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/fuzzGathering.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/fuzzGathering.service.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/gcpGathering.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/gcpGathering.service.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/githubGathering.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/githubGathering.service.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/googleDriveGathering.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/googleDriveGathering.service.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/googleWorkspaceGathering.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/googleWorkspaceGathering.service.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/helmGathering.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/helmGathering.service.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/httpGathering.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/httpGathering.service.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/imports/awsPackage.import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/imports/awsPackage.import.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/imports/azurePackage.import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/imports/azurePackage.import.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/imports/scripts/awsPackageInstall.script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/imports/scripts/awsPackageInstall.script.sh -------------------------------------------------------------------------------- /Kexa/services/addOn/imports/scripts/azurePackageInstall.script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/imports/scripts/azurePackageInstall.script.sh -------------------------------------------------------------------------------- /Kexa/services/addOn/kubernetesGathering.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/kubernetesGathering.service.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/mongodbGathering.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/mongodbGathering.service.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/mysqlGathering.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/mysqlGathering.service.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/o365Gathering.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/o365Gathering.service.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/oracleGathering.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/oracleGathering.service.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/postgresqlGathering.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/postgresqlGathering.service.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/save/amazonS3Save.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/save/amazonS3Save.service.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/save/azureBlobStorageSave.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/save/azureBlobStorageSave.service.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/save/kexaSave.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/save/kexaSave.service.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/save/mongoDBSave.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/save/mongoDBSave.service.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/save/mySQLSave.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/save/mySQLSave.service.ts -------------------------------------------------------------------------------- /Kexa/services/addOn/save/postgresSave.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOn/save/postgresSave.service.ts -------------------------------------------------------------------------------- /Kexa/services/addOnRegistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/addOnRegistry.ts -------------------------------------------------------------------------------- /Kexa/services/alerte.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/alerte.service.ts -------------------------------------------------------------------------------- /Kexa/services/alerting/jiraAlerting.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/alerting/jiraAlerting.service.ts -------------------------------------------------------------------------------- /Kexa/services/analyse.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/analyse.service.ts -------------------------------------------------------------------------------- /Kexa/services/api/decryptApi.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/api/decryptApi.service.ts -------------------------------------------------------------------------------- /Kexa/services/api/encryption.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/api/encryption.config.ts -------------------------------------------------------------------------------- /Kexa/services/api/formatterApi.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/api/formatterApi.service.ts -------------------------------------------------------------------------------- /Kexa/services/api/loaderApi.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/api/loaderApi.service.ts -------------------------------------------------------------------------------- /Kexa/services/display.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/display.service.ts -------------------------------------------------------------------------------- /Kexa/services/exportation.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/exportation.service.ts -------------------------------------------------------------------------------- /Kexa/services/headers.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/headers.service.ts -------------------------------------------------------------------------------- /Kexa/services/logger.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/logger.service.ts -------------------------------------------------------------------------------- /Kexa/services/manageVarEnvironnement.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/manageVarEnvironnement.service.ts -------------------------------------------------------------------------------- /Kexa/services/memoisation.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/memoisation.service.ts -------------------------------------------------------------------------------- /Kexa/services/save.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/save.service.ts -------------------------------------------------------------------------------- /Kexa/services/saving/azureBlobStorage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/saving/azureBlobStorage.service.ts -------------------------------------------------------------------------------- /Kexa/services/saving/mongoDB.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/saving/mongoDB.service.ts -------------------------------------------------------------------------------- /Kexa/services/saving/mySQL.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/saving/mySQL.service.ts -------------------------------------------------------------------------------- /Kexa/services/saving/postgresSQL.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/saving/postgresSQL.service.ts -------------------------------------------------------------------------------- /Kexa/services/updateCapability.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Kexa/services/updateCapability.service.ts -------------------------------------------------------------------------------- /Kexa/version.ts: -------------------------------------------------------------------------------- 1 | export const VERSION = "v2.6.0"; 2 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/README.md -------------------------------------------------------------------------------- /RESPONSIBILITIES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/RESPONSIBILITIES.md -------------------------------------------------------------------------------- /ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/ROADMAP.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/SECURITY.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 2.0.0 -------------------------------------------------------------------------------- /addpackages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/addpackages.sh -------------------------------------------------------------------------------- /archive/docs/Documentation-Kexa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/archive/docs/Documentation-Kexa.md -------------------------------------------------------------------------------- /archive/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/archive/docs/README.md -------------------------------------------------------------------------------- /capacity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/capacity.json -------------------------------------------------------------------------------- /config/Config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/config/Config.d.ts -------------------------------------------------------------------------------- /config/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/config/default.json -------------------------------------------------------------------------------- /config/demo/aws.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/config/demo/aws.default.json -------------------------------------------------------------------------------- /config/demo/azure.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/config/demo/azure.default.json -------------------------------------------------------------------------------- /config/demo/azureBlobStorage.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/config/demo/azureBlobStorage.default.json -------------------------------------------------------------------------------- /config/demo/completeExample.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/config/demo/completeExample.default.json -------------------------------------------------------------------------------- /config/demo/exemple1.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/config/demo/exemple1.default.json -------------------------------------------------------------------------------- /config/demo/exemple2.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/config/demo/exemple2.default.json -------------------------------------------------------------------------------- /config/demo/exemple3.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/config/demo/exemple3.default.json -------------------------------------------------------------------------------- /config/demo/exemple4.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/config/demo/exemple4.default.json -------------------------------------------------------------------------------- /config/demo/exemple5.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/config/demo/exemple5.default.json -------------------------------------------------------------------------------- /config/demo/exemple6.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/config/demo/exemple6.default.json -------------------------------------------------------------------------------- /config/demo/gcp.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/config/demo/gcp.default.json -------------------------------------------------------------------------------- /config/demo/github.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/config/demo/github.default.json -------------------------------------------------------------------------------- /config/demo/googleDrive.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/config/demo/googleDrive.default.json -------------------------------------------------------------------------------- /config/demo/googleWorkspace.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/config/demo/googleWorkspace.default.json -------------------------------------------------------------------------------- /config/demo/helm.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/config/demo/helm.default.json -------------------------------------------------------------------------------- /config/demo/http.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/config/demo/http.default.json -------------------------------------------------------------------------------- /config/demo/kexa.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/config/demo/kexa.default.json -------------------------------------------------------------------------------- /config/demo/kubernetes.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/config/demo/kubernetes.default.json -------------------------------------------------------------------------------- /config/demo/mongoDB.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/config/demo/mongoDB.default.json -------------------------------------------------------------------------------- /config/demo/mySQL.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/config/demo/mySQL.default.json -------------------------------------------------------------------------------- /config/demo/o365.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/config/demo/o365.default.json -------------------------------------------------------------------------------- /config/demo/oracle.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/config/demo/oracle.default.json -------------------------------------------------------------------------------- /config/demo/postgreSQL.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/config/demo/postgreSQL.default.json -------------------------------------------------------------------------------- /config/demo/postgres.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/config/demo/postgres.default.json -------------------------------------------------------------------------------- /config/env/aws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/config/env/aws.json -------------------------------------------------------------------------------- /config/env/azure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/config/env/azure.json -------------------------------------------------------------------------------- /config/env/gcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/config/env/gcp.json -------------------------------------------------------------------------------- /config/env/office365.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/config/env/office365.json -------------------------------------------------------------------------------- /config/env/workspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/config/env/workspace.json -------------------------------------------------------------------------------- /config/freshTemplatesAddOn/XXXDisplay.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/config/freshTemplatesAddOn/XXXDisplay.service.ts -------------------------------------------------------------------------------- /config/freshTemplatesAddOn/XXXExportation.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/config/freshTemplatesAddOn/XXXExportation.service.ts -------------------------------------------------------------------------------- /config/freshTemplatesAddOn/XXXGathering.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/config/freshTemplatesAddOn/XXXGathering.service.ts -------------------------------------------------------------------------------- /config/freshTemplatesAddOn/XXXSave.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/config/freshTemplatesAddOn/XXXSave.service.ts -------------------------------------------------------------------------------- /dockerstart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/dockerstart.sh -------------------------------------------------------------------------------- /docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/FAQ.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/configuration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/configuration/README.md -------------------------------------------------------------------------------- /docs/configuration/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/configuration/_category_.json -------------------------------------------------------------------------------- /docs/configuration/environment-variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/configuration/environment-variables.md -------------------------------------------------------------------------------- /docs/configuration/global-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/configuration/global-configuration.md -------------------------------------------------------------------------------- /docs/configuration/multiple-environments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/configuration/multiple-environments.md -------------------------------------------------------------------------------- /docs/configuration/rules-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/configuration/rules-configuration.md -------------------------------------------------------------------------------- /docs/contributing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/contributing/README.md -------------------------------------------------------------------------------- /docs/contributing/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/contributing/_category_.json -------------------------------------------------------------------------------- /docs/contributing/adding-addons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/contributing/adding-addons.md -------------------------------------------------------------------------------- /docs/contributing/community-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/contributing/community-guidelines.md -------------------------------------------------------------------------------- /docs/contributing/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/contributing/development.md -------------------------------------------------------------------------------- /docs/contributing/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/contributing/testing.md -------------------------------------------------------------------------------- /docs/deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/deployment/README.md -------------------------------------------------------------------------------- /docs/deployment/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/deployment/_category_.json -------------------------------------------------------------------------------- /docs/deployment/azure-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/deployment/azure-function.md -------------------------------------------------------------------------------- /docs/deployment/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/deployment/docker.md -------------------------------------------------------------------------------- /docs/deployment/github-actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/deployment/github-actions.md -------------------------------------------------------------------------------- /docs/deployment/kubernetes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/deployment/kubernetes.md -------------------------------------------------------------------------------- /docs/deployment/local.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/deployment/local.md -------------------------------------------------------------------------------- /docs/getting-started/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/getting-started/README.md -------------------------------------------------------------------------------- /docs/getting-started/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/getting-started/_category_.json -------------------------------------------------------------------------------- /docs/getting-started/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/getting-started/installation.md -------------------------------------------------------------------------------- /docs/getting-started/prerequisites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/getting-started/prerequisites.md -------------------------------------------------------------------------------- /docs/getting-started/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/getting-started/quick-start.md -------------------------------------------------------------------------------- /docs/getting-started/viewing-results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/getting-started/viewing-results.md -------------------------------------------------------------------------------- /docs/notifications/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/notifications/README.md -------------------------------------------------------------------------------- /docs/notifications/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/notifications/_category_.json -------------------------------------------------------------------------------- /docs/notifications/email.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/notifications/email.md -------------------------------------------------------------------------------- /docs/notifications/jira.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/notifications/jira.md -------------------------------------------------------------------------------- /docs/notifications/logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/notifications/logs.md -------------------------------------------------------------------------------- /docs/notifications/sms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/notifications/sms.md -------------------------------------------------------------------------------- /docs/notifications/teams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/notifications/teams.md -------------------------------------------------------------------------------- /docs/notifications/webhook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/notifications/webhook.md -------------------------------------------------------------------------------- /docs/providers/AWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/providers/AWS.md -------------------------------------------------------------------------------- /docs/providers/Azure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/providers/Azure.md -------------------------------------------------------------------------------- /docs/providers/GCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/providers/GCP.md -------------------------------------------------------------------------------- /docs/providers/Github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/providers/Github.md -------------------------------------------------------------------------------- /docs/providers/GoogleDrive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/providers/GoogleDrive.md -------------------------------------------------------------------------------- /docs/providers/GoogleWorkspace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/providers/GoogleWorkspace.md -------------------------------------------------------------------------------- /docs/providers/HTTP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/providers/HTTP.md -------------------------------------------------------------------------------- /docs/providers/Helm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/providers/Helm.md -------------------------------------------------------------------------------- /docs/providers/Kubernetes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/providers/Kubernetes.md -------------------------------------------------------------------------------- /docs/providers/MongoDB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/providers/MongoDB.md -------------------------------------------------------------------------------- /docs/providers/MySQL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/providers/MySQL.md -------------------------------------------------------------------------------- /docs/providers/O365.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/providers/O365.md -------------------------------------------------------------------------------- /docs/providers/Oracle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/providers/Oracle.md -------------------------------------------------------------------------------- /docs/providers/Postgresql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/providers/Postgresql.md -------------------------------------------------------------------------------- /docs/providers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/providers/README.md -------------------------------------------------------------------------------- /docs/providers/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/providers/_category_.json -------------------------------------------------------------------------------- /docs/save/AzureBlobStorage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/save/AzureBlobStorage.md -------------------------------------------------------------------------------- /docs/save/Kexa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/save/Kexa.md -------------------------------------------------------------------------------- /docs/save/MongoDB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/save/MongoDB.md -------------------------------------------------------------------------------- /docs/save/MySQL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/save/MySQL.md -------------------------------------------------------------------------------- /docs/save/Postgres.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/save/Postgres.md -------------------------------------------------------------------------------- /docs/save/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/save/README.md -------------------------------------------------------------------------------- /docs/save/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/docs/save/_category_.json -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/eslint.config.js -------------------------------------------------------------------------------- /function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/function.json -------------------------------------------------------------------------------- /host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/host.json -------------------------------------------------------------------------------- /images/Exemple_Scan_Security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/Exemple_Scan_Security.png -------------------------------------------------------------------------------- /images/Exemple_Scan_Security_html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/Exemple_Scan_Security_html.png -------------------------------------------------------------------------------- /images/MongoDB-Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/MongoDB-Logo.png -------------------------------------------------------------------------------- /images/MySQL-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/MySQL-logo.png -------------------------------------------------------------------------------- /images/aws-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/aws-logo.png -------------------------------------------------------------------------------- /images/azure-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/azure-logo.png -------------------------------------------------------------------------------- /images/azureBlobStorage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/azureBlobStorage.png -------------------------------------------------------------------------------- /images/email-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/email-logo.png -------------------------------------------------------------------------------- /images/expected_teams.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/expected_teams.png -------------------------------------------------------------------------------- /images/gcp-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/gcp-logo.png -------------------------------------------------------------------------------- /images/github-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/github-logo.png -------------------------------------------------------------------------------- /images/google-drive-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/google-drive-logo.png -------------------------------------------------------------------------------- /images/helm-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/helm-logo.png -------------------------------------------------------------------------------- /images/helm-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/helm-logo.svg -------------------------------------------------------------------------------- /images/https-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/https-logo.png -------------------------------------------------------------------------------- /images/issue_typeid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/issue_typeid.png -------------------------------------------------------------------------------- /images/jira-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/jira-logo.png -------------------------------------------------------------------------------- /images/jira_projectid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/jira_projectid.png -------------------------------------------------------------------------------- /images/jiraenv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/jiraenv.png -------------------------------------------------------------------------------- /images/jiraresults.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/jiraresults.png -------------------------------------------------------------------------------- /images/jiraresults_details_multiple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/jiraresults_details_multiple.png -------------------------------------------------------------------------------- /images/jiraresults_details_one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/jiraresults_details_one.png -------------------------------------------------------------------------------- /images/kexa-no-background-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/kexa-no-background-color.png -------------------------------------------------------------------------------- /images/kubernetes-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/kubernetes-logo.png -------------------------------------------------------------------------------- /images/log-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/log-logo.png -------------------------------------------------------------------------------- /images/msteams-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/msteams-logo.png -------------------------------------------------------------------------------- /images/office-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/office-icon.png -------------------------------------------------------------------------------- /images/postgres.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/postgres.png -------------------------------------------------------------------------------- /images/postgresql-logo.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/postgresql-logo.svg.png -------------------------------------------------------------------------------- /images/readme_grafana_addons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/readme_grafana_addons.png -------------------------------------------------------------------------------- /images/readme_grafana_kube1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/readme_grafana_kube1.png -------------------------------------------------------------------------------- /images/readme_jira_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/readme_jira_result.png -------------------------------------------------------------------------------- /images/readme_log_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/readme_log_result.png -------------------------------------------------------------------------------- /images/readme_saas_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/readme_saas_result.png -------------------------------------------------------------------------------- /images/readme_teams_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/readme_teams_result.png -------------------------------------------------------------------------------- /images/reamde_grafana_kube2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/reamde_grafana_kube2.png -------------------------------------------------------------------------------- /images/reamde_grafana_kube3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/reamde_grafana_kube3.png -------------------------------------------------------------------------------- /images/reamde_jira_result_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/reamde_jira_result_2.png -------------------------------------------------------------------------------- /images/ruleconfigjira.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/ruleconfigjira.png -------------------------------------------------------------------------------- /images/schema-UML-SQL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/schema-UML-SQL.png -------------------------------------------------------------------------------- /images/schema-engine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/schema-engine.png -------------------------------------------------------------------------------- /images/twilio-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/twilio-logo.png -------------------------------------------------------------------------------- /images/webhook-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/webhook-logo.png -------------------------------------------------------------------------------- /images/workspace-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/images/workspace-icon.png -------------------------------------------------------------------------------- /initKexa.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/initKexa.ps1 -------------------------------------------------------------------------------- /initKexa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/initKexa.sh -------------------------------------------------------------------------------- /kexa-asciinema-git.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/kexa-asciinema-git.gif -------------------------------------------------------------------------------- /kexa-sbom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/kexa-sbom.json -------------------------------------------------------------------------------- /local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/local.settings.json -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/nodemon.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/package.json -------------------------------------------------------------------------------- /perProvider/awsSetRules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/perProvider/awsSetRules.yaml -------------------------------------------------------------------------------- /perProvider/azureSetRules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/perProvider/azureSetRules.yaml -------------------------------------------------------------------------------- /perProvider/driveRules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/perProvider/driveRules.yaml -------------------------------------------------------------------------------- /perProvider/gcpSetRules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/perProvider/gcpSetRules.yaml -------------------------------------------------------------------------------- /perProvider/githubSetRules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/perProvider/githubSetRules.yaml -------------------------------------------------------------------------------- /perProvider/googleDriveSetRules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/perProvider/googleDriveSetRules.yaml -------------------------------------------------------------------------------- /perProvider/googleWorkspaceSetRules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/perProvider/googleWorkspaceSetRules.yaml -------------------------------------------------------------------------------- /perProvider/helmSetRules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/perProvider/helmSetRules.yaml -------------------------------------------------------------------------------- /perProvider/httpSetRules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/perProvider/httpSetRules.yaml -------------------------------------------------------------------------------- /perProvider/kubernetesSetRules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/perProvider/kubernetesSetRules.yaml -------------------------------------------------------------------------------- /perProvider/o365SetRules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/perProvider/o365SetRules.yaml -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /rules/AwsComplianceSetRules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/AwsComplianceSetRules.yaml -------------------------------------------------------------------------------- /rules/AzureComplianceSetRules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/AzureComplianceSetRules.yaml -------------------------------------------------------------------------------- /rules/BenchmarkOffice365.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/BenchmarkOffice365.yaml -------------------------------------------------------------------------------- /rules/BenchmarkWorkspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/BenchmarkWorkspace.yaml -------------------------------------------------------------------------------- /rules/Deployement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/Deployement.yaml -------------------------------------------------------------------------------- /rules/Economy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/Economy.yaml -------------------------------------------------------------------------------- /rules/GcpComplianceSetRules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/GcpComplianceSetRules.yaml -------------------------------------------------------------------------------- /rules/HTTPRules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/HTTPRules.yaml -------------------------------------------------------------------------------- /rules/KubeComplianceSetRules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/KubeComplianceSetRules.yaml -------------------------------------------------------------------------------- /rules/Kubernete.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/Kubernete.yaml -------------------------------------------------------------------------------- /rules/MongoDB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/MongoDB.yaml -------------------------------------------------------------------------------- /rules/MySQL.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/MySQL.yaml -------------------------------------------------------------------------------- /rules/OperationalExcellence.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/OperationalExcellence.yaml -------------------------------------------------------------------------------- /rules/Performance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/Performance.yaml -------------------------------------------------------------------------------- /rules/PostDeployement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/PostDeployement.yaml -------------------------------------------------------------------------------- /rules/PostgreSQL.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/PostgreSQL.yaml -------------------------------------------------------------------------------- /rules/PreDeployement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/PreDeployement.yaml -------------------------------------------------------------------------------- /rules/SecretsRotation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/SecretsRotation.yaml -------------------------------------------------------------------------------- /rules/Security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/Security.yaml -------------------------------------------------------------------------------- /rules/StorageSecurity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/StorageSecurity.yaml -------------------------------------------------------------------------------- /rules/awsBenchmarkRules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/awsBenchmarkRules.yaml -------------------------------------------------------------------------------- /rules/awsCisFoundations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/awsCisFoundations.yaml -------------------------------------------------------------------------------- /rules/awsOrphanResources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/awsOrphanResources.yaml -------------------------------------------------------------------------------- /rules/aws_cis_foundations_benchmark_rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/aws_cis_foundations_benchmark_rules.yaml -------------------------------------------------------------------------------- /rules/azureBenchmarkRules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/azureBenchmarkRules.yaml -------------------------------------------------------------------------------- /rules/azureCisFoundations_Compute.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/azureCisFoundations_Compute.yaml -------------------------------------------------------------------------------- /rules/azureOrphanResources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/azureOrphanResources.yaml -------------------------------------------------------------------------------- /rules/crossCloudDisksChecks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/crossCloudDisksChecks.yaml -------------------------------------------------------------------------------- /rules/gcpCisFoundations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/gcpCisFoundations.yaml -------------------------------------------------------------------------------- /rules/gcpOrphanResources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/gcpOrphanResources.yaml -------------------------------------------------------------------------------- /rules/githubMaliciousPackage-shaihuludreturns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/githubMaliciousPackage-shaihuludreturns.yaml -------------------------------------------------------------------------------- /rules/githubMaliciousPackage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/githubMaliciousPackage.yaml -------------------------------------------------------------------------------- /rules/helmConfigurations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/helmConfigurations.yaml -------------------------------------------------------------------------------- /rules/helmConsumptions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/helmConsumptions.yaml -------------------------------------------------------------------------------- /rules/helmStatus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/helmStatus.yaml -------------------------------------------------------------------------------- /rules/kub-prod-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/kub-prod-check.yaml -------------------------------------------------------------------------------- /rules/kubernetesConfigurations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/kubernetesConfigurations.yaml -------------------------------------------------------------------------------- /rules/kubernetesConsumptions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/kubernetesConsumptions.yaml -------------------------------------------------------------------------------- /rules/kubernetesLogs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/kubernetesLogs.yaml -------------------------------------------------------------------------------- /rules/kubernetesStatus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/kubernetesStatus.yaml -------------------------------------------------------------------------------- /rules/perProvider/awsSetRules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/perProvider/awsSetRules.yaml -------------------------------------------------------------------------------- /rules/perProvider/azureSetRules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/perProvider/azureSetRules.yaml -------------------------------------------------------------------------------- /rules/perProvider/driveRules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/perProvider/driveRules.yaml -------------------------------------------------------------------------------- /rules/perProvider/gcpSetRules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/perProvider/gcpSetRules.yaml -------------------------------------------------------------------------------- /rules/perProvider/githubSetRules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/perProvider/githubSetRules.yaml -------------------------------------------------------------------------------- /rules/perProvider/googleDriveSetRules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/perProvider/googleDriveSetRules.yaml -------------------------------------------------------------------------------- /rules/perProvider/googleWorkspaceSetRules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/perProvider/googleWorkspaceSetRules.yaml -------------------------------------------------------------------------------- /rules/perProvider/helmSetRules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/perProvider/helmSetRules.yaml -------------------------------------------------------------------------------- /rules/perProvider/httpSetRules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/perProvider/httpSetRules.yaml -------------------------------------------------------------------------------- /rules/perProvider/kubernetesSetRules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/perProvider/kubernetesSetRules.yaml -------------------------------------------------------------------------------- /rules/perProvider/o365SetRules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/rules/perProvider/o365SetRules.yaml -------------------------------------------------------------------------------- /scripts/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/scripts/install.ps1 -------------------------------------------------------------------------------- /scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/scripts/install.sh -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexa-io/Kexa/HEAD/tsconfig.json --------------------------------------------------------------------------------