Hypertext Transfer Protocol Secure (HTTPS) is a combination of the Hypertext Transfer Protocol with the SSL/TLS protocol to provide encrypted communication and secure identification of a network web server.
1
vote
0answers
13 views
Apache HttpClient and https
I downloaded HttpClient 4.2.5 (GA) and tried to get a response for a GET method over https. However, I got a javax.net.ssl.SSLPeerUnverifiedException: peer not authenticated. After a little bit of ...
0
votes
0answers
7 views
reaching sonar in a https host from maven
I am trying to use sonar in a https-only tomcat.
In theory I just have to add the server certificate to a keystore and tell about it to sonar, according to this ticket: ...
0
votes
1answer
11 views
ELB and Apache configuration for HTTPS website
I'm setting up ELB for a https website and I have questions concerning the ports configuration...
Right now I have this port configuration on the ELB:
80 (HTTP) forwarding to 80 (HTTP)
443 (HTTPS) ...
0
votes
1answer
12 views
Error when posting to HTTPS endpoint using Apache Proxy
I’m running into some issues trying to post to a HTTPS endpoint while using Apache’s proxy module. Posts to a HTTP endpoint work fine. I’m pretty new to Apache configuration, so I’m hoping one of ...
1
vote
2answers
21 views
htaccess to rewrite all HTTPS requests to HTTP version
I'm trying to disable HTTPS on domain names that do not have SSL certificates, I am using this code but it doesn't seem to be doing anything. My website is running Wordpress and the wordpress htaccess ...
1
vote
0answers
8 views
Using SUDS with HTTPS and setting location
I am using SUDS to call SOAP using this code:
client = Client("https://xyz.rwth.de/SecuredDataService/SecuredData?wsdl",location="https://xyz.rwth.de/SecuredDataService/SecuredData")
For a HTTP ...
0
votes
0answers
12 views
javax.net.ssl.SSLHandshakeException: java.security.cert.CertificateException: No subject alternative names present
Basically, I have a Test server (Linux based) with a public IP bot no public hostname. So I am trying to create ssl certificates for it using IP address. So that my Java application can access another ...
0
votes
2answers
18 views
Linking to jquery via https
I'm developing a login page, and being new, started off building just using http. Everything is working the way I expect to this point. Now I'm trying to limit access strictly via https. In my html ...
0
votes
0answers
6 views
youtube api with https gets some http data
I'm trying to change my youtube channel from http to https and basically it's working well, but I continue to receive several warnings when I'm playing a video.
When I searched during my debug I ...
0
votes
0answers
14 views
HTTPS File streaming works with curl but failswith java http url connection with response code 413
We have a usecase where we need to stream a file over https to a vendor and it is part of a larger multi step processes. Everything works fine if the file size is lessthan 128kb, but the file ...
0
votes
1answer
31 views
iis 7 https connection to page blocks any javascript and JQUERY
I have an asp.net C# application hosted by IIS 7. I have installed a valid SSL Certificate and used Security Switch in order to transfer each page from HTTP protocol to HTTPS.
On one of my pages, I ...
2
votes
1answer
22 views
SSL renegotiation workflow for HTTP
I have a HTTP server with runs with HTTP and HTTPS, written using Javas NIO and SSL libraries. In HTTPS mode it can communicate with or without the client certificate. However, I would like to perform ...
2
votes
2answers
26 views
Hiding “index.php” at url in “YII” when using “https” does not work
here i am stuck with a small problem. I have a site built in Yii framework. It runs without any problem with http protocol (the index.php in url is hidden and all urls work fine). I have hosted this ...
0
votes
2answers
34 views
Codeigniter 2.x cron issues
I need to setup cron jobs on a codeigniter site on a shared host that uses cpanel. The cron script works when run via a browser, however, I first tried running it in cron using curl and then wget, but ...
1
vote
2answers
32 views
Why the account password is passed without encryption
By a sniffer (Fiddler), I can check out the stream sent through my PC to network. Surprisingly, I found when I log in google's account (https), the password is sent in a clear text, e.g.
POST ...
-2
votes
0answers
11 views
MAMP Pro Symlinked httpsdocs httpdocs [closed]
I'm doing some work for a local company that uses Oscommerce for their online store, which currently isn't working and I think needs to be installed. The company uses and SSL certificate and has both ...
0
votes
0answers
7 views
nginx maps and rewrites
we have only one billing url of the website that uses https the rest of the site uses http.
So i need to make sure any other url other than billin used https should be redirected to http. My site ...
0
votes
1answer
16 views
Proxy able to see request data in plain text on SSL connection
For testing web application vulnerability we are burp suite. Burp suite has an option of intercepting requests by creating a proxy server which a browser connects to. Our application is running on ...
0
votes
0answers
19 views
Setting disableCNCheck using Grails Cxf Client Plugin
I'm trying to set disableCNCheck to true for my web service. I'm using Grails 2.2.0 with the Cxf Client plugin.
I found this question:
wsdl2java CXF command line error about disableCNCheck option
...
0
votes
0answers
9 views
ksoap2 HttpsTransportSE: not working with certificate
Has anybody ever solved this issue by NOT making a face TrustManager????
Seriously, all answers are "oh use a fake TrustManager and trust all certificates".
I have a root CA certificate that I must ...
0
votes
0answers
5 views
installig ushahidi iis plesk windows
Hello I'm trying to install ushahidi web application in a windows environment using plesk. I have copied the files and run the installer and everything seems to work just perfect. The problem is when ...
0
votes
0answers
11 views
How to redirect with .htaccess file? (https://www.domain.com)
Well I want to achieve this:
https://www.example.com
using a .htaccess file. Any code suggestions?
0
votes
1answer
32 views
Configuring SSL endpoints for node.js worker roles on Azure
I've set up a node.js app to run on worker roles (not web roles) on Azure cloud services. Everything was working fine with the standard app running on HTTP.
Now I'm trying to get it running over SSL ...
0
votes
0answers
21 views
Unexpected Cache Request Header and 304 status
I have a WPF window with a WebBrowser control. I want to navigate to a page that requires Authentication, but I want to automatically login the user.
byte[] authData = ...
1
vote
1answer
13 views
WCF Services need to be HTTPS only but only work on HTTP
I have some WCF services that have been working for a while now on HTTP.
I'm moving them to deployment server now and they need to be HTTPS only.
I got the certificate and when I initially set the ...
0
votes
1answer
27 views
How do I programmatically specify HTTPS for BasicHttpBinding?
I'm trying to consume a web service in .NET 4 (Visual Studio 2010) that requires HTTPS and is authenticated with a client certificate. Currently, I'm writing a console program, just to prove the ...
0
votes
0answers
6 views
Portal reverse proxy change ports APACHE PROXY LINUX
We have a portal. the portal is used to reach some resources available internal, like http://www.resource.com/agent.
Via the portal(on internet) www.portal.com, we can reach the internal resource ...
4
votes
3answers
42 views
How do I unit-test HTTPS requests in Flask?
For certain pages in a Flask app I'm creating, I have an HTTPS redirection system as follows.
def requires_https(f, code=302):
"""defaults to temp. redirect (301 is permanent)"""
@wraps(f)
...
0
votes
1answer
7 views
Image hosted as HTTPS in Tomcat does not display in Outlook
I have a question regarding image hosting.
I have a tomcat server which hosts a website over https. It contains a number of images whose links are used in some emails. I expect the images to be ...
0
votes
0answers
9 views
ResponseCache put never called
I am trying to cache images in an android app with this solution Android image caching. I have already implemented a specific ResponseCache and overriden the get and put methods.
Despite that, images ...
0
votes
3answers
47 views
How to build a PHP/Node proxy to render external http images on https website?
I have a website running on https.
I have to load images from external server (external domain) which doesn't have https, but single http protocol.
Is there's any way to handle proxy for http images ...
0
votes
1answer
13 views
How to convert protocol from http to https for web logic server
I am using weblogic server and deployed an application ear. My url is present
http://sbchydc:7006/console, Is there any way to change it to
https://sbchydc:7006/console or
...
0
votes
0answers
10 views
Django forwarding PKI data to another service
I'm working in an environment that uses PKI authentication based on X509 certificates to allow access to services. I am writing an application that will sit in a Django server. This application needs ...
0
votes
2answers
31 views
Display message on https redirection
I have some websites that redirect the user login to https, some user get scared when they see the warning as it says the site is not trustable or someone is trying to intercept their communication, ...
-4
votes
1answer
33 views
Need some code for opening HTTPS website via proxy using OpenSSL [closed]
Please help me to find a working c/c++ example. I want to download https://google.com via proxy 202.118.236.130:3128 using OpenSSL.
0
votes
0answers
16 views
get https images from instagram api
I am making a facebook app, which lets you choose a photo from instagram. my problem is the app is working fine in all browsers except IE, because it is loading insecure content (instagram images). ...
0
votes
0answers
17 views
ssl external content php codeigniter
I'm developing a site that is all behind SSL. Members can post profiles containing text, youtube vids, soundcloud sounds and external images. I have a filter in place to remove all iframes, js etc and ...
1
vote
0answers
31 views
AWS Cloudfront serving assets over HTTPS
I use Amazon Cloudfront as a CDN; portions of my site are protected by HTTPS. Supposedly we should be able to use out Cloudfront sub-domain (https://HASH.cloudfront.net) to serve SSL content and the ...
0
votes
0answers
19 views
Recaptcha for .NET MVC having more trouble with SSL
I'm attempting to get Recaptcha for .NET working with ASP.NET MVC 4.0 on an https site that is using SSL. I've been reading up on it and the problem seems prolific, but I'm having a hard time finding ...
0
votes
0answers
13 views
Using htaccess to force https not working for full urls with htpasswd
I am currently using htaccess to force all http requests on my apache2 server go to https. https is setup and working properly. The htaccess rewrite is working if i use just the base domain name (ex: ...
0
votes
1answer
14 views
From Classic ASP consume a ssl .net web service
I've researched the web extensively before posting this questions here, couldn't find anything usefull for me, so here it goes. Sorry in advance for the wall of text.
I have a classic ASP website ...
0
votes
1answer
10 views
How to prevent establishment of SSL connection on each request
I use jersey 1.7. My client communicates with server over HTTPS. I figured out that HTTPS connection is established for each different request (URL). I would like to keep the same connection for ...
0
votes
1answer
14 views
Symfony 1.4 https
I need to assign https to my symfony 1.4 project. The only thing I have to change is htaccess or I'll have to write something in filters etc?
I'm asking because I tried to do this with htaccess but ...
0
votes
0answers
12 views
Azure Emulator Error, After Adding HTTPS Endpoint
I am using Visual Studio 2012 and running on the local Azure Emulator. After creating an EndPoint for HTTPS, I receive the the following message when I start the application.
'Role Instances Are ...
0
votes
0answers
18 views
Nginx installed on CentOS 6.4 https reverse proxy configuration
First let me say that I only started trying to do this about a week ago, so I am a Newbie, please be gentle. I think I maybe suffering from information overflow, I have the following setup:
1 public ...
0
votes
1answer
25 views
How can I call a https endpoint by NSURLConnection sendSynchronousRequest in case of untrusted certificate?
I have an IOS6 app, that connects to a REST API to fetch some data.
I use NSURLConnection sendSynchronousRequest in my data fetcher class, and I call its methods by GCD async pattern with blocks from ...
0
votes
0answers
20 views
Neo4j REST throws exception when using HTTPS
I've created simple project that creates a tree of users in neo4j. Everything works well when I am using standard HTTP protocol. Once I switch to HTTPS application is unable to retrieve any object ...
0
votes
1answer
16 views
No subject alternative DNS name matching
I am trying to perform POST request in Java. I have succeded with HTTP, but HTTPS is tricky for me.
I am using this code:
// Create a trust manager that does not validate certificate chains
...
-1
votes
0answers
22 views
HTTP and HTTPS on same page [duplicate]
we do provide embedding our content into third party sites. The problem here is though we don't require HTTPS for the embedding page (embed.aspx), we have made the entire website as HTTPS. So all the ...
1
vote
4answers
38 views
How do I specify the protocol in an anchor and still use relative path?
It is always preferred on a personal website to use relative paths in anchors so that you can easily move your directory structure to a new website, but I want to make part of my website password ...


