All Questions
476 questions
1
vote
1
answer
145
views
SSL Handshake Error (BAD RECORD MAC) when Sending Mobile Number in Client Hello via HAProxy
Description:
I am working on a mobile application where the client (mobile) sends a request to generate a token through the cellular network to a 5G Core network. The 5G Core adds the mobile number (...
1
vote
0
answers
97
views
Checksum does not match on client side when downloading large files over HTTPS
I already have a Server/Client application, clients connect to the server via a token, server verifies the token and only then server proceeds to send files to the client(s).
However, when I try to ...
0
votes
0
answers
104
views
Error 'Could not load certificate' when load a self-signed certificate into a Indy web server
I want to get a token from a desktop app that calls an OAuth2 authentication server that requires an HTTPS connection for the callback.
For this, I created a local Indy web server and use a self-...
1
vote
0
answers
37
views
OpenSSL BIO_Read Returns negative value
continue my journey from here: Cannot add TLS to my HTTP Server, clients cannot connect to it
where I am trying to implement HTTPS server
HTTPServer
using System;
using System.Collections.Generic;
...
1
vote
0
answers
55
views
Cannot add TLS to my HTTP Server, clients cannot connect to it
I am trying to extend my HTTP Server with TLS Support
My HTTP Server is here
using System;
using System.IO;
using System.Net;
using System.Net.Sockets;
using System.Text;
using System.Threading.Tasks;...
0
votes
1
answer
431
views
esp-tls-mbedtls: No server verification option set in esp_tls_cfg_t structure. Check esp_tls API reference
I am working on ESP32S3 microcontroller with ESP32-IDF V5.1.2 where I am getting following error log
E (55888) esp-tls-mbedtls: No server verification option set in esp_tls_cfg_t structure. Check ...
1
vote
0
answers
80
views
SignalR connection throws ERR_CERT_COMMON_NAME_INVALID on connection (self-signed cert)
I am developing an application and I am using self-signed certificate.
Everything works fine until I try to connect to signalR hub.
constructor(private http: HttpClient) {
this.signalingHub = new ...
0
votes
0
answers
59
views
Puma not accepting SSL connections
Due my client requirements I need to run my rails application on Windows Server using HTTPS protocol. I have created my certs, and attach them to my port with
netsh http add sslcert ipport=0.0.0.0:...
0
votes
0
answers
760
views
Node.js Error: EPROTO - SSL Unsafe Legacy Renegotiation Disabled
I am encountering this error in my Node.js project and do not know how to fix it.
I have updated Node and OpenSSL to the latest versions.
This is my error:
Error: write EPROTO 4C190000:error:0A000152:...
1
vote
0
answers
149
views
raspberry pi running apache2 - attempting to get SSL / HTTPS running
I'm in a pickle trying to get HTTPS working on raspberry PI with apache2.
I am getting unresponsive queries to HTTPS and in my apache2 error log, I am receiving "AH01882: Init: this version of ...
0
votes
0
answers
33
views
Is it possible to verify data received from the server using the SSL certificate of the server? [duplicate]
I want to verify the authenticity of the data I receive from the server in my nodejs script using the server's SSL certificate.
Main Objective: Ensuring that the node has not returned the tampered ...
0
votes
0
answers
84
views
Certificates configuration for HTTPS: Angular+SpringBoot apps
I'm hosting my project on AWS ec2 instance.
Frontend - Angular application, launched with nginx, backend - Spring boot application.
My goal is to configure proper https usage, however I'm facing some ...
2
votes
1
answer
216
views
how to validate ssl certificate with boost and openssl
I need to push data to a server and the data needs to be transferred securely.
Iam using lib boost.
// The SSL context is required, and holds certificates
ssl::context ctx(ssl::context::tlsv13_client);...
0
votes
0
answers
106
views
Creating certificate for IIS to be used for HTTPS on the local network
I'm attempting to create a certificate to be able to serve web pages over https (IIS) on the local network.
I'm trying to create a CA root certificate, an intermediate CA certificate and the a ...
0
votes
0
answers
292
views
Nodejs obtain client's signature-algorithm offering (in relation to ERR_SSL_NO_SUITABLE_SIGNATURE_ALGORITHM error)
I'm running a website over https (certificate provided by letsencrypt) with nodejs; lately browsers are giving a ERR_SSL_VERSION_OR_CIPHER_MISMATCH error for my site (even though nothing I'm aware of ...