java - SSL Error: error:1408F10B:SSL routines:SSL3_GET_RECORD:wrong version number error when disabling ssl and enabling TLS -
java - SSL Error: error:1408F10B:SSL routines:SSL3_GET_RECORD:wrong version number error when disabling ssl and enabling TLS -
i trying disable ssl on tomcat , trying send request app on tls port getting next error:
failure in posting request manager: [ssl error: error:1408f10b:ssl routines:ssl3_get_record:wrong version number]
configuration using in server.xml is:
<connector port="18443" protocol="http/1.1" sslenabled="true" maxthreads="150" scheme="https" secure="true" clientauth="false" sslprotocols="tlsv1,tlsv1.1,tlsv1.2" keystorefile="/opt/certs/server.keystore" keystorepass="123456" truststorefile="/opt/certs/server.truststore" truststorepass="123456"/>
can please tell me how should run on tls?
the post request ulrencoded , after decoding https://:port//datamanager?a='1'?b='4'
the problem is working on sslv3 not on tls,my question need add together on client side(apache) on http , sending request server(tomcat) on https.
result of running command checking tlsv1:
ssl handshake has read 2202 bytes , written 294 bytes --- new, tlsv1/sslv3, cipher edh-rsa-des-cbc3-sha server public key 1024 bit secure renegotiation supported compression: none expansion: none ssl-session: protocol : tlsv1 cipher : edh-rsa-des-cbc3-sha session-id: 552bf0c890c7deede02a2b1fb3fe7659dcd753c4458814a8104ff4ec8eee65c5 session-id-ctx: master-key: 2c482e9c0bebf40cdda378868a077391a387c94da55abc9997d1bb5139a1077d83364eed94dbe799cc82e8d46bc5fecb key-arg : none krb5 principal: none psk identity: none psk identity hint: none start time: 1428943048 timeout : 7200 (sec) verify homecoming code: 19 (self signed certificate in certificate chain) --- read 0x83a0798 [0x83a7293] (5 bytes => 5 (0x5)) 0000 - 15 03 01 00 18 ..... read 0x83a0798 [0x83a7298] (24 bytes => 24 (0x18)) 0000 - 87 53 37 c9 d2 5d 44 6b-94 c3 80 bd 17 3e 31 39 .s7..]dk.....>19 0010 - 53 ac 52 bc e0 3b 53 89- s.r..;s. closed write 0x83a0798 [0x83ab7e3] (29 bytes => 29 (0x1d)) 0000 - 15 03 01 00 18 49 10 83-df 10 45 43 d5 9a 39 8f .....i....ec..9. 0010 - de df ec 3d 8c 68 76 0f-67 ca a5 79 91 ...=.hv.g..y.
ssl-session: protocol : tlsv1
as can see, uses tlsv1 successfully.
failure in posting request state manager: [ssl error: error:1408f10b:ssl routines:ssl3_get_record:wrong version number]
don't allow ssl3_get_record
confuse you. since record formats same or similar functions name containing ssl3 used process tls data. not clear question going on, might kind of message if application tries tlsv12-only request against server not supporting tlsv12.
java ssl openssl tomcat6 poodle-attack
Comments
Post a Comment