CyberChef/test/tests/operations/MS.js

23 lines
497 B
JavaScript
Raw Normal View History

2017-08-27 15:29:26 +02:00
/**
* CharEnc tests.
*
* @author tlwr [toby@toby.codes]
* @copyright Crown Copyright 2017
* @license Apache-2.0
*/
import TestRegister from "../../TestRegister.js";
TestRegister.addTests([
{
name: "Micrsoft Script Decoder",
2017-08-27 15:29:26 +02:00
input: "##@~^DgAAAA==\\ko$K6,JCV^GJqAQAAA==^#~@",
expectedOutput: "MsgBox \"Hello\"",
recipeConfig: [
{
"op": "Micrsoft Script Decoder",
2017-08-27 15:29:26 +02:00
"args": []
},
],
},
]);