用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/CyberStrikeus/CyberStrike --skill cis-ubuntu1604-v200-5-4-2命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
macOS post-exploitation for credential harvesting, DTrace monitoring, TCC bypass, and stealth operations via native tools
Windows userland post-exploitation for credential harvesting, monitoring, AMSI/ETW bypass, and stealth operations
Kubernetes post-exploitation for container escape, secret extraction, RBAC abuse, and cluster persistence
基于 SOC 职业分类
正在显示 SKILL.md
| name | cis-ubuntu1604-v200-5-4-2 |
| description | Ensure lockout for failed password attempts is configured |
| category | cis-iam |
| version | 2.0.0 |
| author | cyberstrike-official |
| tags | ["cis","ubuntu","linux","ubuntu-16.04","authentication","pam"] |
| cis_id | 5.4.2 |
| cis_benchmark | CIS Ubuntu Linux 16.04 LTS Benchmark v2.0.0 |
| tech_stack | ["ubuntu","linux"] |
| cwe_ids | [] |
| chains_with | [] |
| prerequisites | [] |
| severity_boost | {} |
Profile Applicability:
Assessment Status: Automated
Lock out users after n unsuccessful consecutive login attempts. The first sets of changes are made to the PAM configuration files. The second set of changes are applied to the program specific PAM configuration file. The second set of changes must be applied to each program that will lock out users. Check the documentation for each secondary program for instructions on how to configure them to work with PAM.
deny=n - n represents the number of failed attempts before the account is lockedunlock_time=n - n represents the number of seconds before the account is unlockedaudit - Will log the user name into the system log if the user is not found.silent - Don't print informative messages. Set the lockout number and unlock time in accordance with local site policy.Locking out user IDs after n unsuccessful consecutive login attempts mitigates brute force password attacks against your systems.
Verify password lockouts are configured. These settings are commonly configured with the pam_tally2.so modules found in /etc/pam.d/common-auth:
grep "pam_tally2" /etc/pam.d/common-auth
Expected output:
auth required pam_tally2.so onerr=fail audit silent deny=5 unlock_time=900
Verify the pam_deny.so module and pam_tally2.so modules are included in /etc/pam.d/common-account:
grep -E "pam_(tally2|deny)\.so" /etc/pam.d/common-account
Expected output:
account requisite pam_deny.so
account required pam_tally2.so
Edit the /etc/pam.d/common-auth file and add the auth line below:
auth required pam_tally2.so onerr=fail audit silent deny=5 unlock_time=900
Edit the /etc/pam.d/common-account file and add the account lines below:
account requisite pam_deny.so
account required pam_tally2.so
pam_tally2 to the account section account required pam_tally2.so for the counter to reset to 0 when using sudo.deny= in the pam_tally2.so module, the user can be unlocked by issuing the command /sbin/pam_tally2 -u <username> --reset. This command sets the failed count to 0, effectively unlocking the user.None
| Controls Version | Control |
|---|---|
| v7 | 16.7 Establish Process for Revoking Access - Establish and follow an automated process for revoking system access by disabling accounts immediately upon termination or change of responsibilities of an employee or contractor. Disabling these accounts, instead of deleting accounts, allows preservation of audit trails. |