Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7492873
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T16:38:15+00:00 2026-05-29T16:38:15+00:00

Given a certain CRL, for example: http://crl.verisign.com/pca1.crl Downloading it, and asking openssl to verify

  • 0

Given a certain CRL, for example:

http://crl.verisign.com/pca1.crl

Downloading it, and asking openssl to verify it and show its contents works like a charm:

wget http://crl.verisign.com/pca1.crl
openssl crl -in ./pca1.crl -inform DER -text
verify OK
Certificate Revocation List (CRL):
        Version 1 (0x0)
        Signature Algorithm: sha1WithRSAEncryption
        Issuer: /C=US/O=VeriSign, Inc./OU=Class 1 Public Primary Certification Authority
        Last Update: Nov 22 00:00:00 2011 GMT
        Next Update: Mar 21 23:59:59 2012 GMT
...
[truncated]

Is there a way to find out which CA certificate validated that this CRL’s authenticity?

Or is the only way to loop over the certificates in the certificate store, and try them one by one until a match is hit?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T16:38:29+00:00Added an answer on May 29, 2026 at 4:38 pm

    Easy way is to check the output of:

    curl --silent http://crl.verisign.com/pca1.crl |openssl crl  -inform DER -noout -issuer
    

    which will be something like:

    issuer=/C=US/O=VeriSign, Inc./OU=Class 1 Public Primary Certification Authority
    

    as that will tell you the issuer, i.e., the entity which signed the CRL, not necessarily the entity which issued the certs which where revoked (though usually it is).

    You can go a step further and verify this with:

     curl  --silent -O ca.pem http://www.verisign.com/repository/roots/root-certificates/PCA-1.pem
     curl --silent http://crl.verisign.com/pca1.crl |\
          openssl crl  -inform DER  -noout -CAfile PCA-1.pem
    

    and check that you see a

     verify OK
    

    Or alternatively – if you have a cert store – look for an Issuer with a DN identical to the one you found with the issuer; and then check the signature (comparing the DNs is not good enough – someone could have inserted a fake/self-signed with that DN).

    I do not think you can do much better than that as a lot of CAs, including Verisign, do not decorate their CRL with identifiers (you can confirm this with curl --silent http://crl.verisign.com/pca1.crl |openssl asn1parse -inform DER). So you are really down to extracting the DN, find a DN by string comparison on your stash and then check the signature. And ideally go as far as actually comparing against the part of the DN which is actually signed by the signature; as a nefarious entry could in theory make DNs of which little (e.g. just the country) is signed (and thus allowing last minute changes/matchings).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Given a certain set of parameters is it possible to stop a set of
Given an app (your app) and a certain action it has, is it possible
Given a table where the first column is seconds past a certain reference point
Given a filename, I need to be able to access certain metadata in an
if i have a function A,which can apply a certain rule on a given
given to certain circumstances, I'm forced to keep page settings (Javascript-values) in the session
I want to find a combinatorial formula that given a certain number of integers,
I'm writing a url shortener, I already solve url shortening. Given a certain long
Given a certain object that respond_to? :+ I would like to know what it's
In case you are given: certain amount of data memory with size half of

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.