用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/CyberStrikeus/CyberStrike --skill cis-cassandra40-v130-2-1命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | cis-cassandra40-v130-2.1 |
| description | Ensure that authentication is enabled for Cassandra databases |
| category | cis-cassandra |
| version | 1.3.0 |
| author | cyberstrike-official |
| tags | ["cis","cassandra","authentication","authorization"] |
| cis_id | 2.1 |
| cis_benchmark | CIS Apache Cassandra 4.0 Benchmark v1.3.0 |
| tech_stack | ["cassandra"] |
| cwe_ids | [] |
| chains_with | [] |
| prerequisites | [] |
| severity_boost | {} |
Authentication is pluggable in Cassandra and is configured using the authenticator setting in cassandra.yaml. Cassandra ships with two options included in the default distribution, AllowAllAuthenticator and PasswordAuthenticator. The default, AllowAllAuthenticator, performs no authentication checks and therefore requires no credentials. It is used to disable authentication completely. The second option, PasswordAuthenticator, stores encrypted credentials in a system table. This can be used to enable simple username/password authentication.
Authentication is a necessary condition of Cassandra's permissions subsystem, so if authentication is disabled then so are permissions. Failure to authenticate clients, users, and/or servers can allow unauthorized access to the Cassandra database and can prevent tracing actions back to their sources. The authentication mechanism should be implemented before anyone accesses the Cassandra server.
Run the following command to verify whether authentication is enabled (authenticator values set to PasswordAuthenticator) on the Cassandra server.
The Cassandra configuration files can be found in the conf directory of tarballs. For packages, the configuration files will be located in /etc/cassandra.
cat cassandra.yaml | grep -in "authenticator:"
If authenticator is set to AllowAllAuthenticator, then this is a finding.
To enable the authentication mechanism:
cassandra.yaml file to modify/add entry for authenticator: set it to PasswordAuthenticatorauthenticator: AllowAllAuthenticator
Controls Version v8:
Controls Version v7: