Skip to content

Instantly share code, notes, and snippets.

@hardillb
Created February 16, 2021 23:18
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hardillb/728a2a154e38effacb5a5dea8c6d34f9 to your computer and use it in GitHub Desktop.
Save hardillb/728a2a154e38effacb5a5dea8c6d34f9 to your computer and use it in GitHub Desktop.
Quick script to decrypt Node-RED credentials files
const crypto = require('crypto');
var encryptionAlgorithm = "aes-256-ctr";
function decryptCreds(key, cipher) {
var flows = cipher["$"];
var initVector = Buffer.from(flows.substring(0, 32),'hex');
flows = flows.substring(32);
var decipher = crypto.createDecipheriv(encryptionAlgorithm, key, initVector);
var decrypted = decipher.update(flows, 'base64', 'utf8') + decipher.final('utf8');
return JSON.parse(decrypted);
}
var creds = require("./" + process.argv[1])
var secret = process.argv[2]
var key = crypto.createHash('sha256').update(secret).digest();
console.log(decryptCreds(key, creds))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment