Say I have the following domain:
example.com
I have a Wildcard SSL certificate for this domain. Subdomains like test.example.com validate properly. However, when I try to use a domain like demo.test.example.com, I get an error message in all major browsers:
demo.test.example.com uses an invalid security certificate.
The certificate i...
I know this question has been asked before, but I haven't found any answers that seem ideal.
I have a php app that needs a login system. I'm no crypto expert by any means, and I am wary of reinventing the wheel, which has doubtless been invented many times already, and very well.
I'm wondering if anyone is aware of a good authenticati...
Hi
I have WCF REST web service hosted by IIS, it works on HTTPS, I generate Certificate on IIS and assign Https to a port
I generate cer through IE browser. I create a test application and regardless Add a client certificate or not or even add a wrong certificate the connection take place and a I get correct response. I am wondering h...
Hi,
I'm trying to connect to one of my servers through ssl, with java. I tried a lot of options here is my best try:
I generate a jssecacerts with the recommendet script: http://blogs.sun.com/andreas/resource/InstallCert.java
with the command: java InstallCert ssl.someUrl.de changeit
after this I did the command a second time:
Loadin...
I have set up SSL in Tomcat 5.5 and have the following in my web.xml:
<security-constraint>
<web-resource-collection>
<web-resource-name>SSL URLs</web-resource-name>
<url-pattern>/j_spring_security_check</url-pattern>
<http-method>GET</http-method>
<http-method>POST</http-method>
...
Hi!
I just need some advice. I already know how to play with bash, ruby, python and perl and I'd like to know: with which of them would it be faster to make a little script that would connect to a website with SSL and login.
I just need to do this script and make a cron job with it. So it must be executable from the console.
Thanks.
...
Hi,
I installed hmailserver 5.3.2 and configured it. It receives and sends
emails normally, but I wanted to use it to send emails from a .net/C#
application located in another server, and for that I wanted to use
SSL communication. Before, the application was configured to send
emails via gmail, on port 587 and it worked ok, but now we ...
When making HTTPS request to remote web server, I use WebRequest, which establishes secure connection with remote web server. During development, I use self-signed cert on server, and WebRequest fails to establish secure connection, since cert is not valid, which is expected behavior.
I have found this code that "remotes" cert check, ac...
Hi,
I have posted the same question 2 month ago here and lot of nice people helped me. I was able to go through all the instructions mentioned in the link below to set up the ssl connections.Below are the links:
Configure connections to the data source to use SSL. (link1)
Configure your Java Runtime Environment to use SSL. (link2)
I...
Hi
There is something I don't understand, When I don't put certificate at all, the SSL connection is established successfully, I wonder how the server decrypt the message without client certificate.
What is client side certificate is for?
Thanks
...
I use httplib.HTTPSConnection with private key:
h = httplib.HTTPSConnection(url, key_file='../cert/priv.pem', cert_file='../cert/srv_test.crt')
Then I am asked to enter the password to that private key. Is there any option to enter such password not from user input (console) but from other source (code, environment)? Maybe something l...
I'm about to encrypt my website's login form and I was wondering if the user logging in needs to land on the login form at a HTTPS URL, or whether the form data can be posted to a HTTPS url from a HTTP url and still be encrypted?
...
Our application runs in two frameworks. One uses https one does not. I am trying to configure the tomcat connectors to work but when I get it working in one framework it does not work in the other.
I have been told we do not need to 'handle' SSL totally as this is handled by our load balancers. Not sure what these means.
For example:...
We're considering setting up a subdomain gateway.domain.com where that sub domain will process all of our payments to authorize.net from possibly multiple sections of our site, our internal and external systems alike. I know it would need SSL and I'm guessing I should accept $_POST from a restricted list of URLs and extreme data validat...
Hi, how can i add my self signed SSL certificate to thrusted in system? i mean programmaticaly,during the installation process of my program. How should i do that?
...
Hi
IIS6
-- I have a server on my network which have a network name called Test_Server. It is connected to ISA proxy.
-- I have a server a domain name called Live_Server having the IP Live_IP. It is not connected to any proxy. or suppose to be.
-- off course I open all firewall ports
--I have a WCF REST service, I use HTTPS to conn...
I'm wondering why ssl encrypted data can't be cracked easily once the packets are intercepted. As i understand it when you connect to a site like facebook the browser and site agree on a cipher, what stops the sniffer from seeing what cipher they agreed to?
...
I have a application that accepts SSL connections on a particular port. When I stop the application from the Websphere Administrative Console and then start it again, I get an exception that complains that the port is still in use. I need to shutdown and restart Websphere entirely to get the application working again.
What is the correc...
Hello.
I've developed IE plugin which adds an icon after each link on pages.
But, If I navigate on https sites then I get the message that IE has restricted.....
If I try to allow the access IE shows that message again.
How can I fix it or where am I wrong ?
...
I'm making a Django website and am fairly new. In this webapp I need to use this API which will spit out an xml file with the requested data from the database.
Basically the API URL is:
https://adminuser:[email protected]/database.getdata?arg=1&arg2=0
So in my python views.py I have:
def fetch_xml(url):
import urllib
...