用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/CyberStrikeus/CyberStrike --skill cis-cassandra40-v110-3-3命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | cis-cassandra40-v110-3.3 |
| description | Ensure there are no unnecessary roles or excessive privileges |
| category | cis-cassandra |
| version | 1.1.0 |
| author | cyberstrike-official |
| tags | ["cis","cassandra","access-control","roles","privileges","least-privilege"] |
| cis_id | 3.3 |
| cis_benchmark | CIS Apache Cassandra 4.0 Benchmark v1.1.0 |
| tech_stack | ["cassandra"] |
| cwe_ids | [] |
| chains_with | [] |
| prerequisites | [] |
| severity_boost | {} |
Verify each role is require and has only the privileges needed to do its job.
Roles which are unneeded, have super user or other potentially excessive privileges may be an avenue for a hacker to gain access to or modify data in the database.
As a superuser, retrieve all roles:
list roles;
Retrieve all permissions for all roles:
select * from system_auth.role_permissions;
If there are any unnecessary roles or roles with excessive privileges this is a finding.
Remove any unnecessary roles and/or permissions in accordance with organizational needs.
By default, only cassandra role exists with superuser privileges.
v8:
v7: