mirror of
https://github.com/gchq/CyberChef.git
synced 2024-11-16 00:48:31 +01:00
150 lines
4.6 KiB
JavaScript
150 lines
4.6 KiB
JavaScript
/**
|
|
* @author n1474335 [n1474335@gmail.com]
|
|
* @copyright Crown Copyright 2016
|
|
* @license Apache-2.0
|
|
*/
|
|
|
|
import Operation from "../Operation";
|
|
import {fromBase64, ALPHABET_OPTIONS} from "../lib/Base64";
|
|
|
|
/**
|
|
* From Base64 operation
|
|
*/
|
|
class FromBase64 extends Operation {
|
|
|
|
/**
|
|
* FromBase64 constructor
|
|
*/
|
|
constructor() {
|
|
super();
|
|
|
|
this.name = "From Base64";
|
|
this.module = "Default";
|
|
this.description = "Base64 is a notation for encoding arbitrary byte data using a restricted set of symbols that can be conveniently used by humans and processed by computers.<br><br>This operation decodes data from an ASCII Base64 string back into its raw format.<br><br>e.g. <code>aGVsbG8=</code> becomes <code>hello</code>";
|
|
this.infoURL = "https://wikipedia.org/wiki/Base64";
|
|
this.inputType = "string";
|
|
this.outputType = "byteArray";
|
|
this.args = [
|
|
{
|
|
name: "Alphabet",
|
|
type: "editableOption",
|
|
value: ALPHABET_OPTIONS
|
|
},
|
|
{
|
|
name: "Remove non-alphabet chars",
|
|
type: "boolean",
|
|
value: true
|
|
}
|
|
];
|
|
this.patterns = [
|
|
{
|
|
match: "^\\s*(?:[A-Z\\d+/]{4})+(?:[A-Z\\d+/]{2}==|[A-Z\\d+/]{3}=)?\\s*$",
|
|
flags: "i",
|
|
args: ["A-Za-z0-9+/=", true]
|
|
},
|
|
{
|
|
match: "^\\s*[A-Z\\d\\-_]{20,}\\s*$",
|
|
flags: "i",
|
|
args: ["A-Za-z0-9-_", true]
|
|
},
|
|
{
|
|
match: "^\\s*(?:[A-Z\\d+\\-]{4}){5,}(?:[A-Z\\d+\\-]{2}==|[A-Z\\d+\\-]{3}=)?\\s*$",
|
|
flags: "i",
|
|
args: ["A-Za-z0-9+\\-=", true]
|
|
},
|
|
{
|
|
match: "^\\s*(?:[A-Z\\d./]{4}){5,}(?:[A-Z\\d./]{2}==|[A-Z\\d./]{3}=)?\\s*$",
|
|
flags: "i",
|
|
args: ["./0-9A-Za-z=", true]
|
|
},
|
|
{
|
|
match: "^\\s*[A-Z\\d_.]{20,}\\s*$",
|
|
flags: "i",
|
|
args: ["A-Za-z0-9_.", true]
|
|
},
|
|
{
|
|
match: "^\\s*(?:[A-Z\\d._]{4}){5,}(?:[A-Z\\d._]{2}--|[A-Z\\d._]{3}-)?\\s*$",
|
|
flags: "i",
|
|
args: ["A-Za-z0-9._-", true]
|
|
},
|
|
{
|
|
match: "^\\s*(?:[A-Z\\d+/]{4}){5,}(?:[A-Z\\d+/]{2}==|[A-Z\\d+/]{3}=)?\\s*$",
|
|
flags: "i",
|
|
args: ["0-9a-zA-Z+/=", true]
|
|
},
|
|
{
|
|
match: "^\\s*(?:[A-Z\\d+/]{4}){5,}(?:[A-Z\\d+/]{2}==|[A-Z\\d+/]{3}=)?\\s*$",
|
|
flags: "i",
|
|
args: ["0-9A-Za-z+/=", true]
|
|
},
|
|
{
|
|
match: "^[ !\"#$%&'()*+,\\-./\\d:;<=>?@A-Z[\\\\\\]^_]{20,}$",
|
|
flags: "",
|
|
args: [" -_", false]
|
|
},
|
|
{
|
|
match: "^\\s*[A-Z\\d+\\-]{20,}\\s*$",
|
|
flags: "i",
|
|
args: ["+\\-0-9A-Za-z", true]
|
|
},
|
|
{
|
|
match: "^\\s*[!\"#$%&'()*+,\\-0-689@A-NP-VX-Z[`a-fh-mp-r]{20,}\\s*$",
|
|
flags: "",
|
|
args: ["!-,-0-689@A-NP-VX-Z[`a-fh-mp-r", true]
|
|
},
|
|
{
|
|
match: "^\\s*(?:[N-ZA-M\\d+/]{4}){5,}(?:[N-ZA-M\\d+/]{2}==|[N-ZA-M\\d+/]{3}=)?\\s*$",
|
|
flags: "i",
|
|
args: ["N-ZA-Mn-za-m0-9+/=", true]
|
|
},
|
|
{
|
|
match: "^\\s*[A-Z\\d./]{20,}\\s*$",
|
|
flags: "i",
|
|
args: ["./0-9A-Za-z", true]
|
|
},
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @param {ArrayBuffer} input
|
|
* @param {Object[]} args
|
|
* @returns {string}
|
|
*/
|
|
run(input, args) {
|
|
const [alphabet, removeNonAlphChars] = args;
|
|
|
|
return fromBase64(input, alphabet, "byteArray", removeNonAlphChars);
|
|
}
|
|
|
|
/**
|
|
* Highlight to Base64
|
|
*
|
|
* @param {Object[]} pos
|
|
* @param {number} pos[].start
|
|
* @param {number} pos[].end
|
|
* @param {Object[]} args
|
|
* @returns {Object[]} pos
|
|
*/
|
|
highlight(pos, args) {
|
|
pos[0].start = Math.ceil(pos[0].start / 4 * 3);
|
|
pos[0].end = Math.floor(pos[0].end / 4 * 3);
|
|
return pos;
|
|
}
|
|
|
|
/**
|
|
* Highlight from Base64
|
|
*
|
|
* @param {Object[]} pos
|
|
* @param {number} pos[].start
|
|
* @param {number} pos[].end
|
|
* @param {Object[]} args
|
|
* @returns {Object[]} pos
|
|
*/
|
|
highlightReverse(pos, args) {
|
|
pos[0].start = Math.floor(pos[0].start / 3 * 4);
|
|
pos[0].end = Math.ceil(pos[0].end / 3 * 4);
|
|
return pos;
|
|
}
|
|
}
|
|
|
|
export default FromBase64;
|