Last active
February 25, 2021 20:27
-
-
Save Piccirello/00c1bedda085ad4482640e5d0fccba4f to your computer and use it in GitHub Desktop.
Node 14 code to verify the signature from a GitHub secret scanning alert
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const crypto = require("crypto"); | |
const axios = require("axios"); | |
const GITHUB_KEYS_URI = "https://api.github.com/meta/public_keys/secret_scanning"; | |
/** | |
* Verify a payload and signature against a public key | |
* @param {String} payload the value to verify | |
* @param {String} signature the expected value | |
* @param {String} keyID the id of the key used to generated the signature | |
* @return {void} throws if the signature is invalid | |
*/ | |
const verify_signature = async (payload, signature, keyID) => { | |
if (typeof payload !== "string" || payload.length === 0) { | |
throw new Error("Invalid payload"); | |
} | |
if (typeof signature !== "string" || signature.length === 0) { | |
throw new Error("Invalid signature"); | |
} | |
if (typeof keyID !== "string" || keyID.length === 0) { | |
throw new Error("Invalid keyID"); | |
} | |
const keys = (await axios.get(GITHUB_KEYS_URI)).data; | |
if (!(keys?.public_keys instanceof Array) || keys.length === 0) { | |
throw new Error("No public keys found"); | |
} | |
const publicKey = keys.public_keys.find((k) => k.key_identifier === keyID) ?? null; | |
if (publicKey === null) { | |
throw new Error("No public key found matching key identifier"); | |
} | |
const verify = crypto.createVerify("SHA256").update(payload); | |
if (!verify.verify(publicKey.key, Buffer.from(signature, "base64"), "base64")) { | |
throw new Error("Signature does not match payload"); | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment