10.17.1 • Published 10 days ago

cyberchef-executor v10.17.1

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
10 days ago

CyberChef-executor

GCHQ CyberChef executor

CyberChef is a simple, intuitive web app for carrying out all manner of "cyber" operations within a web browser. These operations include simple encoding like XOR and Base64, more complex encryption like AES, DES and Blowfish, creating binary and hexdumps, compression and decompression of data, calculating hashes and checksums, IPv6 and X.509 parsing, changing character encodings, and much more.

Usage

Node.js / CommonJS

var chef = require("cyberchef-executor")

console.log(chef.getOpCategories())
console.log(chef.getOpConfigs())

let executor = new chef.Executor('To Base64')
let encoded =  executor.run(Buffer.from('hello'), ['A-Za-z0-9+/='])   
console.log(encoded)

executor = new chef.Executor('From Base64')
let plain =  executor.run(encoded.output, ['A-Za-z0-9+/='])   
console.log(plain)
10.17.1

10 days ago

10.17.0

12 days ago