mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-14 10:06:58 -04:00
Merge pull request #2040 from gchq/feature/add-toggle-plus-to-urldecode
Add toggle "+" character to URLDecode operation
This commit is contained in:
commit
761173bce7
3 changed files with 102 additions and 2 deletions
|
@ -23,7 +23,13 @@ class URLDecode extends Operation {
|
||||||
this.infoURL = "https://wikipedia.org/wiki/Percent-encoding";
|
this.infoURL = "https://wikipedia.org/wiki/Percent-encoding";
|
||||||
this.inputType = "string";
|
this.inputType = "string";
|
||||||
this.outputType = "string";
|
this.outputType = "string";
|
||||||
this.args = [];
|
this.args = [
|
||||||
|
{
|
||||||
|
"name": "Treat \"+\" as space",
|
||||||
|
"type": "boolean",
|
||||||
|
"value": true
|
||||||
|
},
|
||||||
|
];
|
||||||
this.checks = [
|
this.checks = [
|
||||||
{
|
{
|
||||||
pattern: ".*(?:%[\\da-f]{2}.*){4}",
|
pattern: ".*(?:%[\\da-f]{2}.*){4}",
|
||||||
|
@ -39,7 +45,8 @@ class URLDecode extends Operation {
|
||||||
* @returns {string}
|
* @returns {string}
|
||||||
*/
|
*/
|
||||||
run(input, args) {
|
run(input, args) {
|
||||||
const data = input.replace(/\+/g, "%20");
|
const plusIsSpace = args[0];
|
||||||
|
const data = plusIsSpace ? input.replace(/\+/g, "%20") : input;
|
||||||
try {
|
try {
|
||||||
return decodeURIComponent(data);
|
return decodeURIComponent(data);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
|
|
|
@ -163,6 +163,7 @@ import "./tests/TranslateDateTimeFormat.mjs";
|
||||||
import "./tests/Typex.mjs";
|
import "./tests/Typex.mjs";
|
||||||
import "./tests/UnescapeString.mjs";
|
import "./tests/UnescapeString.mjs";
|
||||||
import "./tests/Unicode.mjs";
|
import "./tests/Unicode.mjs";
|
||||||
|
import "./tests/URLEncodeDecode.mjs";
|
||||||
import "./tests/RSA.mjs";
|
import "./tests/RSA.mjs";
|
||||||
import "./tests/CBOREncode.mjs";
|
import "./tests/CBOREncode.mjs";
|
||||||
import "./tests/CBORDecode.mjs";
|
import "./tests/CBORDecode.mjs";
|
||||||
|
|
92
tests/operations/tests/URLEncodeDecode.mjs
Normal file
92
tests/operations/tests/URLEncodeDecode.mjs
Normal file
|
@ -0,0 +1,92 @@
|
||||||
|
/**
|
||||||
|
* URLEncode and URLDecode tests.
|
||||||
|
*
|
||||||
|
* @author es45411 [135977478+es45411@users.noreply.github.com]
|
||||||
|
*
|
||||||
|
* @copyright Crown Copyright 2018
|
||||||
|
* @license Apache-2.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
import TestRegister from "../../lib/TestRegister.mjs";
|
||||||
|
|
||||||
|
TestRegister.addTests([
|
||||||
|
// URL Decode
|
||||||
|
{
|
||||||
|
name: "URLDecode: nothing",
|
||||||
|
input: "",
|
||||||
|
expectedOutput: "",
|
||||||
|
recipeConfig: [
|
||||||
|
{
|
||||||
|
op: "URL Decode",
|
||||||
|
args: [],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "URLDecode: spaces without special chars",
|
||||||
|
input: "Hello%20world%21",
|
||||||
|
expectedOutput: "Hello world!",
|
||||||
|
recipeConfig: [
|
||||||
|
{
|
||||||
|
op: "URL Decode",
|
||||||
|
args: [],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "URLDecode: spaces with special chars",
|
||||||
|
input: "Hello%20world!",
|
||||||
|
expectedOutput: "Hello world!",
|
||||||
|
recipeConfig: [
|
||||||
|
{
|
||||||
|
op: "URL Decode",
|
||||||
|
args: [],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "URLDecode: decode plus as space",
|
||||||
|
input: "Hello%20world!",
|
||||||
|
expectedOutput: "Hello world!",
|
||||||
|
recipeConfig: [
|
||||||
|
{
|
||||||
|
op: "URL Decode",
|
||||||
|
args: [],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
// URL Encode
|
||||||
|
{
|
||||||
|
name: "URLEncode: nothing",
|
||||||
|
input: "",
|
||||||
|
expectedOutput: "",
|
||||||
|
recipeConfig: [
|
||||||
|
{
|
||||||
|
op: "URL Encode",
|
||||||
|
args: [],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "URLEncode: spaces without special chars",
|
||||||
|
input: "Hello world!",
|
||||||
|
expectedOutput: "Hello%20world!",
|
||||||
|
recipeConfig: [
|
||||||
|
{
|
||||||
|
op: "URL Encode",
|
||||||
|
args: [],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "URLEncode: spaces with special chars",
|
||||||
|
input: "Hello world!",
|
||||||
|
expectedOutput: "Hello%20world%21",
|
||||||
|
recipeConfig: [
|
||||||
|
{
|
||||||
|
op: "URL Encode",
|
||||||
|
args: [true],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
]);
|
Loading…
Add table
Add a link
Reference in a new issue