mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-10 16:25:01 -04:00
Delete DechunkHTTPResponse.mjs
This commit is contained in:
parent
05e65a74ce
commit
0607342303
1 changed files with 0 additions and 51 deletions
|
@ -1,51 +0,0 @@
|
||||||
/**
|
|
||||||
* @author sevzero [sevzero@protonmail.com]
|
|
||||||
* @copyright Crown Copyright 2018
|
|
||||||
* @license Apache-2.0
|
|
||||||
*/
|
|
||||||
|
|
||||||
import Operation from "../Operation.mjs";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Dechunk HTTP response operation
|
|
||||||
*/
|
|
||||||
class DechunkHTTPResponse extends Operation {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* DechunkHTTPResponse constructor
|
|
||||||
*/
|
|
||||||
constructor() {
|
|
||||||
super();
|
|
||||||
|
|
||||||
this.name = "Dechunk HTTP response";
|
|
||||||
this.module = "Default";
|
|
||||||
this.description = "Parses an HTTP response transferred using Transfer-Encoding: Chunked";
|
|
||||||
this.infoURL = "https://wikipedia.org/wiki/Chunked_transfer_encoding";
|
|
||||||
this.inputType = "string";
|
|
||||||
this.outputType = "string";
|
|
||||||
this.args = [];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param {string} input
|
|
||||||
* @param {Object[]} args
|
|
||||||
* @returns {string}
|
|
||||||
*/
|
|
||||||
run(input, args) {
|
|
||||||
const chunks = [];
|
|
||||||
let chunkSizeEnd = input.indexOf("\n") + 1;
|
|
||||||
const lineEndings = input.charAt(chunkSizeEnd - 2) === "\r" ? "\r\n" : "\n";
|
|
||||||
const lineEndingsLength = lineEndings.length;
|
|
||||||
let chunkSize = parseInt(input.slice(0, chunkSizeEnd), 16);
|
|
||||||
while (!isNaN(chunkSize)) {
|
|
||||||
chunks.push(input.slice(chunkSizeEnd, chunkSize + chunkSizeEnd));
|
|
||||||
input = input.slice(chunkSizeEnd + chunkSize + lineEndingsLength);
|
|
||||||
chunkSizeEnd = input.indexOf(lineEndings) + lineEndingsLength;
|
|
||||||
chunkSize = parseInt(input.slice(0, chunkSizeEnd), 16);
|
|
||||||
}
|
|
||||||
return chunks.join("") + input;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
export default DechunkHTTPResponse;
|
|
Loading…
Add table
Add a link
Reference in a new issue