cyberchef 9.47.3 → 9.47.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cyberchef",
3
- "version": "9.47.3",
3
+ "version": "9.47.4",
4
4
  "description": "The Cyber Swiss Army Knife for encryption, encoding, compression and data analysis.",
5
5
  "author": "n1474335 <n1474335@gmail.com>",
6
6
  "homepage": "https://gchq.github.io/CyberChef",
@@ -7830,7 +7830,14 @@
7830
7830
  "outputType": "JSON",
7831
7831
  "flowControl": false,
7832
7832
  "manualBake": false,
7833
- "args": []
7833
+ "args": [],
7834
+ "checks": [
7835
+ {
7836
+ "pattern": "^ey([A-Za-z0-9_-]+)\\.ey([A-Za-z0-9_-]+)\\.([A-Za-z0-9_-]+)$",
7837
+ "flags": "",
7838
+ "args": []
7839
+ }
7840
+ ]
7834
7841
  },
7835
7842
  "JWT Sign": {
7836
7843
  "module": "Crypto",
@@ -26,6 +26,13 @@ class JWTDecode extends Operation {
26
26
  this.inputType = "string";
27
27
  this.outputType = "JSON";
28
28
  this.args = [];
29
+ this.checks = [
30
+ {
31
+ pattern: "^ey([A-Za-z0-9_-]+)\\.ey([A-Za-z0-9_-]+)\\.([A-Za-z0-9_-]+)$",
32
+ flags: "",
33
+ args: []
34
+ },
35
+ ];
29
36
  }
30
37
 
31
38
  /**