]
Darran Lofthouse updated WFLY-8371:
-----------------------------------
Summary: Undertow https-listener attributes need marking as alternatives to
ssl-context attribute. (was: https-listener with ssl-context is not verifying client)
Undertow https-listener attributes need marking as alternatives to
ssl-context attribute.
-----------------------------------------------------------------------------------------
Key: WFLY-8371
URL:
https://issues.jboss.org/browse/WFLY-8371
Project: WildFly
Issue Type: Bug
Components: Security, Web (Undertow)
Reporter: Darran Lofthouse
Assignee: Darran Lofthouse
https-listener with set ssl-context
{noformat}
<https-listener name="https" socket-binding="https"
ssl-context="serverSSLContext" verify-client="REQUIRED"/>
{noformat}
is not verifying client
{noformat}
verify-client="REQUIRED"
{noformat}
Request
{noformat}
curl
https://192.168.122.196:8847/ -k
{noformat}
should be rejected, but isn't
{noformat}
$ curl
https://192.168.122.196:8847/ -k
<!DOCTYPE html>
<html>
<head>
<title>JBoss EAP 7</title>
<!-- proper charset -->
<meta http-equiv="content-type"
content="text/html;charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8"
/>
<link rel="stylesheet" type="text/css"
href="eap.css" />
<link rel="shortcut icon" href="favicon.ico" />
</head>
<body>
<div id="container" style="position: absolute; left: 0px; top: 0px;
right: 0px; bottom: 0px;">
<!-- header -->
<div class="header-panel">
<div class="header-line"> </div>
<div class="header-top">
<img class="prod-title"
src="images/product_title.png"/><span
class="prod-version">7</span>
</div>
<div class="header-bottom"> </div>
</div>
<!-- main content -->
<div id="content">
<div class="section">
<h1>Welcome to JBoss EAP 7</h1>
<h3>Your Red Hat JBoss Enterprise Application Platform is
running.</h3>
<p>
<a href="/console">Administration Console</a> |
<a
href="https://access.redhat.com/documentation/en/jboss-enterprise-ap...
|
<a
href="https://access.redhat.com/discussions">Online User
Groups</a> <br/>
</p>
<sub>To replace this page simply deploy your own war with / as its context
path.<br/>
To disable it, remove the "welcome-content" handler for location / in
the undertow subsystem.</sub>
</div>
</div>
<div id="footer"> </div>
</div>
</body >
</html>
{noformat}