I'm trying to clone from Github by using both Github Desktop and the git shell but keep on getting this error: Cloning into 'C:\Users\John Doe\workspace\MyProject'... fatal: unable to access 'https://github.com/JohnDoe/MyProject.git/': schannel: next InitializeSecurityContext failed: Unknown error (0x80092012) - The revocation function was unable to check revocation for the certificate. Same [...] read more
I created a self-signed root Certificate Authority for a few internal services in our company, which I configured myself (mostly served over HTTPS). Then I created certificates for those services, signed with this CA. Now I want to add an x509 extension (CRL distribution point) to the root CA without [...] read more
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 certificate. I've made my own CA, and I made a certificate from this CA. The problem is, when I tried to access website with this certificate, It works [...] read more
Please help me to deal with self-signed revocation check I've used makecert.exe to create root and client certificate The problem is that certutil fails to check certificate with error The revocation function was unable to check revocation for the certificate. 0x80092012 Here are command parameters I've used to create root [...] read more
BACKGROUND I have a set of internal company websites, which need to have TLS certificates. I went through a whole bunch of tutorials, and ended up using OpenSSL to create a self-signed root certificate. I then used this certificate to sign server certificates for the internal websites. Finally, I manually [...] read more
I know there are a few similar posts to this but I have not been able to solve this with there answers. I tried git config —global http.schannelcheckrevoke false but I still get the error whether it’s set to true or false. fatal: unable to access 'https://github.com/***/***/': schannel: next InitializeSecurityContext [...] read more
I'm setting up a Docker container of the Confluent Platform, and I'm getting the javax.net.ssl.SSLHandshakeException error. Which certificate do I add? The reason why I'm using Docker is due to my laptop being a windows device. I've installed the latest version of Java/cloned the latest images for the Confluent Platform. [...] read more
Vagrant cannot find the box whenever Vagrant up is commanded. I tried adding the box explicitly but still doesn't work, it shows this error: Bringing machine 'default' up with 'virtualbox' provider... ==> default: Box 'ubuntu/bionic64' could not be found. Attempting to find and install... default: Box Provider: virtualbox default: Box [...] read more
Whenever I want to recreate a project on my windows machine using renv:restore() it always fails installing packages. I always get the same error (although the packages may change): Retrieving 'https://cloud.r-project.org/src/contrib/Archive/xfun/xfun_0.21.tar.gz' ... Error: failed to retrieve package 'xfun' In addition: Warning messages: 1: curl: (35) schannel: next InitializeSecurityContext failed: Unknown [...] read more
I have just downloaded the latest version of Vagrant 2.2.15 and VMware. I tried to run vagrant box add laravel/homestead But I get The box 'laravel/homestead' could not be found or could not be accessed in the remote catalog. If this is a private box on HashiCorp's Vagrant Cloud, please [...] read more
I recently upgraded R to 4.0.4 and RStudio to the latest version 1.4.1103. Steps - 1. Installing packages into system library - Working fine 2. Installing packages within an R Project - Working fine 3. Installing packages into an R Project within renv - Unable to do so. I get [...] read more
We are trying to set up a desktop application requiring a multi factor authenticated login to connect to Amazon's API gateway. To this end, we have used Amazon Cognito for the authentication with the intention of integrating it with the API gateway. Both of the Cognito and API gateway parts [...] read more
I am trying to get a response from a website (any website really), but I keep getting the following error: > curl: (35) schannel: next InitializeSecurityContext failed: Unknown error > (0x80092012) - The revocation function was unable to check revocation for the > certificate. The command I am using is: [...] read more
I would like to know, To call an API from an application, Is it important who verified the SSL certificate for an internal application? I have two Qlik servers and one of them works with API call correctly and another does not. I explained the error message and the difference [...] read more
Could someone helpme with this issue This is my code curl -X POST -u "apikey:Zxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" ^ --header "Content-Type: text/plain;charset=utf-8" ^ --header "Accept: application/json" ^ --data-binary @profile.txt ^ "https:/xxxxxxxxxxxxxxxx1a/v3/profile?version=2017-10-13" This is the error curl: (35) schannel: next InitializeSecurityContext failed: Unknown error (0x80092012) - La función de revocación no puede comprobar la [...] read more
I created a user pool in cognito and set up OAuth2 agent in Cognito. Now iam trying to return the access token using the curl command . Below is the command curl -X POST --user clientid:secret "https://mypooldomain.auth.eu-west-1.amazoncognito.com/oauth2/token?grant_type=client_credentials" -H 'Content-Type: application/x-www-form-urlencoded' BUT BELOW I AM GETTING FOLLOWING ERROR curl: (35) schannel: [...] read more
I deploy my CA cert via GPO into Trusted Root Certification Authorities, which I can see is deployed to my client machines. I know this part is working as Chrome no longer moans when browsing to sites using my signed SSL certs. However, when I try and git clone or [...] read more
I am trying to upload a file to client server with help of shell script facing below error in command prompt as well as in cygwin software. curl: (35) schannel: next InitializeSecurityContext failed: Unknown error (0x80092012) - The revocation function was unable to check revocation for the certificate. Even after [...] read more
We have a root certificate authority made with OpenSSL. Its file-based, runs on RHEL, uses "serial" and "index.txt" etc. Now in a lab environment we have added an intermediate standalone certificate authority using Active Directory Certificate Services, standalone (i.e. not an AD or domain member), running on Windows Server 2012 [...] read more
I am behind a corporate firewall. When I try to push code I get the following error... ssh_exchange_identification: read: Connection reset by peer When I connect outside the firewall everything works fine. Windows is logging these errors... The certificate received from the remote server has not validated correctly. The error [...] read more
Our TFS server originally setup with self-signed certs to use https, and firstly we only setup windows agent server for TFS to run CI, all works well. Recently our team plan to try to add linux agent into TFS to run CI on linux agent server but failed, after do [...] read more