Tagged Questions
22
votes
2answers
15k views
Java HTTPS client certificate authentication
I'm fairly new to HTTPS/SSL/TLS and I'm a bit confused over what exactly the clients are supposed to present when authenticating with certificates.
I'm writing a Java client that needs to do a simple ...
6
votes
1answer
690 views
How can I determine which SSL client certificate a connection is using in mod_perl?
I am writing a web service in Perl that will run under SSL (HTTPS) with client certificates.
How can I determine which certificate is being used by the client in the current connection so I can ...
5
votes
2answers
71 views
Does IIS do the SSL certificate check or do I have to verify it?
I have a IIS set up to only accept client connections with a SSL certificate. I have a WCF service running on IIS. I have a Certification Authority in the servers trusted CAs.
Now, when a client ...
5
votes
1answer
3k views
Make IIS require SSL client certificate during initial handshake
I am trying to configure an IIS website to require SSL client certificates. The website is set up in both IIS 6 and 7, though I am more interested in making it work for 7. I set the require client ...
3
votes
1answer
222 views
Programmatically or declaratively demand client certificate for a single asp.net page in IIS
The title pretty much says it, I've rolled out an IIS 7 website with an SSL certificate and now willing to set "SSL Settings/Client certificates/Accept" for a single page but programmatically or ...
3
votes
2answers
442 views
2-way SSL with CherryPy
From CherryPy 3.0 and onwards, one-way SSL can be turned on simply by pointing to the server certificate and private key, like this:
import cherrypy
class HelloWorld(object):
def index(self):
...
2
votes
4answers
7k views
How to generate an SSL client certificate from a disconnected network?
I have a unique situation where I need to implement client certificate authentication over HTTPS between IE browser and IIS 6. The browser and IIS are separated by a firewall that only allows the ...
1
vote
3answers
44 views
JAVA - SSL - Client Certifcates
I've been developing a WS client using JAVA and I'm having a problem with SSL authentication. The WS are created on WCF and I have no access to the server, they work through HTTPS and uses a client ...
1
vote
0answers
84 views
Requesting Client Certificate with Asp.net MVC
I'm trying to retrieve from the client browser a client certificate to authenticate the user. I know i can create a folder with the same name as the controller and, with IIS, set its SSL settings to ...
1
vote
0answers
85 views
How to access SSL client certificate from rack app
Actually -- question title tells almost everything. In earlier Rails (2.x) I've seen code that was accessing client certificate details via request.env hash. My rack app is receiving call with env ...
1
vote
1answer
191 views
.NET 4.0 client certificate validation error
I have the following code
var factory = new ChannelFactory<INewsClient>();
factory.Credentials.ClientCertificate.Certificate = GetCertificate();
factory.Endpoint.Address = new ...
1
vote
1answer
122 views
Setting up a proxy that performs client certificate authentication to a remote server
I am setting up an infrastructure where I have an nginx web server configured to require a client certificate for access to a resource.
However, the clients do not themselves have support for client ...
1
vote
1answer
164 views
Virtually chroot clients using mod_rewrite?
I am attempting to setup a webdav website for various clients to upload/download files. However I don't want each client to see the other clients' data. Each client uses SSL client certificates to ...
1
vote
0answers
563 views
IIS 6+ SSL Client Certificates Configuration
I started down this path getting smart card authentication working in asp.net mvc in this question: ASP.NET MVC 2 and request client certificate (Smart Card authentication), which is working ...
1
vote
2answers
659 views
Apache 2 authentication error
Attempting to implement client authentication with an SSL cert, according to this HOWTO,
I receive the following errors.
Apache:
Re-negotiation handshake failed: Not accepted by client!?
...
1
vote
1answer
559 views
Client certs without using the keystore
I'm trying to figure out if there is any way to have a .NET client use a client certificate without involving the Windows keystore in any way.
I have a code snippet like this:
test1.Service s = new ...
0
votes
0answers
36 views
Ruby 1.8.7 and Net::HTTP: Making an SSL GET request with client cert?
I'm trying to fetch a resource via SSL using Net::HTTP. Here is the relevant code fragment:
req = Net::HTTP::Get.new(ContentURI.path)
https = Net::HTTP.new(ContentURI.host, ContentURI.port)
...
0
votes
0answers
32 views
Restricting access to website based on client certificates, on IIS7
I'm trying to restrict access to a webservice publised on a website on my local IIS (7.5 on Windows 7).
My site is set to use a server certificate, SSL is enabled, and client certificates are ...
0
votes
0answers
90 views
Client certificate authentication negotiation problems between Apache and .Net
We have a web service built in PHP and running on Apache that requires client certificate based authentication. The client which is consuming this service is using some combination of .Net ...
0
votes
1answer
235 views
How can I get client certificate authentication working in JBoss 5.1.0.GA when I'm using APR, and not all web deployments use CLIENT-CERT auth?
Note: I will be answering my own question... just wanted to add this tidbit to the collective wisdom of The Internets.
I've successfully configured certificate authentication on my JBoss 5.1.0.GA ...
0
votes
1answer
67 views
Client Certificates with LibCUrl
I am using libCurl to download a file from a remote server. That remote server requires client certificates. Here are the options that i have tried:
curl_easy_setopt(pCurl, CURLOPT_URL, url);
...
0
votes
1answer
67 views
Retrieving client certificate from SSL session in mod_mono (in Apache 2.2.2 (Red Hat))
I am trying to set up a .NET web service in mod_mono that has historically has only run under IIS 6/7.
Most of it works well, except for one little detail: The web service is supposed to log the ...
0
votes
1answer
438 views
How to enable optional client certificate requests in GlassFish?
The Blog site (Client-Auth REQUESTED in GlassFish) reads:
In domain.xml, please add the following property to http-listener element
<property name="com.sun.grizzly.ssl.auth" value="want"/>
...
0
votes
1answer
418 views
Jboss application-policy ignored in mutual/client-cert auth with PBESecurityDomain
With the following, mutual client cert, SSL (TLS) handshake works for a rest endpoint (yay!) - validated via testing and debugging: javax.net logging & wireshark. But...
1st observation: ...
0
votes
3answers
2k views
Can't connect to SSL web service with WS-Security using PHP SOAP extension - certificate, complex WSDL
Using the PHP5 SOAP extension I have been unable to connect to a web service having an https endpoint, with client certificate and using WS-Security, although I can connect using soapUI with the exact ...
0
votes
2answers
439 views
How can I get the “purpose” (Client Authentication Certificate) of a certificate in .NET?
I want to find all client authentication certificates from the X509Store(StoreLocation.CurrentUser)
Is there anyway to do this? Even by getting all then filtering by a certain property to get all ...
0
votes
3answers
3k views
Mirth: calling an SSL SOAP web service with a client certificate
The scenario is around calling an external SSL SOAP web service from within Mirth. The web service is requires an SSL/TLS connection along with a client certificate.
The intention is to use the ...