Page 1 of 2 12 LastLast
Results 1 to 10 of 64

Hybrid View

  1. #1
    Join Date
    Jan 2004
    Posts
    66,450
    Plugin Contributions
    81

    Default Re: PayPal Error (35) error:1408F10B SSL3_GET_RECORD:wrong version number

    Quote Originally Posted by bumba000 View Post
    How does this apply to authorizenet_aim.php? Didn't notice a separate thread for it and do see

    curl_setopt($ch, CURLOPT_SSLVERSION, 3);

    at my 576...

    What's the move??

    Thanks a bunch,
    John
    IMO I'd leave it alone for now (I'm not seeing any errors with Authnet as-is right now), as even PayPal has apparently relaxed their initial hyper-protective rejection of all SSL3 connections. But if the same error pops up suddenly, simply comment out the line.
    .
    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  2. #2
    Join Date
    Nov 2007
    Location
    Woodbine, Georgia, United States
    Posts
    4,252
    Plugin Contributions
    59

    Default Re: PayPal Error (35) error:1408F10B SSL3_GET_RECORD:wrong version number

    PP tech support told me it's only a 24 hr reprieve
    PRO-Webs, Inc. since 2003 :: Zen Cart Hosting :: Zen Cart SEO – 12 Steps to Success
    **I answer questions in the forum, private messages are not conducive to a helpful community.

  3. #3
    Join Date
    Jan 2004
    Posts
    66,450
    Plugin Contributions
    81

    Default Re: PayPal Error (35) error:1408F10B SSL3_GET_RECORD:wrong version number

    Quote Originally Posted by mprough View Post
    PP tech support told me it's only a 24 hr reprieve
    That wouldn't surprise me.
    .
    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  4. #4
    Join Date
    Feb 2007
    Location
    Pennsylvania
    Posts
    856
    Plugin Contributions
    0

    Default Re: PayPal Error (35) error:1408F10B SSL3_GET_RECORD:wrong version number

    thank you

  5. #5
    Join Date
    Jun 2003
    Location
    Newcastle UK
    Posts
    2,930
    Plugin Contributions
    4

    Default Re: PayPal Error (35) error:1408F10B SSL3_GET_RECORD:wrong version number

    I've done some quick and dirty testing using wireshark to analyze the ssl handshake.

    the results seem to suggest that these 3 scenarios are all similar
    eg
    Using
    curl_setopt($ch, CURLOPT_SSLVERSION, 1);
    curl_setopt($ch, CURLOPT_SSLVERSION, 4);
    or in fact removing the curl_setopt($ch, CURLOPT_SSLVERSION, n); line completely
    will force version negotiation and curl will then use TLS

    It should be noted that php documentation is pretty poor on this. Suggesting that only 2 and 3 are valid options for CURLOPT_SSLVERSION but that given no version php will negotiate for the most recent version e.g. tls v1.2

    As has been noted, paypal seems to have re added ssl v3 to their main live endpoint, while their sandbox is blocking ssl v3.
    This maybe because they gave no notice, and have had mega complaints. It's still likely they will turn off ssl v3 on the live endpoints soon.

    At this point, the advice DrByte posted in the release announcements should still be followed:
    http://www.zen-cart.com/showthread.p...yment-security

    We will of course update that based on any further information.

  6. #6
    Join Date
    Jan 2004
    Posts
    66,450
    Plugin Contributions
    81

    Default Re: PayPal Error (35) error:1408F10B SSL3_GET_RECORD:wrong version number

    To add a point of clarity, for those technically-minded, here are currently-valid SSL/TLS versions, listed from most-secure to least-secure:

    Best to worst:
    TLS 1.2 (best choice today)
    TLS 1.1
    TLS 1.0
    SSL 3.0 (has the POODLE vulnerability)
    SSL 2.0 (generally not recommended, and typically not even available in modern webservers)
    SSL 1 (obsolete, no longer offered)

    So, what wilt and I have been investigating is the net impact against performance based on the code changes I've been posting about.

    And, so reading between the lines from wilt's post above, what we're seeing is that if one sets CURLOPT_SSLVERSION to 2 or 3, it will try SSL 2.0 or SSL 3.0, respectively, but if one comments-out the CURLOPT_SSLVERSION then the best TLS (or SSL if no TLS versions can be negotiated) will be selected.

    (Admittedly we've also confirmed that setting CURLOPT_SSLVERSION to 1 does cause it to jump to autonegotiating a TLS version, but we'd like to do more research before recommending a specific value, since specifying a value like 5 or higher actually causes errors.)

    Hope that helps answer questions for those who are curious.
    .
    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  7. #7
    Join Date
    Jan 2007
    Location
    Australia
    Posts
    6,167
    Plugin Contributions
    7

    Default Re: PayPal Error (35) error:1408F10B SSL3_GET_RECORD:wrong version number

    Quote Originally Posted by DrByte View Post
    Hope that helps answer questions for those who are curious.
    Perfect. Thanks guys. I was planning on using wireshark over the weekend to see exactly what was going on with the various options/settings myself. You've saved me a lot of time :)

    ZenCart really is the best. Not one of the other ecommerce forums I frequent come close to the speed and detail provided regarding this issue. (I suspect that's why PayPal have given a temporary reprieve - All of the other eCommerce systems are still looking for a solution, and I'll wager that none of them will provide the 'techie' info that you have.

    Supurb!!

    Cheers
    RodG

  8. #8
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: PayPal Error (35) error:1408F10B SSL3_GET_RECORD:wrong version number

    Quote Originally Posted by RodG View Post
    Perfect. Thanks guys. I was planning on using wireshark over the weekend to see exactly what was going on with the various options/settings myself. You've saved me a lot of time :)

    ZenCart really is the best. Not one of the other ecommerce forums I frequent come close to the speed and detail provided regarding this issue. (I suspect that's why PayPal have given a temporary reprieve - All of the other eCommerce systems are still looking for a solution, and I'll wager that none of them will provide the 'techie' info that you have.

    Supurb!!

    Cheers
    RodG
    Yupp.. True dat!!!
    **nods in agreement**

    Man it's getting scary how sympatico you and I have been as of late..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  9. #9
    Join Date
    Aug 2009
    Location
    North Idaho, USA
    Posts
    2,008
    Plugin Contributions
    1

    Default Re: PayPal Error (35) error:1408F10B SSL3_GET_RECORD:wrong version number

    TNX guys.

    Authorize.net implemented the SSLv3 checks yesterday and the fix worked like a charm.

  10. #10
    Join Date
    Jan 2004
    Posts
    66,450
    Plugin Contributions
    81

    Default Re: PayPal Error (35) error:1408F10B SSL3_GET_RECORD:wrong version number

    Further, PayPal has posted today that they will (shortly) fully remove SSLv3 support from their servers ... so commenting-out the CURLOPT_SSLVERSION will be necessary ASAP.

    Ref: https://www.paypal-community.com/t5/...LE/ba-p/891829
    .
    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Replies: 1
    Last Post: 9 Dec 2011, 01:15 AM
  2. Paypal IPN error - wrong e-mail address
    By Moncia in forum PayPal Express Checkout support
    Replies: 24
    Last Post: 4 Oct 2007, 12:37 PM
  3. outdated version of PayPal error
    By oavs in forum General Questions
    Replies: 4
    Last Post: 19 Apr 2007, 12:28 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg