ssl

Certificate on WCF service that does not use IIS

I have a WCF app that normally runs in IIS (for my Testing and Production Environments). But when I run it from my debugger it is setup to run self hosted (ie a console window pops up and IIS is NOT used). I also have a client application that I connect to the WCF app. Normally when I am testing my Client app (that runs on Windows Mob...

Find out what resources are not going over HTTPS

I have an ASP.NET site which should transport completely over HTTPS. However, in Google Chrome I get a warning that the page includes resources which are not secure. How can I find out which those resources are and why they wouldn't be going over HTTPS? ...

SSL handshake encoding and identifying

Hi, i am trying to block ssl handshakes before the secure connection is established. So can anyone advice me how to do this. I allready have access to all data transfered to network using Winsock SPI(LSP). But how can i identify that now there is a request for SSL connecion? the data needed for establisment cant be crypted but are encode...

PHP script not decoding URL parameters in $_REQUEST[] (%20 values present) after deploying to 5.2.4

I have developed a PHP script that uses $_REQUEST[] superglobal. A typical client request might consist of: http://host.name/socnet/add.php?shortid=1&author=NewUser2&comment=Dad%20dad%20dad This URL is rewritten by Apache in my production environment to an equivalent https:// URL according to the following rewrite rule: Rew...

Python SSL communication hangs on read, then issues an error 54 - connection reset by peer

I'm making a web services call to a Microsoft CRM web service using Python/suds/python-ntlm, and my call to the service is blocking on an SSL read. The CRM service provider provides both a testing and a production service, and I can contact the testing service just fine (although it doesn't have useful data on it) but the main service ju...

ORACLE Send Email using SSL

is it possible to send e-mail over ssl in plsql? thanks for helping. ...

How to get a whole Wordress site to work over SSL?

We have a Wordpress website that has an SSL certificate for all non-www pages. So, we've tried setting the Wordpress address URL to https://mydomain.com in the General Settings screen. The redirect works if you try entering www.mydomain.com, but only after you accept the certificate on the untrusted connection. So it needs to run the red...

Calling getUserPrincipal() in a Web Service returns ANONYMOUS

Hello everyone I'm trying to use plain SSL between my web service and a client application. They are both running in GlassFish 2.1.1 and are each in seperate domains. The client application is itself web application and I have add the JVM option -Dcom.sun.enterprise.security.httpsOutboundKeyAlias=s1as in order to get it to send it's cert...

SSL in a wordpress website.

Suppose I'm creating a Wordpress website with user login and a small e-commerce. When user logins in, she uses http://www.mysite.com/login/. When se buys something, she uses http://www.mysite.com/mycart/ where credit card info is entered. How do I use SSL in this setup? I mean, I should redirect http://www.mysite.com/login/ to https://...

TrustAllCertificatesCallback is ignored

Given a url or server name, how can i use powershell or a .net library to download the (expired) certificate the web server is using and then save it to file or import it into my certificate store? Thanks! I have made progress, i got this far on this problem: static class Program { static void Main() { ...

SSLHandshake errSSLClosedAbort issue

Hi, I am getting a Client Hello message from the Client during handshake and after that Server is not able to respond back with Server Hello message. The server will send this message (ServerHello) in response to a ClientHello message when it was able to find an acceptable set of algorithms.If it cannot find such a match, it will respon...

SSL Certificates and Recognition?

SSL Cert providers such as GoDaddy and RapidSSL claim 99% recognition -- what happens in the 1% non-recognition, and what is recognition, exactly? Should I just self-sign my certificate, instead of buying one? Is there such a thing as 100% recognition? ...

how to encrypt data using BIO_SSL?

I am using BIO_SSL which is in bio.h to create SSL. but how to encrypt data using BIO_SSL? ...

If you have SSL turned on, does it really make sense to encrypt your user credentials?

I am trying to optimize some performance here and I would like to take the encryption out. ...

CXF SSL secured Web Service client with multiple certificates

Hi all, I have a Java CXF client that connects to a SSL secured Web Service with mutual authentication. I have my keystore and my truststore properly configured on the client-side and it works fine. I am concerned here by the fact that my keystore contains only one client certificate and on the CXF configuration it is not possible to...

FTPWebRequest behind NAT (PASV,SSL)

Has anyone successfully used the .Net FTPWebRequest class to ftps to a remote server from behind a NAT? My code is as follows: Dim URI = "ftp://" & sRemoteDir & "/" Dim ftp As FtpWebRequest = Nothing Try ServicePointManager.ServerCertificateValidationCallback = AddressOf ValidateServerCertificate ftp = CType(FtpWebRequest....

Getting SSL context for HttpsURLConnection from X509Certificate

hi, I am pretty new to certificates, but I have to do something like this (in Java): 1) I have requestor's certificate in my hand: X509Certificate[] certs = (X509Certificate[]) request.getAttribute("javax.servlet.request.X509Certificate"); 2) I need to request another url with that certificate (is it even possible?), something like:...

Transfering data using Sockets on the iPhone using SSL/TLS

Hi, I've been asked to prototype an application which share information with a server via sockets using SSL/TLS. I've been asked to make the application in both C#(MonoTouch) and ObjectiveC(Cocoa). I've been successful with the MonoTouch route, and developed a fully working client server pair, which can communicate and share data secur...

How to use PHP5 SoapClient::SoapClient() with client certificate ?

Hi, I need to use PHP's SoapClient with myfile-ca.crt. How can I tell SoapClient constructor to work with client certificate (crt file) ? I am experienced with php SoapClient, but I never needed to work with secure soap client. Thanks for any help ...

How to configure WCF with transport security behind a load balancer

I have a WCF service that will be configured to use transport security with a certificate. The service will sit behind a load balancer (F5). The service certificate will be installed on the load balancer which will terminate the SSL session. I understand how to configure this---my question is whether or not I will be able to authenticat...