Questions tagged [https]

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.

Hypertext Transfer Protocol Secure () is a widely used communications protocol for secure communication over a computer network, with especially wide deployment on the Internet.

Technically, it is not a protocol in itself; rather, it is the result of simply putting SSL/TLS between Hypertext Transfer Protocol () and , thus adding the security capabilities of / to standard communications.

  • HTTP: HTTP | TCP | lower-layer-protocols
  • HTTPS: HTTP | TLS/SSL | TCP | lower-layer-protocols

HTTP uses the client/server computing model (), where a client makes a request of a server for access to a file or to pass a message to a program that runs in the server computer. The server takes the requested action and returns a response.

See the tag for more information on Transport Layer Security () and its predecessor, Secure Sockets Layer ().

Resources

25003 questions
8
votes
1 answer

WebView with SSL Client Certificate on Android 4 ICS

I have a problem with the native WebView on Android. I need to authenticate with a site using a SSL Client Certificate. The Android WebView doesn't seem to support this. As a workaround I used a modified version of the…
chriz
  • 198
  • 1
  • 5
8
votes
1 answer

How to find which element breaks HTTPS on a webpage?

Is there a simple way, maybe through a firefox plugin or something, to be able to tell which element on a webpage is breaking the HTTPS connection? I've searched the source for any "http" and did not find any. I am thinking the root of the problem…
MultiDev
  • 10,389
  • 24
  • 81
  • 148
8
votes
1 answer

Find non-ssl items on an https page

Could anyone recommend a good way to discover any non-https items on an https page. Using Chrome, I'll typically look at Resources and go one-by-one, but this doesn't seem like the right away, and it's still hard to catch some things.
dzm
  • 22,844
  • 47
  • 146
  • 226
8
votes
1 answer

FB API making insecure xd_arbiter.php requests in a secure page

I'm having trouble with a secure Facebook app page which the browser reports as containing insecure content. The insecure content seems to be one request to: http://static.ak.facebook.com/connect/xd_arbiter.php All subsequent calls from the FB…
john
  • 903
  • 3
  • 9
  • 9
8
votes
3 answers

Auto redirect http site url to https in cpanel

Redirect the site url http to https..for this i upload .htaccess file in my cpanl public_html root directory.the code of the file as RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://sitename.in/$1 [R,L] After i hosted…
MAK
  • 773
  • 4
  • 9
  • 30
7
votes
0 answers

HttpsURLConnection POST request of a large file throws IOException after several minutes

I've been working on this bug for several days now and couldn't solve it. I wrote an HttpsURLConnection client to upload large files(>1GB) using POST requests. I also implemented the server side using com.sun.net.httpserver.HttpServer. As the files…
Oren Hacohen
  • 161
  • 8
7
votes
1 answer

http-conduit browser usage

I'm trying to scrape data from a site using HTTPS. I managed to make basic requests using Network.HTTP.Conduit successfully (posting credentials, etc.), but failed at extracting cookie information from the response headers (Set-Cookie). It looks…
akosch
  • 4,326
  • 7
  • 59
  • 80
7
votes
3 answers

Using mod_rewrite to Mimic SSL Virtual Hosts?

What is the best way to transparently rewrite a URL over an SSL connection with Apache 2.2? Apache 2 does not natively support multiple name-based virtual hosts for an SSL connection and I have heard that mod_rewrite can help with this. I would like…
kaybenleroll
  • 16,794
  • 16
  • 54
  • 66
7
votes
1 answer

Apache ProxyRemote with Proxy-Authorization (over connect/HTTPS)

It's easy to use the "RequestHeader append Proxy-Authorization" to create a forward proxy with no authentication that bounce over a password protected one. But this header is not append to CONNECT requests... I'm aware of the patch suggested at…
131
  • 3,071
  • 31
  • 32
7
votes
5 answers

egit with self signed certificate, https

I would like to use a git repo that is accessigble through https, Https server has self signed certificate. I always get an error while trying to clone the repo with eclipse+egit: https://host/path: cannot open git-upload-pack …
Hubidubi
  • 850
  • 4
  • 18
  • 34
7
votes
5 answers

SSL Error on Port 443, Page is not showing and resulting in error 404

I just recently had to find a way to get a SSL certificate for my domain as facebook required this by the 1st of October as you may aware. Therefore I signed and installed my startssl certificate on my server. Now my problem is, when I try to go to…
Evils
  • 857
  • 3
  • 12
  • 31
7
votes
2 answers

Mixed http/https site

So far, my https deployments have commonly involved a naive lockdown of the entire site with https and provide an http-to-https redirect on the web server. I now plan to have a single ASP.NET MVC site (on the cloud) that will contain both http and…
Pita.O
  • 1,864
  • 1
  • 19
  • 27
7
votes
2 answers

Trust my own self-signed certificate in local network using Android Native, Android Studio and retrofit

I am creating a simple android app that will be used in a closed local network. In this local network, a flask server is running which is configured to use a self-signed certificate via nginx proxying. The backend application of the server works…
Theo Stefou
  • 389
  • 2
  • 16
7
votes
1 answer

React Native Axios get response Skipped and Status Code 0

I got a problem with my react native app. while accessing API, I get a response Skipped and status code 0. it's shown by using reactotron to log the api response. but when I console.log the error, it just only say "Error: Network Error". It happens…
7
votes
2 answers

How to deal with and accept SelfSigned SSL certificate in IE?

I've a VM that has a self-sign certificate. If I test my https page in Firefox or Chrome, I just need to accept or add exception for the cert and I will be fine. I can make JSON call or JSONP call. However, when I do it in IE, I can't. I add the…
murvinlai
  • 48,919
  • 52
  • 129
  • 177