Force SSL when accessing the manager application via HTTP (Manual)
Scanned 9/3/2026
Install to Claude Code
npx -y skills add CyberStrikeus/CyberStrike --skill cis-tomcat101-10.4 --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Cis Tomcat101 10.4?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/cyberstrikeus-cis-tomcat101-10-4)More formats (shields.io, HTML) on the badges page.
---
name: cis-tomcat101-10.4
description: "Force SSL when accessing the manager application via HTTP (Manual)"
category: cis-tomcat
version: "1.0.0"
author: cyberstrike-official
tags: [cis, tomcat, linux, java, configuration, ssl, manager, security]
cis_id: "10.4"
cis_benchmark: "CIS Apache Tomcat 10.1 Benchmark v1.0.0"
tech_stack: [linux, tomcat, java]
cwe_ids: []
chains_with: []
prerequisites: []
severity_boost: {}
---
# 10.4 Force SSL when accessing the manager application via HTTP (Manual)
## Description
Use the transport-guarantee attribute to ensure SSL protection when accessing the manager application.
## Rationale
By default when accessing the manager application via HTTP, login information is sent over the wire in plain text. By setting the transport-guarantee within `web.xml`, SSL is enforced.
Note: This requires SSL to be configured.
## Audit Procedure
Ensure `$CATALINA_HOME/webapps/manager/WEB-INF/web.xml` has the `<transport-guarantee>` set to `CONFIDENTIAL`.
```
# grep transport-guarantee $CATALINA_HOME/webapps/manager/WEB-INF/web.xml
```
## Remediation
Set `<transport-guarantee>` to `CONFIDENTIAL` in `$CATALINA_HOME/webapps/manager/WEB-INF/web.xml`:
```xml
<security-constraint>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
```
## Default Value
By default this configuration is not present.
## References
1. https://www.owasp.org/index.php/Securing_tomcat
## CIS Controls
| Controls Version | Control | IG 1 | IG 2 | IG 3 |
| ---------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---- | ---- | ---- |
| v8 | 3.10 Encrypt Sensitive Data in Transit<br>Encrypt sensitive data in transit. Example implementations can include: Transport Layer Security (TLS) and Open Secure Shell (OpenSSH). | | ● | ● |
| v7 | 14.4 Encrypt All Sensitive Information in Transit<br>Encrypt all sensitive information in transit. | | ● | ● |
## Profile
Level 1
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!