mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-23 16:26:16 -04:00
fix formatting
This commit is contained in:
parent
c555e54dee
commit
e80fad227e
1 changed files with 93 additions and 94 deletions
|
@ -4,98 +4,97 @@
|
||||||
* @license Apache-2.0
|
* @license Apache-2.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import Operation from "../Operation.mjs";
|
import Operation from "../Operation.mjs";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* URL Encode operation
|
* URL Encode operation
|
||||||
*/
|
*/
|
||||||
class URLEncode extends Operation {
|
class URLEncode extends Operation {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* URLEncode constructor
|
* URLEncode constructor
|
||||||
*/
|
*/
|
||||||
constructor() {
|
constructor() {
|
||||||
super();
|
super();
|
||||||
|
|
||||||
this.name = "URL Encode";
|
this.name = "URL Encode";
|
||||||
this.module = "URL";
|
this.module = "URL";
|
||||||
this.description = "Encodes problematic characters into percent-encoding, a format supported by URIs/URLs.<br><br>e.g. <code>=</code> becomes <code>%3d</code>";
|
this.description = "Encodes problematic characters into percent-encoding, a format supported by URIs/URLs.<br><br>e.g. <code>=</code> becomes <code>%3d</code>";
|
||||||
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": "Encode all special chars",
|
"name": "Encode all special chars",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"value": false
|
"value": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Encode all chars",
|
"name": "Encode all chars",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"value": false
|
"value": false
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {string} input
|
* @param {string} input
|
||||||
* @param {Object[]} args
|
* @param {Object[]} args
|
||||||
* @returns {string}
|
* @returns {string}
|
||||||
*/
|
*/
|
||||||
run(input, args) {
|
run(input, args) {
|
||||||
const encodeAll = args[0];
|
const encodeAll = args[0];
|
||||||
const encodeAllEvery = args[1];
|
const encodeAllEvery = args[1];
|
||||||
return encodeAllEvery ? this.encodeAllEveryChars(input) : encodeAll ? this.encodeAllChars(input) : encodeURI(input);
|
return encodeAllEvery ? this.encodeAllEveryChars(input) : encodeAll ? this.encodeAllChars(input) : encodeURI(input);
|
||||||
//return encodeAll ? this.encodeAllChars(input) : encodeURI(input);
|
//return encodeAll ? this.encodeAllChars(input) : encodeURI(input);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Pads a string from the front to a given length with a given char
|
* Pads a string from the front to a given length with a given char
|
||||||
*
|
*
|
||||||
* @param {string} str
|
* @param {string} str
|
||||||
* @returns {string}
|
* @returns {string}
|
||||||
*/
|
*/
|
||||||
frontPad (str, length, char){
|
frontPad (str, length, char){
|
||||||
return str.length >= length ? str : (char * (length - str.length)) + str;
|
return str.length >= length ? str : (char * (length - str.length)) + str;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Encode characters in URL outside of encodeURI() function spec
|
* Encode characters in URL outside of encodeURI() function spec
|
||||||
*
|
*
|
||||||
* @param {string} str
|
* @param {string} str
|
||||||
* @returns {string}
|
* @returns {string}
|
||||||
*/
|
*/
|
||||||
encodeAllChars (str) {
|
encodeAllChars (str) {
|
||||||
// TODO Do this programmatically
|
// TODO Do this programmatically
|
||||||
return encodeURIComponent(str)
|
return encodeURIComponent(str)
|
||||||
.replace(/!/g, "%21")
|
.replace(/!/g, "%21")
|
||||||
.replace(/#/g, "%23")
|
.replace(/#/g, "%23")
|
||||||
.replace(/'/g, "%27")
|
.replace(/'/g, "%27")
|
||||||
.replace(/\(/g, "%28")
|
.replace(/\(/g, "%28")
|
||||||
.replace(/\)/g, "%29")
|
.replace(/\)/g, "%29")
|
||||||
.replace(/\*/g, "%2A")
|
.replace(/\*/g, "%2A")
|
||||||
.replace(/-/g, "%2D")
|
.replace(/-/g, "%2D")
|
||||||
.replace(/\./g, "%2E")
|
.replace(/\./g, "%2E")
|
||||||
.replace(/_/g, "%5F")
|
.replace(/_/g, "%5F")
|
||||||
.replace(/~/g, "%7E");
|
.replace(/~/g, "%7E");
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Encode ALL characters in URL including alphanumeric based on char codes
|
* Encode ALL characters in URL including alphanumeric based on char codes
|
||||||
*
|
*
|
||||||
* @param {string} str
|
* @param {string} str
|
||||||
* @returns {string}
|
* @returns {string}
|
||||||
*/
|
*/
|
||||||
encodeAllEveryChars (str) {
|
encodeAllEveryChars (str) {
|
||||||
let encoded = "";
|
let encoded = "";
|
||||||
for (var char of str) {
|
for (var char of str) {
|
||||||
encoded += "%" + this.frontPad(char.charCodeAt(0).toString(16).toUpperCase(), 2, "0")
|
encoded += "%" + this.frontPad(char.charCodeAt(0).toString(16).toUpperCase(), 2, "0")
|
||||||
}
|
}
|
||||||
return encoded;
|
return encoded;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
export default URLEncode;
|
export default URLEncode;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue