2021-10-20 14:28:48 +02:00
|
|
|
/**
|
|
|
|
* @author MikeCAT
|
|
|
|
* @license Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
import Operation from "../Operation.mjs";
|
|
|
|
import Utils from "../Utils.mjs";
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ROT47 Brute Force operation.
|
|
|
|
*/
|
|
|
|
class ROT47BruteForce extends Operation {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ROT47BruteForce constructor
|
|
|
|
*/
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
|
|
|
|
this.name = "ROT47 Brute Force";
|
|
|
|
this.module = "Default";
|
|
|
|
this.description = "Try all meaningful amounts for ROT47.<br><br>Optionally you can enter your known plaintext (crib) to filter the result.";
|
|
|
|
this.infoURL = "https://wikipedia.org/wiki/ROT13#Variants";
|
|
|
|
this.inputType = "byteArray";
|
|
|
|
this.outputType = "string";
|
|
|
|
this.args = [
|
|
|
|
{
|
2022-07-08 17:02:24 +02:00
|
|
|
name: "Sample length",
|
|
|
|
type: "number",
|
|
|
|
value: 100
|
2021-10-20 14:28:48 +02:00
|
|
|
},
|
|
|
|
{
|
2022-07-08 17:02:24 +02:00
|
|
|
name: "Sample offset",
|
|
|
|
type: "number",
|
|
|
|
value: 0
|
2021-10-20 14:28:48 +02:00
|
|
|
},
|
|
|
|
{
|
2022-07-08 17:02:24 +02:00
|
|
|
name: "Print amount",
|
|
|
|
type: "boolean",
|
|
|
|
value: true
|
2021-10-20 14:28:48 +02:00
|
|
|
},
|
|
|
|
{
|
2022-07-08 17:02:24 +02:00
|
|
|
name: "Crib (known plaintext string)",
|
|
|
|
type: "string",
|
|
|
|
value: ""
|
2021-10-20 14:28:48 +02:00
|
|
|
}
|
|
|
|
];
|
|
|
|
}
|
2022-07-08 17:02:24 +02:00
|
|
|
|
2021-10-20 14:28:48 +02:00
|
|
|
/**
|
|
|
|
* @param {byteArray} input
|
|
|
|
* @param {Object[]} args
|
|
|
|
* @returns {string}
|
|
|
|
*/
|
|
|
|
run(input, args) {
|
|
|
|
const [sampleLength, sampleOffset, printAmount, crib] = args;
|
|
|
|
const sample = input.slice(sampleOffset, sampleOffset + sampleLength);
|
|
|
|
const cribLower = crib.toLowerCase();
|
|
|
|
const result = [];
|
|
|
|
for (let amount = 1; amount < 94; amount++) {
|
|
|
|
const rotated = sample.slice();
|
|
|
|
for (let i = 0; i < rotated.length; i++) {
|
|
|
|
if (33 <= rotated[i] && rotated[i] <= 126) {
|
|
|
|
rotated[i] = (rotated[i] - 33 + amount) % 94 + 33;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const rotatedString = Utils.byteArrayToUtf8(rotated);
|
|
|
|
if (rotatedString.toLowerCase().indexOf(cribLower) >= 0) {
|
|
|
|
const rotatedStringPrintable = Utils.printable(rotatedString, false);
|
|
|
|
if (printAmount) {
|
|
|
|
const amountStr = "Amount = " + (" " + amount).slice(-2) + ": ";
|
|
|
|
result.push(amountStr + rotatedStringPrintable);
|
|
|
|
} else {
|
|
|
|
result.push(rotatedStringPrintable);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result.join("\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default ROT47BruteForce;
|