Questions tagged [openssl]

OpenSSL: The Open Source Toolkit for SSL and TLS

OpenSSL is an open source project which develops software for Secure Sockets Layer (SSL v2/v3), Transport Layer Security (TLS v1), as well being a full-strength general purpose cryptography library.

OpenSSL provides both a library (for use within your own program), and a series of command line tools for common tasks.

1601 questions
0
votes
1 answer

How to install cURL with openssl on ubuntu server?

I am having a problem with cURL here. My localhost has curl with openssl enabled, and thus my php code works fine. On running phpinfo() I get the following -- curl cURL support enabled cURL Information libcurl/7.19.5 OpenSSL/0.9.8g…
0
votes
2 answers

Which Apache/OpenSSL version required for EV SAN SSL certificate?

Which version of Apache and OpenSSL (mod_ssl?) is required to use a EV SAN SSL certificate? As far as I have been able to find out Apache version 2.2.15+ should be fine, but what about OpenSSL? Can I assume that the 0.9.8m that comes bundled with…
Michael
  • 109
  • 5
0
votes
3 answers

SSH ./config or ./Configure gives error

I am trying to install some packes on my machine running CentOS 5.5 but when i run ./config or ./Configure, I am returned: -bash: ./config: /bin/sh: bad interpreter: Permission denied -bash: ./Configure: Permission denied What do I need to change…
JM4
  • 1,144
  • 3
  • 18
  • 29
0
votes
1 answer

Redhat | Openssl installation error

make -f objs/Makefile make[1]: Entering directory `/root/fuse-ssh/nginx-0.7.65' cd /usr/bin/openssl \ && make clean \ && ./config --prefix=/usr/bin/openssl/.openssl no-shared no-threads \ && make \ && make…
Switch
  • 159
  • 10
0
votes
1 answer

SSL certificates work fine from command line but fails in script

I'm trying to setup email notifications for my continuous integration server. I have a script which uses nail to send the email when the build works: #!/bin/bash echo "Build Worked!" | nail -A myisp -s 'Build Success' my_email@gmail.com When I run…
jrallison
  • 103
  • 1
0
votes
2 answers

curl with --cacert fails on almalinux8 but works on ubuntu

We try this: curl -v --cacert cert.pem https://example.com/path.asmx on ubuntu its working, we're getting: successfully set certificate verify locations: * CAfile: cert.pem CApath: /etc/ssl/certs * TLSv1.3 (OUT), TLS handshake, Client hello…
Guy
  • 3
  • 1
0
votes
0 answers

Cannot connect to LDAP server ERRNO=0

I have a php application (apache,redhat with selinux disabled) and I am struggling with ldap configuration. I am trying to connect to a ldap server and I am getting this error in apache logs: ldap_bind(): Unable to bind to server: Can't contact LDAP…
0
votes
1 answer

Disable TLSv1.0 and TLSv1.1 when generating certificates using openssl 1.1.1

I am struggling to implement a feature for my certificates. I am generating my certificates with OPENSSL 1.1.1. I want to allow only TLSv1.2 and TLSv1.3. The other protocols should not be possible (TLSv1.0 / TLS1.1 / ...). The goal is to generate…
gboltonrp
  • 3
  • 1
0
votes
0 answers

OpenSSL 3.0 generating p12 certificate issue with FIPS

I am running the OpenSSL command to generate bundle.p12 with -legacy option. RHEL 9 FIPS Enabled setup. openssl pkcs12 -export -legacy -in cacert.pem -inkey cakey.pem -out bundle.p12 Error creating PKCS12 structure for…
user1631072
  • 1
  • 1
  • 1
0
votes
1 answer

Can't get .pfx file to work on Linux

I am writing a C# program that has to call an API endpoint that requires authentication via certificates. I have got a .pfx file, which I can import in Windows and everything works fine, however the app must run in a Linux environment in a Docker…
MondQ
  • 3
  • 1
0
votes
1 answer

openssl s_client works with IP, but does nothing with domain name

I recently-ish set up an internal (firewalled) apache2 web server that exactly one of my colleagues cannot reach for some reason (PR_END_OF_FILE_ERROR, indicating something's wrong with the handshake/SSL/ciphers). Since I don't have a sufficiently…
MrArsGravis
  • 111
  • 1
0
votes
1 answer

Fastcgi script "file not found" / Primary script unknown

ACTUAL SITUATION I am in the process of transferring a static web server to a container. ISSUE ENCOUNTERED When i'm trying to reach my server, i received "File not found" with : curl command : curl --insecure -v -H "Host: "…
0
votes
1 answer

Certificate works when added a space to it, why?

We have generated a certificate via Letsencrypt and trying to use it via nginx, but we get a weird error: cannot load certificate "/home/path/site.pem": PEM_read_bio_X509_AUX() failed The solution we found was to add a space infront of the…
0
votes
0 answers

.p12 certificate not working on mac (Ventura 13.4.1) but works on windows

I generated ssl certificates for (Nifi Registry https://nifi.apache.org/registry.html) I installed them in Windows.. it worked and i get a prompt to select certificate when i open the website https:// Now, when i install them in Mac, first it wont…
0
votes
0 answers

NodeJS https server returns http 0 and SSL error:14094412 ERR_SSL_SSLV3_ALERT_BAD_CERTIFICATE

I have a nodejs https server running on my Raspberry Pi. It responses to ajax requests. When open the webpage with a desktop/laptop or an iPhone (Safari), the ajax call returns the proper result with a http 200 return code. However, when I do the…