Questions about self-signed SSL certificates, e.g. they will not validate in browsers and other systems with default SSL checking and key stores.
Questions tagged [self-signed-certificate]
265 questions
0
votes
1 answer
Error: self signed certificate in certificate chain in node js application
I work for a company that has strict IT policy. I work behind a proxy and i mostly use Proxifier or sometimes set proxy in Windows setting.
I am developing API with Node.js and at first just to test I created a simple route that makes a call to…
user10698867
0
votes
0 answers
Self signed SSL certificate: Subject Alternative Name (SAN) gets lost when signing
I have two servers in my local network that should communicate with each other via https. I am very new to the topic of SSL certificates but I have found this little gist to be quite helpful:…

Jere
- 1,196
- 1
- 9
- 31
0
votes
0 answers
how to remove or revoke openssl self signed certificates
Recently i have created self signed ssl certificates with the following commands
STEP 1: Create the server private key
openssl genrsa -out main.key 2048
STEP 2: Create the certificate signing request (CSR)
openssl req -new -key main.key -out…

Venigalla Shanmukha
- 1
- 1
- 2
0
votes
3 answers
connect to a server with a self-signed certificate
Ive been doing some research about how to consume a web api executed on my localhost throught a xamarin app. The web api works perfect, I can adding and getting the data to/from my sql server using a web browser but if I try to connect xamarin to it…

Raluido
- 11
- 2
0
votes
1 answer
I'm trying to create a self signed certificate on win server 2012r2 machine using Powershell. The intent is to redirect traffic from HTTP to HTTPS
I'm trying to create a self signed certificate on win server 2012r2 machine using Powershell. The intent is to redirect traffic from HTTP to HTTPS.
a. do we always need a self signed Root certificate before we create a client certificate? If yes,…
0
votes
1 answer
Windows PHP with cURL error 77: error setting certificate verify locations
I'm using PHP 7.4 on a Windows server via commandline (think executing IDE PHPUnit tests - no HTTP server involved), and I am trying to access a remote server via CURL extension (wrapped inside Guzzle) via HTTPS.
CURL/Guzzle responds with errors…

Sven
- 69,403
- 10
- 107
- 109
0
votes
1 answer
Unable to perform mirror image using Openshift CLI - OC
I'm trying to install Openshift Container Platform (OCP) in restricted network. However, I've been struggling at the prerequisite step where I have to create a mirror registry to store the data following this instruction.
I created docker registry…

anh_nguyenduc
- 3
- 2
0
votes
1 answer
WCF Client throws error of System.ServiceModel.Security.MessageSecurityException while using Self sign in Certificate Validation
I'm validating the WCF service with self-signed certificates at the server end. When I consume it at client it throws me an error of
System.ServiceModel.Security.MessageSecurityException: 'An unsecured or incorrectly secured fault was received from…

Rajan
- 3
- 2
0
votes
0 answers
Is it possible to Secure a Net Core Worker Service aka Windows Service with a "real" Certificate?
We have some Hosted Windows Services using net core (3.1 and later) and a self signed Certificates that we ship to customers.
These Services run on local servers and are listening on localhost:someports and have mostly rest Apis so the certificates…

Mr.Pearce
- 45
- 1
- 8
0
votes
0 answers
How to use a self-signed certificate in android studio
I followed this tutorial for creating a self-signed certificate https://www.digitalocean.com/community/tutorials/how-to-create-a-self-signed-ssl-certificate-for-apache-in-ubuntu-18-04.
Now I have 2 new files a .crt and a .key.
How can I use these…

Raffaele Bertani
- 29
- 7
0
votes
1 answer
Sending a self-signed certificate from proxy secure websocket to a secure websocket connection(wss)
I am trying to connect to wss(proxy) with self-signed certificate using wscat and browser but it giving me errors.
https running on 8443 with certificate cert.pem
proxy running on 8080 with secure true
Things I have tried to make sure my secure…

azlan_909
- 1
- 2
- 3
0
votes
0 answers
Self-Signed certificate: openssl 21 (unable to verify the first certificate)
I have created a self-signed certificate in azure.
The certificate is installed on an ubuntu machine.
Process:
sudo -s
cp /usr/share/ca-certificates
dpkg-reconfigure ca-certificates
dpkg-reconfigure shows gui.
I select yes to trust the…

user3508953
- 427
- 6
- 15
0
votes
2 answers
How to solve localhost sent an invalid response:ERR_SSL_PROTOCOL_ERROR
I'm trying to get apache2 to work with a certificate (selc created) on Ubuntu 20.
When I try to open, with Chrome, the endpoint (https://local.pretzel.com/editor) I get:
This site can’t provide a secure connection
local.pretzel.com sent an invalid…

Captain_Meow_Meow
- 2,341
- 5
- 31
- 44
0
votes
1 answer
RSA 2048 self signed certificate not being accepeted by NLB TCP listener
i am trying to create a self signed certificate using openssl following the docs https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/configuring-https-ssl.html
i tried to add the generated private and public pem files to my NLB TCP listener as a…

The-Higgs-Boson
- 91
- 2
- 8
0
votes
2 answers
How should I consume rest web service with ssl
I am supposed to write client which must fetch data from web service. I am follow this guide: https://spring.io/guides/gs/consuming-rest/ The website has https.
My code:
@SpringBootApplication
public class TransportApplication {
private…

Slava Ugnachyov
- 27
- 2
- 5