ssl

Logging a Jetty SSL Client Certificate Issue

I am trying to configure Jetty (via the jetty-maven-plugin) to use client certificates. I have it working (somewhat) without the client certificate, but with the set to yes, absolutely nothing happens. What I need to know is how to configure Jetty to log its startup and operation to try to figure out the issue. Can anyone assist? ...

Using <urlmon.h> and URLDownloadToFile to get HTTPS Web Resources

All, I am making a programming that will be able to download content from various websites on and off of my local network.To do this, I must use the libs and c++ for compatibility reasons. So far I have been able to successfully access a normal HTTP page, and an HTTPS page on the web. Example: HRESULT res = URLDownloadToFile( NULL, ...

PHP 5.3 CodeIgniter Gmail SMTP Timeout

I have use gmail smtp to send email from the web application that I wrote using CodeIgniter without a problems until recently. This is the snippet of my code: $config['protocol'] = 'smtp'; $config['smtp_host'] = $this->smtp_host; $config['smtp_port'] = $this->smtp_port; $config['smtp_user'] = $this->smtp_username; $config...

authCookie not secure in global.asax

I have a login problem. First i am using SSL while logging. When i log in, i am creating a cookie like this. when i check if it is secure the answer is yes. FormsAuthenticationTicket authTicket = new FormsAuthenticationTicket(1, // version UserName.Text, ...

SSL - What should I do for it?

Hello all, I need to enable SSL on my website. Q1> What should I do to enable this service? Q2> Should I change my code (i.e. PHP+JavaScript+MySQL )? Thank you ...

type enforcement on _ssl.sslwrap function params

The _ssl.sslwrap function appears to check to see if the sock passed in is a subclass of _socket.socket. I am passing in a class that implements the interface of _socket.socket. It gets mad because my socket isn't a subclass. Is this something I should fix on my side, or is this something that I should ask about from the python-dev gu...

QT QSslError being signaled with the error code set to NoError

My Problem I compiled OpenSSL into QT to enable OpenSSL support. Everything appeared to go correctly in the compile. However, when I try to use the official HTTP example application that can be found here, everytime I try to download an https page, it will signal two QSslError, each with contents NoError. The types of QSslErrors, inclu...

Questions about SSL.

Hi I have a couple questions about SSL certificates. I never used them before but my current project requires me to do so. Question 1. Where should you use SSL? Like I know places like logging in, resetting passwords are definite places to put it. How about once they are logged in? Should all requests go through SSL even if the data...

optimizing parallel data tranfer

Scenario: The data transfer of few gigabytes and considering it would take 2 mins for the data to be transferred from the database to an app. Would like to know: 1. Does splitting up the data transfer into two threads, increase or decrease the overhead performance (or time taken)? or would it be the same considering the database source ...

ssl accelerator

Are there any simple open source ssl accelerator which I could implement for my application? ...

Drupal HTTP / HTTPS Persistent Sessions?

For some reason my site is not sharing the session between http and https. My setup, Drupal 6 with securepages module installed. You cannsee the example of this here, http://matthewwoodard.com/prducts, if you add to cart you will see the cart empties when it switches to https...any suggestions? ...

PyQt + QtWebkit behind a proxy

I'm writing a PyQt (Python bindings for the all-powerful Qt library) application and a small part of my application needs a web browser (hint, OAuth). So I started using QtWebkit, which is fantastic by the way. The only hitch is I would like to allow users behind a proxy to use my application. I have read about the QNetworkProxy class i...

Accessing REST WebService in VB.NET

I am trying to access a REST webservice, however my code doesn't work and keeps throwing a HTTP 401 error see this example screen cap from Wireshark of the initial ssl request: image link This is from a Curl call to the same web address with the same details. The issue is that under my VB.NET version the "Extension: server_name" (and ...

Rack Web Server and https: tutorial?

Can anyone provide a link to a description or tutorial dealing with the setup of https and installint certs etc using the Ruby RACK webserver? Thanks ...

Add Custom Green BAR MSG with EV SSL

Hello, I am interested in purchasing a SSL/TSL certificate for my website and I would like to know which retailer allows me to add my custom message in the green address bar like in this image : http://tinyurl.com/33yug4y You can see there : "COMPANIA NATIONALA DE TRANSPORTURI AERIENE ..." I want something like that too. ...

cookie in default not secure but secure in SSL

I have a GUI when i log in i create a cookie and it encrypt it. I am usin SSL. I check in the Login.aspx page if the cookie is secure, which it is. but then before going to the default page it goes to the Global.ascx page. Here in the Application_AuthenticateRequest it gets the cookie and decrypts it for the default page.. Now i kno...

How do I duplicate certificate authentication (Mumble (c/c++)) in Python?

Alright so, before I really get into this post, I am going to have to warn you that this might not be an easy fix. Whoever reads and is able to reply to this post must know a lot of c/c++, and at least some python to be able to answer the question I have above. Basically, I have a connection method from Mumble (a VOIP client), that con...

Enable SSL on Entourage

We're running Microsoft Entourage 2008 for email on our Mac systems. Until recently we have NOT been using SSL. Since we now have the certificate on the server we would like to change all accounts to use this. The problem is that we have a few hundred systems and this will take considerable time. Is anyone familiar of a script that will ...

iphone - sign url request with X.509 Certificate

Hi there, I am trying to port what I have done in .NET to the iphone. Basically I am trying to use an API to communicate with a server. The API requires mutual authentication through a X.509 certificate. I did manage to make this work with .NET (which was quite easy), however it's note clear with the iPhone. Did somebody do this be...

jQuery youtubin plugin only working with a selector

I'm using youtubin to embed youtube videos on a secure page. It works whenever I specify a jQuery selector: <script> $(function() { $('#foo a').youtubin(); }); </script> <div id="foo"> <a href="http://www.youtube.com/v/kUini08olkQ&amp;amp;hl=en_US&amp;amp;fs=1"&gt;YouTube Video</a> </div> It doesn't work when I just call youtubi...