
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
EasyOCSP is an easy-to-use OCSP client for Node.js that can be used to check the revocation status of X.509 TLS certificates using the Online Certificate Status Protocol (OCSP). It's based on PKI.js but provides a much simpler API and additional features like OCSP nonce verification (RFC 8954).
A complete documentation can be found at ocsp.tkoessler.de.
You can install EasyOCSP using npm:
npm install easy-ocsp
The following example shows how to use EasyOCSP to check the revocation status of a certificate:
import { getCertStatus } from 'easy-ocsp';
try {
const ocspResult = await getCertStatus(/* PEM string, DER Buffer, X509Certificate */);
if (ocspResult.status === 'revoked') {
// Certificate is revoked
} else if (ocspResult.status === 'good') {
// Certificate is valid
} else {
// Certificate status is unknown
}
} catch (e) {
// Handle errors ...
}
EasyOCSP also provides a function to check the revocation status of a certificate by domain. This function will automatically download the certificate from the given domain and check its revocation status:
import { getCertStatusByDomain } from 'easy-ocsp';
try {
const ocspResult = await getCertStatusByDomain('example.com');
// ...
} catch (e) {
// Handle errors ...
}
You can use the getCertUrls function to get the URLs of the OCSP responder and the issuer certificate of a certificate. This is extracted from the certificate's authorityInfoAccess extension:
import { getCertUrls } from 'easy-ocsp';
try {
const { ocspUrl, issuerUrl } = getCertUrls(/* PEM string, DER Buffer, X509Certificate */);
// ...
} catch (e) {
// Handle errors ...
}
You can use the downloadCert function to download the certificate of a domain. This function will return the certificate as a DER buffer:
import { downloadCert } from 'easy-ocsp';
try {
const cert = await downloadCert('example.com');
// ...
} catch (e) {
// Handle errors ...
}
You can use the getRawOCSPResponse function to get the OCSP response bytes. This function will return the OCSP response and the nonce as a buffer and the issuer certificate as pem string. The response is not parsed or validated.
import { getRawOCSPResponse } from 'easy-ocsp';
try {
const { rawResponse, nonce, issuerCert } = await getRawOCSPResponse(/* PEM string, DER Buffer, X509Certificate */);
// ...
} catch (e) {
// Handle errors ...
}
You can pass an options object to the getCertStatus and getCertStatusByDomain functions to configure the OCSP request. You can find a complete list of all options in the documentation.
If a public GitHub issue or discussion is not the right choice for your concern, you can contact me directly:
© Timo Kössler 2025
Released under the MIT license
FAQs
An easy-to-use OCSP client for Node.js
The npm package easy-ocsp receives a total of 8,921 weekly downloads. As such, easy-ocsp popularity was classified as popular.
We found that easy-ocsp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.