spelling: extension

This commit is contained in:
Josh Soref 2019-10-13 02:54:35 -04:00
parent db60868001
commit e812e80339

View file

@ -19,7 +19,7 @@ class MicrosoftScriptDecoder extends Operation {
this.name = "Microsoft Script Decoder"; this.name = "Microsoft Script Decoder";
this.module = "Default"; this.module = "Default";
this.description = "Decodes Microsoft Encoded Script files that have been encoded with Microsoft's custom encoding. These are often VBS (Visual Basic Script) files that are encoded and renamed with a '.vbe' extention or JS (JScript) files renamed with a '.jse' extention.<br><br><b>Sample</b><br><br>Encoded:<br><code>#@~^RQAAAA==-mD~sX|:/TP{~J:+dYbxL~@!F@*@!+@*@!&amp;@*eEI@#@&amp;@#@&amp;.jm.raY 214Wv:zms/obI0xEAAA==^#~@</code><br><br>Decoded:<br><code>var my_msg = &#34;Testing <1><2><3>!&#34;;\n\nVScript.Echo(my_msg);</code>"; this.description = "Decodes Microsoft Encoded Script files that have been encoded with Microsoft's custom encoding. These are often VBS (Visual Basic Script) files that are encoded and renamed with a '.vbe' extension or JS (JScript) files renamed with a '.jse' extension.<br><br><b>Sample</b><br><br>Encoded:<br><code>#@~^RQAAAA==-mD~sX|:/TP{~J:+dYbxL~@!F@*@!+@*@!&amp;@*eEI@#@&amp;@#@&amp;.jm.raY 214Wv:zms/obI0xEAAA==^#~@</code><br><br>Decoded:<br><code>var my_msg = &#34;Testing <1><2><3>!&#34;;\n\nVScript.Echo(my_msg);</code>";
this.infoURL = "https://wikipedia.org/wiki/JScript.Encode"; this.infoURL = "https://wikipedia.org/wiki/JScript.Encode";
this.inputType = "string"; this.inputType = "string";
this.outputType = "string"; this.outputType = "string";