mirror of
https://github.com/gchq/CyberChef
synced 2025-01-10 03:28:48 +00:00
23 lines
471 B
JavaScript
23 lines
471 B
JavaScript
|
/**
|
|||
|
* CharEnc tests.
|
|||
|
*
|
|||
|
* @author tlwr [toby@toby.codes]
|
|||
|
* @copyright Crown Copyright 2017
|
|||
|
* @license Apache-2.0
|
|||
|
*/
|
|||
|
import TestRegister from "../../TestRegister.js";
|
|||
|
|
|||
|
TestRegister.addTests([
|
|||
|
{
|
|||
|
name: "VBE Decode",
|
|||
|
input: "##@~^DgAAAA==\\ko$K6,JCV^GJqAQAAA==^#~@",
|
|||
|
expectedOutput: "MsgBox \"Hello\"",
|
|||
|
recipeConfig: [
|
|||
|
{
|
|||
|
"op": "Decode VBE",
|
|||
|
"args": []
|
|||
|
},
|
|||
|
],
|
|||
|
},
|
|||
|
]);
|