mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-21 07:16:17 -04:00
Merge Upstream.
This commit is contained in:
commit
ca8fef1c90
7 changed files with 57 additions and 11 deletions
|
@ -29,7 +29,7 @@
|
|||
<meta name="description" content="The Cyber Swiss Army Knife" />
|
||||
<meta name="keywords" content="base64, hex, decode, encode, encrypt, decrypt, compress, decompress, regex, regular expressions, hash, crypt, hexadecimal, user agent, url, certificate, x.509, parser, JSON, gzip, md5, sha1, aes, des, blowfish, xor" />
|
||||
|
||||
<link rel="icon" type="image/png" href="images/favicon.ico" />
|
||||
<link rel="icon" type="image/png" href="images/favicon.ico?__inline" />
|
||||
<link href="styles.css" rel="stylesheet" />
|
||||
</head>
|
||||
<body>
|
||||
|
|
|
@ -279,8 +279,8 @@ HTMLApp.prototype.valid_favourites = function(favourites) {
|
|||
if (this.operations.hasOwnProperty(favourites[i])) {
|
||||
valid_favs.push(favourites[i]);
|
||||
} else {
|
||||
this.alert("The operation \"" + favourites[i] + "\" is no longer " +
|
||||
"available. It has been removed from your favourites.", "info");
|
||||
this.alert("The operation \"" + Utils.escape_html(favourites[i]) +
|
||||
"\" is no longer available. It has been removed from your favourites.", "info");
|
||||
}
|
||||
}
|
||||
return valid_favs;
|
||||
|
@ -436,7 +436,8 @@ HTMLApp.prototype.set_recipe_config = function(recipe_config) {
|
|||
} else if (args[j].classList.contains("toggle-string")) {
|
||||
// toggle_string
|
||||
args[j].value = recipe_config[i].args[j].string;
|
||||
args[j].previousSibling.children[0].innerHTML = recipe_config[i].args[j].option +
|
||||
args[j].previousSibling.children[0].innerHTML =
|
||||
Utils.escape_html(recipe_config[i].args[j].option) +
|
||||
" <span class='caret'></span>";
|
||||
} else {
|
||||
// all others
|
||||
|
|
|
@ -1,18 +1,32 @@
|
|||
202 source files
|
||||
<<<<<<< HEAD
|
||||
104240 lines
|
||||
size
|
||||
|
||||
136 JavaScript source files
|
||||
95168 lines
|
||||
3.5M size
|
||||
=======
|
||||
104191 lines
|
||||
4.0M size
|
||||
|
||||
136 JavaScript source files
|
||||
95119 lines
|
||||
3.4M size
|
||||
>>>>>>> upstream/master
|
||||
|
||||
78 third party JavaScript source files
|
||||
76377 lines
|
||||
2.8M size
|
||||
|
||||
58 first party JavaScript source files
|
||||
<<<<<<< HEAD
|
||||
18791 lines
|
||||
736K size
|
||||
=======
|
||||
18742 lines
|
||||
724K size
|
||||
>>>>>>> upstream/master
|
||||
|
||||
3.1M uncompressed JavaScript size
|
||||
1.7M compressed JavaScript size
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue