用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/CyberStrikeus/CyberStrike --skill cis-apache24-2-2命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | cis-apache24-2.2 |
| description | Ensure the Log Config Module Is Enabled |
| category | cis-apache |
| version | 2.3.0 |
| author | cyberstrike-official |
| tags | ["cis","apache","linux","modules","logging"] |
| cis_id | 2.2 |
| cis_benchmark | CIS Apache HTTP Server 2.4 Benchmark v2.3.0 |
| tech_stack | ["linux","apache"] |
| cwe_ids | [] |
| chains_with | [] |
| prerequisites | [] |
| severity_boost | {} |
The log_config module provides for flexible logging of client requests, and provides for the configuration of the information in each log.
Logging is critical for monitoring usage and potential abuse of your web server. This module is required to configure web server logging using the log_format directive.
Perform the following to determine if the log_config has been loaded:
Use the httpd -M option as root to check that the module is loaded.
# httpd -M | grep log_config
Note: If the module is correctly enabled, the output will include the module name and whether it is loaded statically or as a shared module
Perform either one of the following:
./configure script without including the --disable-log-config script options.
$ cd $DOWNLOAD_HTTPD$ ./configureLoadModule log_config_module modules/mod_log_config.soThe log_config module is loaded by default.