Ensure 'Block Project-Wide SSH Keys' Is Enabled for VM Instances
Scanned 9/3/2026
Install to Claude Code
npx -y skills add CyberStrikeus/CyberStrike --skill cis-gcp-foundations-4.3 --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Cis Gcp Foundations 4.3?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/cyberstrikeus-cis-gcp-foundations-4-3)More formats (shields.io, HTML) on the badges page.
---
name: cis-gcp-foundations-4.3
description: "Ensure 'Block Project-Wide SSH Keys' Is Enabled for VM Instances"
category: cis-gcp-foundations
version: "4.0.0"
author: cyberstrike-official
tags: [cis, gcp, compute, virtual-machines, ssh]
cis_id: "4.3"
cis_benchmark: "CIS Google Cloud Platform Foundation Benchmark v4.0.0"
tech_stack: [gcp]
cwe_ids: []
chains_with: []
prerequisites: []
severity_boost: {}
---
# 4.3 Ensure "Block Project-Wide SSH Keys" Is Enabled for VM Instances (Automated)
## Profile Applicability
- Level 1
## Description
It is recommended to use Instance specific SSH key(s) instead of using common/shared project-wide SSH key(s) to access Instances.
## Rationale
Project-wide SSH keys are stored in Compute/Project-meta-data. Project wide SSH keys can be used to login into all the instances within project. Using project-wide SSH keys eases the SSH key management but if compromised, poses the security risk which can impact all the instances within project. It is recommended to use Instance specific SSH keys which can limit the attack surface if the SSH keys are compromised.
## Impact
Users already having Project-wide ssh key pairs and using third party SSH clients will lose access to the impacted Instances. For Project users using gcloud or GCP Console based SSH option, no manual key creation and distribution is required and will be handled by GCE (Google Compute Engine) itself. To access Instance using third party SSH clients Instance specific SSH key pairs need to be created and distributed to the required users.
## Audit
### From Google Cloud Console
1. Go to the `VM instances` page by visiting https://console.cloud.google.com/compute/instances. It will list all the instances in your project.
2. For every instance, click on the name of the instance.
3. Under `SSH Keys`, ensure `Block project-wide SSH keys` is selected.
### From Google Cloud CLI
1. List the instances in your project and get details on each instance:
```
gcloud compute instances list --format=json
```
2. Ensure `key: block-project-ssh-keys` is set to `value: 'true'`.
## Remediation
### From Google Cloud Console
1. Go to the `VM instances` page by visiting: https://console.cloud.google.com/compute/instances. It will list all the instances in your project.
2. Click on the name of the Impacted instance.
3. Click `Edit` in the toolbar.
4. Under SSH Keys, go to the `Block project-wide SSH keys` checkbox.
5. To block users with project-wide SSH keys from connecting to this instance, select `Block project-wide SSH keys`.
6. Click `Save` at the bottom of the page.
7. Repeat steps for every impacted Instance.
### From Google Cloud CLI
To block project-wide public SSH keys, set the metadata value to `TRUE`:
```
gcloud compute instances add-metadata <INSTANCE_NAME> --metadata block-project-ssh-keys=TRUE
```
## Default Value
By Default `Block Project-wide SSH keys` is not enabled.
## References
1. https://cloud.google.com/compute/docs/instances/adding-removing-ssh-keys
2. https://cloud.google.com/sdk/gcloud/reference/topic/formats
## Additional Information
If OS Login is enabled, SSH keys in instance metadata are ignored, and therefore blocking project-wide SSH keys is not necessary.
## CIS Controls
| Controls Version | Control | IG 1 | IG 2 | IG 3 |
| ---------------- | ------------------------------------------------------------------- | ---- | ---- | ---- |
| v8 | 3.10 Encrypt Sensitive Data in Transit | | X | X |
| v8 | 5.2 Use Unique Passwords | X | X | X |
| v7 | 4.4 Use Unique Passwords | | X | X |
| v7 | 16.5 Encrypt Transmittal of Username and Authentication Credentials | | X | X |
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!