mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-24 08:46:19 -04:00
Added Decode VBE
This commit is contained in:
parent
d012fd3a65
commit
fdc8a15595
5 changed files with 290 additions and 1 deletions
|
@ -66,6 +66,7 @@ const Categories = [
|
|||
"Encode text",
|
||||
"Decode text",
|
||||
"Swap endianness",
|
||||
"Decode VBE",
|
||||
]
|
||||
},
|
||||
{
|
||||
|
|
|
@ -38,7 +38,7 @@ import Tidy from "../operations/Tidy.js";
|
|||
import Unicode from "../operations/Unicode.js";
|
||||
import URL_ from "../operations/URL.js";
|
||||
import UUID from "../operations/UUID.js";
|
||||
|
||||
import VBE from "../operations/VBE.js";
|
||||
|
||||
/**
|
||||
* Type definition for an OpConf.
|
||||
|
@ -3204,6 +3204,13 @@ const OperationConfig = {
|
|||
}
|
||||
]
|
||||
},
|
||||
"Decode VBE": {
|
||||
description: "Decodes Microsoft VBE files that have been encoded with Microsoft's custom encoding.",
|
||||
run: VBE.runDecodeVBE,
|
||||
inputType: "string",
|
||||
outputType: "string",
|
||||
args: []
|
||||
},
|
||||
"Syntax highlighter": {
|
||||
description: "Adds syntax highlighting to a range of source code languages. Note that this will not indent the code. Use one of the 'Beautify' operations for that.",
|
||||
run: Code.runSyntaxHighlight,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue