Skip to main content
Filter by
Sorted by
Tagged with
7 votes
4 answers
21k views

I'm using SSL enabled Redis (ElasticCache from AWS), and having difficulty in connecting to it using Spring Data Redis. (Note that the connectivity works fine, if I use plain Jedis or Jedis Pool with ...
221 votes
14 answers
438k views

import requests data = {'foo':'bar'} url = 'https://foo.com/bar' r = requests.post(url, data=data) If the URL uses a self signed certificate, this fails with requests.exceptions.SSLError: [Errno 1] ...
0 votes
1 answer
41 views

m getting an SSL error when making an HTTPS request in a Rails controller (Ruby 3.1.6): OpenSSL::SSL::SSLError in PurchaseAttemptsController#create SSL_connect returned=1 errno=0 peeraddr=3.175.45.47:...
5 votes
1 answer
4k views

I'm trying to get FTP-SSL to work with Qt 4.6.3. I've already compiled Qt with OpenSSL support. Are there any good resources about FTPS with Qt? It seems that QFtp does not provide SSL support. I ...
3 votes
1 answer
11k views

I'm using JWT. This is how I create the token. func createToken(user User) (string, error) { token := jwt.New(jwt.GetSigningMethod("RS256")) token.Claims["Name"] = user.Name token.Claims[...
Best practices
0 votes
3 replies
52 views

In a rather big application there is the need to connect to various https://... hosts (web services, rest services, html scraping etc). Quite a few of the hosts suffers from various ssl problems (self ...
0 votes
0 answers
39 views

Here is the Dockerfile # ===== Stage 1: BUILD OTP 27.2 ===== FROM debian:bookworm AS build RUN apt-get update && apt-get install -y \ build-essential \ autoconf \ automake \ ...
-3 votes
0 answers
22 views

I've been having a hard time in trying to fix this problem. Currently since we've already deployed a website in Azure, I don't know if any local changes I've made concerns with the deployed website. ...
373 votes
28 answers
676k views

I am trying to send an API request using Stripe but get the error message: cURL error 60: SSL certificate problem: unable to get local issuer certificate This is the code I am running: public ...
0 votes
1 answer
10k views

I am doing data load via ODBC, by extracting data from on prem database into files and then importing those into Snowflake target table. During that process, I am getting the error mentioned below. ...
-2 votes
0 answers
38 views

I've deployed Crowdsec as a Daemonset on our GKE Clusters. As we maintain an ecommerce website, we are prone to bot crawling or bruteforce. That's why I'm having Crowdsec parse several logs from my ...
0 votes
2 answers
11k views

I have an asp.net web application which is indexed by the search engines on the sub-domain "www". I don't really want to change that: requests to the root domain are all set up with a permanent ...
1 vote
2 answers
3k views

I want to use Coolify with CloudFlare Tunnels, so all my apps will be public using https domains, e.g. https://test.mydomain.com I followed the steps mentioned in docs in order to have a tunnel & ...
1 vote
0 answers
41 views

I saw that granian recently updated their version: 2.5.7 - https://pypi.org/project/granian/ Since i need to configure the allowed TLS version and the minimum one, I thought I'm lucky because in the ...
5 votes
2 answers
7k views

How do browsers like Chrome check SSL Certificate? IS there any online databases or websites that they use? What steps are taken by browsers to validate a SSL certificate? Am I able to do it manually ...
0 votes
0 answers
30 views

I am running microk8s on my Ubuntu laptop as development environment. Every time I move to another network (e.g from home to office or vice versa), I am no longer able to run kubernetes commands as ...
2 votes
2 answers
35k views

I used windows and linux machine to create java keystore (JKS) by java keytool. When i run the keytool command mention below: keytool -genkey -alias TESTSSL -dname "cn=Test.com, ou=testlab, o=myorg, ...
3 votes
3 answers
13k views

I have moved my website from a very old server to a new server that supports SSL, and upgraded from Apache Tomcat 6 to Apache Tomcat 9.0.54 . Now when code running on my server tries to send a request ...
113 votes
9 answers
225k views

C:\Users\casta>curl https://c5.ppy.sh curl: (35) schannel: next InitializeSecurityContext failed: Unknown error (0x80092012) - The revocation function was unable to check revocation for the ...
7 votes
1 answer
37k views

I have a Java Implementation which used by various client applications to connects to to the third party systems. These third party systems supports different protocols over http/https. In this case, ...
1 vote
1 answer
12k views

From SSL2BUY I have the text for a certificate starting with "-----BEGIN CERTIFICATE-----" down to "-----END CERTIFICATE-----". There is no download option just an email option (but that person isn't ...
5 votes
2 answers
10k views

I'm trying to configure Kafka 2.8.0 on my development Ubuntu laptop to accept connections over SSL. I found this blog post about using PEM files in Kafka. I created certificates following this guide. ...
6 votes
1 answer
14k views

I'm trying to establish a TCP connection to a remote server using SslStream and TLS 1.2 protocol. The code is as follows: _tcpClient.Connect(endPoint); var certificate = new X509Certificate2(...
292 votes
25 answers
786k views

I am trying to connect to an IIS6 box running a godaddy 256bit SSL cert, and I am getting the error : java.security.cert.CertPathValidatorException: Trust anchor for certification path not found. ...
1 vote
1 answer
11k views

I have a project on NodeJs(backend) and Angular9(frontend). I was doing a SignUp. I have this api from the backend(NodeJs) side http://localhost:3001/account/login and upon ...

1
2 3 4 5
1023