Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upCodeQL query for disabled revocation checking #78
Labels
Comments
|
GHSL feedback: this query has a confirmed low false positive rate with a practical scope across a variety of projects as verified on LGTM. Security impact is application context dependent. |
|
Created Hackerone report 917453 for bounty 227490 : [78] CodeQL query for disabled revocation checking |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
CVE ID(s)
The query found several places in Apache CXF and Cloudstack where certificate revocation checking was disabled:
Report
I added a query that looks for disabled revocation checking in Java, please see github/codeql#3436
Using a revoked certificate may be dangerous. One of the most common reasons why a certificate authority (CA) revokes a certificate is that the private key has been compromised. For example, the private key might have been stolen by an adversary.
I am planning to write a blog post about the query I wrote and catching such issues with CodeQL.