I have had two client's servers exhibit the same problem recently.
Both servers were set to manual whm/cpanel updates, only automatic security updates.
A change in perl modules sometime after April 10 broke some perl scripts that make HTTPS requests. One of them was making requests to ebay, the other to authorize.net.
One of the servers had a clickcart pro shopping cart on it (perl) and was showing this error when trying to contact authorize.net via https:
Has anyone else seen this problem? It seems to be pretty significant but I haven't had any luck in tracking down the exact cause. I think this is the file in question that was updated causing the problem:
/usr/lib/perl5/site_perl/5.8.8/LWP/Protocol/http.pm
I tried manipulating LWP by manually setting $ENV{HTTPS_VERSION} to SSLv2 and then SSLv3 but that didnt help.
Both servers were set to manual whm/cpanel updates, only automatic security updates.
A change in perl modules sometime after April 10 broke some perl scripts that make HTTPS requests. One of them was making requests to ebay, the other to authorize.net.
One of the servers had a clickcart pro shopping cart on it (perl) and was showing this error when trying to contact authorize.net via https:
The other test perl script from ebay was showingScript execution error
Server closed connection without sending any data back
The fix was to restore /usr/lib/perl5/site_perl from an earlier backup, or point the perl script to use an older perl interpreter installed on the system.SSL3_GET_RECORD:wrong version number
Has anyone else seen this problem? It seems to be pretty significant but I haven't had any luck in tracking down the exact cause. I think this is the file in question that was updated causing the problem:
/usr/lib/perl5/site_perl/5.8.8/LWP/Protocol/http.pm
I tried manipulating LWP by manually setting $ENV{HTTPS_VERSION} to SSLv2 and then SSLv3 but that didnt help.