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

SSLv3 #20

Open
HengeDK opened this issue May 22, 2018 · 7 comments
Open

SSLv3 #20

HengeDK opened this issue May 22, 2018 · 7 comments

Comments

@HengeDK
Copy link

HengeDK commented May 22, 2018

how can I disable SSLv3

@thezoggy
Copy link

thezoggy commented May 22, 2018

in rss-synd.tcl,
after the line:
set packages(tls) [catch {package require tls}]; # https
add:
::tls::init -ssl2 0 -ssl3 0 -tls1 1

and then later in the file, replace:
::http::register https 443 ::tls::socket
with:
::http::register https 443 [list ::tls::socket -tls1 1]

@HengeDK
Copy link
Author

HengeDK commented May 22, 2018

still get this

(State: {error flushing "sock55fba83c31d0": connection reset by peer} {error flushing "sock55fba83c31d0": connection reset by peer
while executing
"flush $sock"} {POSIX ECONNRESET {connection reset by peer}})
SSL channel "sock55fba83c31d0": error: sslv3 alert handshake failure

@thezoggy
Copy link

restart after modifying the code? what version of tcl?

@HengeDK
Copy link
Author

HengeDK commented May 23, 2018

yes I restarted

tcl8.6

@HengeDK
Copy link
Author

HengeDK commented May 23, 2018

is this issue because the site is running with cloudflare ??

@HengeDK
Copy link
Author

HengeDK commented May 23, 2018

Found this
teeli/urltitle#6
problems with sni and cloudflare
don't know if it can be used

@mascalzone

This comment has been minimized.

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