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
7
votes
3 answers

org.eclipse.jetty.http.BadMessageException: 400: Invalid SNI

I am trying to solve an issue with my Jetty servlet running over HTTPS. It is showing this error page in the browser: What I did: I created my Keystore and Truststore as is described here: How to generate keystore and truststore Both files were…
CooderSK
  • 147
  • 1
  • 2
  • 8
7
votes
1 answer

flutter URI.https: type 'int' is not a subtype of type 'Iterable' error

I am trying to call a method on web service as a get http method. I got error that I don't know why I got error. This is my method: Future httpGet2({ DirectsBody queryParams, HttpHeaderType headerType =…
Cyrus the Great
  • 5,145
  • 5
  • 68
  • 149
7
votes
2 answers

Downloading from HTTPS

I'll keep it simple: I'd like to download a file via HTTPS; methods I've tried haven't worked (Network.HTTP.Wget, Network.Curl, Network.Download). Suggestions? Thanks!
amindfv
  • 8,438
  • 5
  • 36
  • 58
7
votes
3 answers

Could not find a base address that matches scheme http for the endpoint with binding WSHttpBinding

I dida wcf username/password authentication on my local computer, with self signed certificate, all works fine, but when i put my application on IIS 7.5, and windows server 2008 R2, it gaves me the error: Could not find a base address that matches…
croisharp
  • 1,926
  • 5
  • 25
  • 40
7
votes
1 answer

How to prevent redirects from http to https on localhost in chrome and firefox?

Why can't I access any of my local development sites anymore? Firefox and Chrome both redirects to HTTPS (localhost/site becomes https://localhost/site and throws an error) ... I'm not going to set up SSL on my localhost development machine ... How…
user8082874
7
votes
1 answer

SEC_ERROR_INADEQUATE_KEY_USAGE in firefox for react app with HTTPS=true & HOST=xxx

I have a SEC_ERROR_INADEQUATE_KEY_USAGE error in firefox for a react application created with create-react-app when I specify a custom HOST and SSL=true To reproduce the issue: create a new react app npx create-react-app testssl add a .env file…
Cyril Durand
  • 15,834
  • 5
  • 54
  • 62
7
votes
1 answer

HTML5 Video on IPad Safari using HTTPS

I'm trying to play an .mp4 video on an iPad (Safari browser) using the HTML 5 video element. Everything works fine using HTTP. However, the video will not load (or play) when accessed using HTTPS. If I access the same web site from my Desktop Chrome…
Mike Ward
  • 759
  • 1
  • 10
  • 21
7
votes
1 answer

Eclipse Egit and GitHub authentication deprecation

I'm using Eclipse (Egit) and GitHub and I'm receiving this notice: Hi, You recently used a password to access the repository with git using JGit/5.10.0.202012080955-r. Basic authentication using a password to Git is deprecated and will soon no…
Tobia
  • 9,165
  • 28
  • 114
  • 219
7
votes
1 answer

React Native Axios allow self signed ssl certificate

I'm writing an app in React Native, and I need to make API requests. The server for that is running on a server with a self-signed SSL certificate, so I need Axios and React Native to make the request and accept the response using a self-signed…
b3nj4m1n
  • 502
  • 7
  • 24
7
votes
1 answer

Install Let's Encrypt for multiple domains on same server

I have a Digital Ocean Droplet and changed A-Records for 5 domains to point to the server. I would like to install SSL (lets encrypt) for all 5 domains. Is this possible? I run this setup to backend identify the domain name and using this change the…
LetMeAnswerThis
  • 129
  • 3
  • 11
7
votes
2 answers

Trying to capture node.js http traffic with a protocol analyser (Charles) but can't get node to use proxy

i'm trying to capture node.js http traffic with a protocol analyser (Charles) but can't get node to use the proxy. Is there some way to get nodes http and https modules to use a proxy? I'm using OSX by the way
Chris
  • 39,719
  • 45
  • 189
  • 235
7
votes
1 answer

Load HTTPS url in a UIWebView

I begin iPhone programming and I have big problem I cant resolve. So, I have a UIWebview, I can load HTTP url without problems : NSString urlAdress; urlAdress = @"http://servername"; NSURL *url = [NSURL URLWithString:urlAdress]; NSURLRequest…
Borneto
  • 71
  • 1
  • 1
  • 2
7
votes
2 answers

How to debug Kubernetes nginx Ingress redirection from HTTP to HTTPS

Fast question: how I can debug ingress and Nginx to know where exactly HTTP->HTTPS redirection happens? More details: What we have: we have war file + Tomcat, build it with Docker. Run it with Kubernetes in AWS. What we need: the application should…
Optio
  • 7,244
  • 2
  • 22
  • 30
7
votes
1 answer

How to use self signed certificates in Postman?

I am using Postman to test my API. I am using self-signed certificates to use HTTPS in my application. After I turn on the HTTPS setup, the postman app shows this error it shows Error: self signed certificate The API calls works perfectly when…
Prafull Dhadkar
  • 891
  • 2
  • 10
  • 23
7
votes
1 answer

Is it possible to have a different HTTPS domain in an iFrame, on another HTTPS domain?

Do browsers throw security errors when "https://sub.example.com" is embedded in an iFrame inside "https://www.example.com"? If not, are there any restrictions? Do they need to be using the same SSL certificate (wildcard)?
Murat Ayfer
  • 3,894
  • 6
  • 29
  • 26
1 2 3
99
100