├── .github └── CODEOWNERS ├── .gitignore ├── AWS-System-Manager ├── README.md └── aws-ssm-install-datacollector.yml ├── LICENSE ├── README.md ├── bash ├── README.md ├── lw_aws_agentless_preflight.sh ├── lw_aws_exploit.sh ├── lw_aws_inventory.sh ├── lw_aws_preflight.sh ├── lw_azure_inventory.sh ├── lw_gcp_exploit.sh ├── lw_gcp_gke_provisioner.sh ├── lw_gcp_inventory.sh └── old-resource-scripts │ ├── lw_aws_inventory.sh │ ├── lw_azure_inventory.sh │ └── lw_gcp_inventory.sh ├── cfg_analyzers ├── azure │ └── enable_disable_checkers │ │ ├── README.md │ │ ├── azure-cis-config.py │ │ └── pyenv-init.sh └── gcp │ └── enable_disable_checkers │ ├── README.md │ ├── gcp-cis-config.py │ └── pyenv-init.sh ├── ciem-remediations ├── .gitignore ├── README.md ├── data_events.py ├── generate-policy.py └── images │ └── how-it-works.png ├── code-security └── iac │ └── update_custom_policies │ ├── README.md │ └── update_policies_directory.sh ├── instance-discovery ├── Dockerfile ├── LICENSE ├── README.md ├── instances_without_agents.py ├── requirements.txt └── tests │ ├── test_integration_instances_without_agents.py │ └── test_unit_instances_without_agents.py ├── jfrogcloudconfig.yml ├── k8s-crypto-miner.yaml ├── lw-billing ├── cmd │ ├── aws.go │ ├── azure.go │ ├── gcp.go │ ├── lwaws │ │ └── aws.go │ ├── lwazure │ │ └── azure.go │ ├── lwgcp │ │ └── gcp.go │ └── root.go ├── go.mod ├── go.sum ├── helpers │ ├── aws_instances.go │ └── utils.go └── main.go ├── lw-inventory ├── .gitignore ├── LICENSE ├── README.md ├── cmd │ ├── aws.go │ ├── azure.go │ ├── gcp.go │ ├── lwaws │ │ └── aws.go │ ├── lwazure │ │ └── azure.go │ ├── lwgcp │ │ └── gcp.go │ └── root.go ├── go.mod ├── go.sum ├── helpers │ └── utils.go └── main.go ├── lw-oci-integration ├── .gitignore ├── README.md ├── bash │ ├── README.md │ └── lacework_integration_payload.sh ├── tf_module │ └── README.md └── usage_metrics │ ├── README.md │ └── oci_usage_metrics.py ├── lw-suppressions-migration ├── .DS_Store ├── README.md ├── migrate.py ├── old │ ├── aws_exceptions.csv │ ├── aws_mappings.csv │ ├── migrate.py │ └── nonCIS.csv └── reference │ ├── cli.txt │ ├── suppressions_example.json │ └── v2suppressions_example.json ├── lw_aws_serverless.sh ├── pwsh └── old-resource-scripts │ ├── lw_aws_inventory.ps1 │ └── lw_azure_inventory.ps1 ├── scanners ├── lw_proxy_scanner.sh ├── lw_scan_containers_csv.py └── lw_scan_containers_csv_old.py └── test ├── aws └── test.sh └── azure ├── main.tf └── test.sh /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /AWS-System-Manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/AWS-System-Manager/README.md -------------------------------------------------------------------------------- /AWS-System-Manager/aws-ssm-install-datacollector.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/AWS-System-Manager/aws-ssm-install-datacollector.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/README.md -------------------------------------------------------------------------------- /bash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/bash/README.md -------------------------------------------------------------------------------- /bash/lw_aws_agentless_preflight.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/bash/lw_aws_agentless_preflight.sh -------------------------------------------------------------------------------- /bash/lw_aws_exploit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/bash/lw_aws_exploit.sh -------------------------------------------------------------------------------- /bash/lw_aws_inventory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/bash/lw_aws_inventory.sh -------------------------------------------------------------------------------- /bash/lw_aws_preflight.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/bash/lw_aws_preflight.sh -------------------------------------------------------------------------------- /bash/lw_azure_inventory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/bash/lw_azure_inventory.sh -------------------------------------------------------------------------------- /bash/lw_gcp_exploit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/bash/lw_gcp_exploit.sh -------------------------------------------------------------------------------- /bash/lw_gcp_gke_provisioner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/bash/lw_gcp_gke_provisioner.sh -------------------------------------------------------------------------------- /bash/lw_gcp_inventory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/bash/lw_gcp_inventory.sh -------------------------------------------------------------------------------- /bash/old-resource-scripts/lw_aws_inventory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/bash/old-resource-scripts/lw_aws_inventory.sh -------------------------------------------------------------------------------- /bash/old-resource-scripts/lw_azure_inventory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/bash/old-resource-scripts/lw_azure_inventory.sh -------------------------------------------------------------------------------- /bash/old-resource-scripts/lw_gcp_inventory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/bash/old-resource-scripts/lw_gcp_inventory.sh -------------------------------------------------------------------------------- /cfg_analyzers/azure/enable_disable_checkers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/cfg_analyzers/azure/enable_disable_checkers/README.md -------------------------------------------------------------------------------- /cfg_analyzers/azure/enable_disable_checkers/azure-cis-config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/cfg_analyzers/azure/enable_disable_checkers/azure-cis-config.py -------------------------------------------------------------------------------- /cfg_analyzers/azure/enable_disable_checkers/pyenv-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/cfg_analyzers/azure/enable_disable_checkers/pyenv-init.sh -------------------------------------------------------------------------------- /cfg_analyzers/gcp/enable_disable_checkers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/cfg_analyzers/gcp/enable_disable_checkers/README.md -------------------------------------------------------------------------------- /cfg_analyzers/gcp/enable_disable_checkers/gcp-cis-config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/cfg_analyzers/gcp/enable_disable_checkers/gcp-cis-config.py -------------------------------------------------------------------------------- /cfg_analyzers/gcp/enable_disable_checkers/pyenv-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/cfg_analyzers/gcp/enable_disable_checkers/pyenv-init.sh -------------------------------------------------------------------------------- /ciem-remediations/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /ciem-remediations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/ciem-remediations/README.md -------------------------------------------------------------------------------- /ciem-remediations/data_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/ciem-remediations/data_events.py -------------------------------------------------------------------------------- /ciem-remediations/generate-policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/ciem-remediations/generate-policy.py -------------------------------------------------------------------------------- /ciem-remediations/images/how-it-works.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/ciem-remediations/images/how-it-works.png -------------------------------------------------------------------------------- /code-security/iac/update_custom_policies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/code-security/iac/update_custom_policies/README.md -------------------------------------------------------------------------------- /code-security/iac/update_custom_policies/update_policies_directory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/code-security/iac/update_custom_policies/update_policies_directory.sh -------------------------------------------------------------------------------- /instance-discovery/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/instance-discovery/Dockerfile -------------------------------------------------------------------------------- /instance-discovery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/instance-discovery/LICENSE -------------------------------------------------------------------------------- /instance-discovery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/instance-discovery/README.md -------------------------------------------------------------------------------- /instance-discovery/instances_without_agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/instance-discovery/instances_without_agents.py -------------------------------------------------------------------------------- /instance-discovery/requirements.txt: -------------------------------------------------------------------------------- 1 | laceworksdk 2 | requests 3 | -------------------------------------------------------------------------------- /instance-discovery/tests/test_integration_instances_without_agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/instance-discovery/tests/test_integration_instances_without_agents.py -------------------------------------------------------------------------------- /instance-discovery/tests/test_unit_instances_without_agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/instance-discovery/tests/test_unit_instances_without_agents.py -------------------------------------------------------------------------------- /jfrogcloudconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/jfrogcloudconfig.yml -------------------------------------------------------------------------------- /k8s-crypto-miner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/k8s-crypto-miner.yaml -------------------------------------------------------------------------------- /lw-billing/cmd/aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-billing/cmd/aws.go -------------------------------------------------------------------------------- /lw-billing/cmd/azure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-billing/cmd/azure.go -------------------------------------------------------------------------------- /lw-billing/cmd/gcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-billing/cmd/gcp.go -------------------------------------------------------------------------------- /lw-billing/cmd/lwaws/aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-billing/cmd/lwaws/aws.go -------------------------------------------------------------------------------- /lw-billing/cmd/lwazure/azure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-billing/cmd/lwazure/azure.go -------------------------------------------------------------------------------- /lw-billing/cmd/lwgcp/gcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-billing/cmd/lwgcp/gcp.go -------------------------------------------------------------------------------- /lw-billing/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-billing/cmd/root.go -------------------------------------------------------------------------------- /lw-billing/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-billing/go.mod -------------------------------------------------------------------------------- /lw-billing/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-billing/go.sum -------------------------------------------------------------------------------- /lw-billing/helpers/aws_instances.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-billing/helpers/aws_instances.go -------------------------------------------------------------------------------- /lw-billing/helpers/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-billing/helpers/utils.go -------------------------------------------------------------------------------- /lw-billing/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-billing/main.go -------------------------------------------------------------------------------- /lw-inventory/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-inventory/.gitignore -------------------------------------------------------------------------------- /lw-inventory/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-inventory/LICENSE -------------------------------------------------------------------------------- /lw-inventory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-inventory/README.md -------------------------------------------------------------------------------- /lw-inventory/cmd/aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-inventory/cmd/aws.go -------------------------------------------------------------------------------- /lw-inventory/cmd/azure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-inventory/cmd/azure.go -------------------------------------------------------------------------------- /lw-inventory/cmd/gcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-inventory/cmd/gcp.go -------------------------------------------------------------------------------- /lw-inventory/cmd/lwaws/aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-inventory/cmd/lwaws/aws.go -------------------------------------------------------------------------------- /lw-inventory/cmd/lwazure/azure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-inventory/cmd/lwazure/azure.go -------------------------------------------------------------------------------- /lw-inventory/cmd/lwgcp/gcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-inventory/cmd/lwgcp/gcp.go -------------------------------------------------------------------------------- /lw-inventory/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-inventory/cmd/root.go -------------------------------------------------------------------------------- /lw-inventory/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-inventory/go.mod -------------------------------------------------------------------------------- /lw-inventory/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-inventory/go.sum -------------------------------------------------------------------------------- /lw-inventory/helpers/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-inventory/helpers/utils.go -------------------------------------------------------------------------------- /lw-inventory/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-inventory/main.go -------------------------------------------------------------------------------- /lw-oci-integration/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-oci-integration/.gitignore -------------------------------------------------------------------------------- /lw-oci-integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-oci-integration/README.md -------------------------------------------------------------------------------- /lw-oci-integration/bash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-oci-integration/bash/README.md -------------------------------------------------------------------------------- /lw-oci-integration/bash/lacework_integration_payload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-oci-integration/bash/lacework_integration_payload.sh -------------------------------------------------------------------------------- /lw-oci-integration/tf_module/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-oci-integration/tf_module/README.md -------------------------------------------------------------------------------- /lw-oci-integration/usage_metrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-oci-integration/usage_metrics/README.md -------------------------------------------------------------------------------- /lw-oci-integration/usage_metrics/oci_usage_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-oci-integration/usage_metrics/oci_usage_metrics.py -------------------------------------------------------------------------------- /lw-suppressions-migration/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-suppressions-migration/.DS_Store -------------------------------------------------------------------------------- /lw-suppressions-migration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-suppressions-migration/README.md -------------------------------------------------------------------------------- /lw-suppressions-migration/migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-suppressions-migration/migrate.py -------------------------------------------------------------------------------- /lw-suppressions-migration/old/aws_exceptions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-suppressions-migration/old/aws_exceptions.csv -------------------------------------------------------------------------------- /lw-suppressions-migration/old/aws_mappings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-suppressions-migration/old/aws_mappings.csv -------------------------------------------------------------------------------- /lw-suppressions-migration/old/migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-suppressions-migration/old/migrate.py -------------------------------------------------------------------------------- /lw-suppressions-migration/old/nonCIS.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-suppressions-migration/old/nonCIS.csv -------------------------------------------------------------------------------- /lw-suppressions-migration/reference/cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-suppressions-migration/reference/cli.txt -------------------------------------------------------------------------------- /lw-suppressions-migration/reference/suppressions_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-suppressions-migration/reference/suppressions_example.json -------------------------------------------------------------------------------- /lw-suppressions-migration/reference/v2suppressions_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw-suppressions-migration/reference/v2suppressions_example.json -------------------------------------------------------------------------------- /lw_aws_serverless.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/lw_aws_serverless.sh -------------------------------------------------------------------------------- /pwsh/old-resource-scripts/lw_aws_inventory.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/pwsh/old-resource-scripts/lw_aws_inventory.ps1 -------------------------------------------------------------------------------- /pwsh/old-resource-scripts/lw_azure_inventory.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/pwsh/old-resource-scripts/lw_azure_inventory.ps1 -------------------------------------------------------------------------------- /scanners/lw_proxy_scanner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/scanners/lw_proxy_scanner.sh -------------------------------------------------------------------------------- /scanners/lw_scan_containers_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/scanners/lw_scan_containers_csv.py -------------------------------------------------------------------------------- /scanners/lw_scan_containers_csv_old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/scanners/lw_scan_containers_csv_old.py -------------------------------------------------------------------------------- /test/aws/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/test/aws/test.sh -------------------------------------------------------------------------------- /test/azure/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/test/azure/main.tf -------------------------------------------------------------------------------- /test/azure/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacework-dev/scripts/HEAD/test/azure/test.sh --------------------------------------------------------------------------------