One of our customers has an issue with our applications - they take about 2 minutes to start. I ran Process Monitor along with one of the simplest applications and found out the process is trying to connect to verisign.com. The computer running the app is not connected to the internet. The app is signed, so I figured I need to disable the certificate checks. For .net applications, it helped to add the generatePublisherEvidence configuration tag with enabled="false" attribute. However, there are some VB6 applications that cannot be configured this way. I have checked the "Use Certificate Rules on Windows Executables for Software Restriction Policies" setting in Local Security Policy, it is disabled. The machine is not in domain. Any ideas?
Disable CRL check for VB6 applications
795 views Asked by pilvikala At
2
There are 2 answers
0
wqw
On
Did you try changing some of the flags of WintrustSetRegPolicyFlags for the logged on user?
Related Questions in VB6
- ORACLE: Tabs used for indentation converted to spaces in stored procedure when executing through DSN connection
- How to enable a menu that I added to external program on VB6
- microsoft from 2.0 controler textbox to retrieve the hindi content in vba
- VB6 compiled DLL giving CLASS_E_CLASSNOTAVAILABLE issue
- VB6 Project restore from Icon tray
- Can 64-bit Excel VBA use VB6 ActiveX?
- Separate batch of xml using vb6
- Translating decryption function from VB6 to C#
- No value given for one or more required parameters. in Vb6.0
- Read Text File Content from HTTPS Web using VB6
- Setting Working Directory for compiled VB6 application
- becubed oletool missing function call servertime.refresh
- VB6, Win10 x64, MS Office 2016, the Office (Excel) 16 reference is not available, VB, how to add?
- How to set a data comparing with row and column of msflexgrid in vb6
- What is the proper way to create a win32 toolbar on vb6 using win32 api?
Related Questions in CERTIFICATE
- Create aws certification for domain
- How can I create a simple signed certificate for my Windows Forms .NET app in Visual Studio 2022
- Problem validating server certificate connecting to a Kafka cluster
- connecting to secure server from Java application without importing certificate to keystore
- Inside Windows 2016 : error message : "Caused by: java.security.InvalidAlgorithmParameterException: the trustAnchors parameter must be non-empty"
- Visual Studio 2022 free certificate problem. "cannot import key file " how to fix
- How do I sign a powershell script with in-network server so that all clients can run script without changing execution policy?
- Mac Sonoma 14.4 Dotnet 8.0.203 SDK webapi https error
- CA certificate for .NET Maui
- Fiddler doesn't work because Chrome and Edge don't trust fiddler certificate
- openssl: try to load local ca store
- Authentication with SmartCard sending a SOAPUI request
- SSL/TLS certificate exchange/renewal needs private key of the old certificate in CSR
- Questions about p12 certificate and private key password
- ERROR: Could not install packages due to an OSError: Could not find a suitable TLS CA certificate bundle, invalid path: /path/to/cacert.pem
Related Questions in SIGNING
- Windows Driver signing: Do I need EV or simple certification
- How can I sign aab with certificate file
- XML sing URI Reference only alphanumeric
- iOS PDFKit Cryptograhpic Signature
- Validating a webhook signature AND using the body in NextJS
- Error in publishing maui ios app because Code signing must be enabled to create an Xcode archive
- how can i change (sign out) my github account
- BouncyCastle Error "Unable to cast object of type 'Org.BouncyCastle.Asn1.DerSequence' to type 'Org.BouncyCastle.Asn1.DerOctetString'
- The "SignName" property of class PdfPKCS7 always return null in Itext 5.5.13.2 using the C#
- How to get the B-LTA in Itext 5.5.13.2 using the C#
- Unable to install App on real device or distribute it ad hoc, normal on Simulator
- opening docusign envelope for signature is showing custom fields
- Intermitent "The signature key was not found" error
- public key signing - why this is not advisable
- import com.firebase.ui.auth.AuthUI not working
Related Questions in CERTIFICATE-REVOCATION
- Question on Chrome's Certificate Revocation Checking
- In the X.509 CRL v2 format, why is there a requirement to duplicate the "AlgorithmIdentifier" fields?
- openssl: how to use revocation list with SSL_CTX_load_verify_locations?
- How to recognize RevocationStatusUnknown or OfflineRevocation errors on X509Certificate validation?
- Solved - SSL certificate validation fails with 'The revocation function was unable to check revocation because the revocation server was offline."
- How can openssl s_client be used to check if a TLS server presents a revoked certificate?
- Adding PDF revocation information as an signed attribute pdfRevocationInfoArchival OID 1.2.840.113583.1.1.8 is not working
- How to disable certificate revocation list (CRL) caching on IIS 10.0?
- Parsing a certificate revocation list in nodejs
- Given an X509 certificate revocation list in PEM format, how do I convert that to a list of serial numbers of revoked certificates?
- Downloading solana dev tools error: "curl: (35) schannel: next InitializeSecurityContext failed: Unknown error (0x80092012)"
- How to add CRLs to caStore created by Node-forge
- Mosquitto blocks all connections when using CRL file
- MIMEKIT MultipartSigned.Verify How can I disable Certificate Revocation list ceck?
- Okta certificate revokation
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
I managed to disable the check by modifying the setting in MSIE - Internet Options -> Advanced -> Security -> Check for publisher’s certificate revocation. It is important to uncheck the "publisher", not the "server" :)