You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for the curb bindings! I haven't looking into it too deeply yet, but I'm attempting to do https over a proxy with the Curb bindings, and I'm getting unexpected results. From the commandline, this works:
issuer: C=US; O=Entrust, Inc.; OU=www.entrust.net/rpa is incorporated by reference; OU=(c) 2009 Entrust, Inc.; CN=Entrust Certification Authority - L1C
SSL certificate verify ok.
POST /resource/loginAction.jsp HTTP/1.1
User-Agent: curl/7.21.6 (x86_64-pc-linux-gnu) libcurl/7.21.6 OpenSSL/1.0.0e zlib/1.2.3.4 libidn/1.22 librtmp/2.3
..... ......
But when I try and run the same thing with ruby and curl, I get right to the SSL processing output from the curl libraries, and it seems to get confused. I'm not sure what
I appear to be receiving the certificates in the curb::easy object body_str, which doesn't seem right. I haven't dug too far, but wondered if you had any thoughts?
The text was updated successfully, but these errors were encountered:
Thanks for the curb bindings! I haven't looking into it too deeply yet, but I'm attempting to do https over a proxy with the Curb bindings, and I'm getting unexpected results. From the commandline, this works:
jong@analysis: env | grep PROXY
ALL_PROXY=http://outbound-proxy..com:3128
jong@analysis:
$ curl --version$ curl -c cookies.txt -kv -d 'userid=&passwd=' https://.com/resource/loginAction.jspcurl 7.21.6 (x86_64-pc-linux-gnu) libcurl/7.21.6 OpenSSL/1.0.0e zlib/1.2.3.4 libidn/1.22 librtmp/2.3
Protocols: dict file ftp ftps gopher http https imap imaps ldap pop3 pop3s rtmp rtsp smtp smtps telnet tftp
Features: GSS-Negotiate IDN IPv6 Largefile NTLM SSL libz
jong@analysis:
..... .....
..... ......
But when I try and run the same thing with ruby and curl, I get right to the SSL processing output from the curl libraries, and it seems to get confused. I'm not sure what
Proxy-Connection: Keep-Alive
Accept: /
User-Agent: jonger-rb-uploader/1.0
< HTTP/1.0 200 Connection established
<
CApath: /etc/ssl/certs
In my ruby, I'm setting some headers, and this:
ssl_verify_peer = false
proxy_url =
I appear to be receiving the certificates in the curb::easy object body_str, which doesn't seem right. I haven't dug too far, but wondered if you had any thoughts?
The text was updated successfully, but these errors were encountered: