用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/CyberStrikeus/CyberStrike --skill cis-tomcat9-v120-2-7命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | cis-tomcat9-v120-2.7 |
| description | Ensure Sever Header is Modified To Prevent Information Disclosure (Automated) |
| category | cis-tomcat |
| version | 1.2.0 |
| author | cyberstrike-official |
| tags | ["cis","tomcat","linux","java","information-leakage","server-info"] |
| cis_id | 2.7 |
| cis_benchmark | CIS Apache Tomcat 9 Benchmark v1.2.0 |
| tech_stack | ["linux","tomcat","java"] |
| cwe_ids | [] |
| chains_with | [] |
| prerequisites | [] |
| severity_boost | {} |
The server header is a vanity header developed to help identify the underlying technology in a server for troubleshooting and identification. This header is unnecessary and could be used to target your website for exploitation.Tomcat does not provide the ability to remove the server header, however, it does provide the ability to modify the header.
The server header may specify the underlying technology used by an application. Attackers are able to conduct reconnaissance on a website using these response headers. This header could be used to target attacks for specific known vulnerabilities associated with the underlying technology. Removing this header will prevent targeting of your application for specific exploits by non-determined attackers.
While this is not the only way to fingerprint a site through the response headers, it makes it harder and prevents some potential attackers from targeting your website.
In $CATALINA_HOME/conf/server.xml, check for the server directive as shown below. If the directive is not present or the directive specifies something revealing on the underlying infrastructure then the server header should be changed.
<Connector port="8443" server="Apache" redirectPort="8080" />
In $CATALINA_HOME/conf/server.xml, add the server directive to the connector as shown below replacing apache with the text of your choosing. This text should not help in identifying the server.
<Connector port="8443" server="I am a teapot" redirectPort="8080" />
If you do not have the header defined:
sed -lr 's/Connector/Connector server="I am a teapot"/g' $CATALINA_HOME/conf/server.xml
If you already have a header but it is still revealing
sed -ir /conf/server.xml
The default value is Apache-Coyote/1.1.
v8:
v7: