Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

http-client-tls vulnerable to Logjam? #215

Closed
oherrala opened this issue Jul 16, 2016 · 2 comments
Closed

http-client-tls vulnerable to Logjam? #215

oherrala opened this issue Jul 16, 2016 · 2 comments

Comments

@oherrala
Copy link

ssllabs.com has test for Logjam in their client tests. This is probably issue in Haskell's tls library instead of http-client-tls. Ping @vincenthz .

Prelude> import Network.HTTP.Client
Prelude> import Network.HTTP.Client.TLS
Prelude> manager <- newManager tlsManagerSettings
Prelude> request <- parseRequest "https://www.ssllabs.com:10445/"
Prelude> response <- httpLbs request manager
Prelude> print response
Response {responseStatus = Status {statusCode = 200, statusMessage = "OK"}, responseVersion = HTTP/1.1 ... <output cleaned>

I expect this simple test to throw exception or fail otherwise instead of succesful connection.

Chrome, Firefox and Safari don't allow connection to this test host.

This was found with TryTLS test tool: https://github.com/ouspg/trytls

@vincenthz
Copy link
Contributor

logjam is very much a policy choice. tracking this at haskell-tls/hs-tls#157

@snoyberg
Copy link
Owner

Upstream issue, closing.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants