cyberchef 10.22.1 → 10.24.0
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/CHANGELOG.md +182 -0
- package/CONTRIBUTING.md +40 -0
- package/Dockerfile +2 -0
- package/Gruntfile.js +2 -28
- package/README.md +1 -1
- package/babel.config.js +0 -6
- package/package.json +64 -63
- package/src/core/Chef.mjs +8 -1
- package/src/core/Ingredient.mjs +5 -2
- package/src/core/Operation.mjs +6 -1
- package/src/core/Recipe.mjs +10 -5
- package/src/core/config/Categories.json +20 -4
- package/src/core/config/OperationConfig.json +550 -26
- package/src/core/config/modules/Ciphers.mjs +6 -0
- package/src/core/config/modules/Crypto.mjs +6 -0
- package/src/core/config/modules/Default.mjs +8 -0
- package/src/core/config/modules/Shellcode.mjs +2 -0
- package/src/core/config/scripts/fixCryptoApiImports.mjs +54 -0
- package/src/core/config/scripts/fixSnackBarMarkup.mjs +28 -0
- package/src/core/lib/AudioBytes.mjs +103 -0
- package/src/core/lib/AudioMetaSchema.mjs +82 -0
- package/src/core/lib/AudioParsers.mjs +630 -0
- package/src/core/lib/BigIntUtils.mjs +73 -0
- package/src/core/lib/Extract.mjs +5 -0
- package/src/core/lib/Modhex.mjs +2 -0
- package/src/core/lib/ParityBit.mjs +50 -0
- package/src/core/lib/QRCode.mjs +30 -10
- package/src/core/lib/RC6.mjs +625 -0
- package/src/core/operations/A1Z26CipherDecode.mjs +1 -1
- package/src/core/operations/AddTextToImage.mjs +116 -64
- package/src/core/operations/AnalyseUUID.mjs +109 -6
- package/src/core/operations/BlurImage.mjs +10 -12
- package/src/core/operations/ContainImage.mjs +50 -40
- package/src/core/operations/ConvertImageFormat.mjs +33 -39
- package/src/core/operations/CoverImage.mjs +39 -37
- package/src/core/operations/CropImage.mjs +35 -21
- package/src/core/operations/DisassembleARM.mjs +193 -0
- package/src/core/operations/DitherImage.mjs +8 -8
- package/src/core/operations/EscapeUnicodeCharacters.mjs +0 -17
- package/src/core/operations/ExtractAudioMetadata.mjs +175 -0
- package/src/core/operations/ExtractEmailAddresses.mjs +2 -3
- package/src/core/operations/ExtractLSB.mjs +17 -11
- package/src/core/operations/ExtractRGBA.mjs +12 -10
- package/src/core/operations/FlaskSessionDecode.mjs +80 -0
- package/src/core/operations/FlaskSessionSign.mjs +89 -0
- package/src/core/operations/FlaskSessionVerify.mjs +136 -0
- package/src/core/operations/FlipImage.mjs +14 -10
- package/src/core/operations/GenerateImage.mjs +39 -32
- package/src/core/operations/ImageBrightnessContrast.mjs +10 -10
- package/src/core/operations/ImageFilter.mjs +14 -13
- package/src/core/operations/ImageHueSaturationLightness.mjs +22 -20
- package/src/core/operations/ImageOpacity.mjs +6 -8
- package/src/core/operations/InvertImage.mjs +4 -6
- package/src/core/operations/Jq.mjs +12 -4
- package/src/core/operations/NormaliseImage.mjs +5 -7
- package/src/core/operations/OffsetChecker.mjs +1 -1
- package/src/core/operations/ParityBit.mjs +128 -0
- package/src/core/operations/ParseEthernetFrame.mjs +112 -0
- package/src/core/operations/ParseIPv4Header.mjs +23 -6
- package/src/core/operations/ParseQRCode.mjs +13 -13
- package/src/core/operations/PseudoRandomIntegerGenerator.mjs +164 -0
- package/src/core/operations/RC6Decrypt.mjs +119 -0
- package/src/core/operations/RC6Encrypt.mjs +119 -0
- package/src/core/operations/RandomizeColourPalette.mjs +11 -11
- package/src/core/operations/RegularExpression.mjs +2 -1
- package/src/core/operations/RenderMarkdown.mjs +35 -4
- package/src/core/operations/ResizeImage.mjs +30 -23
- package/src/core/operations/RotateImage.mjs +8 -9
- package/src/core/operations/SQLBeautify.mjs +21 -3
- package/src/core/operations/SharpenImage.mjs +94 -62
- package/src/core/operations/SplitColourChannels.mjs +47 -21
- package/src/core/operations/TextIntegerConverter.mjs +123 -0
- package/src/core/operations/UnescapeUnicodeCharacters.mjs +17 -0
- package/src/core/operations/ViewBitPlane.mjs +16 -20
- package/src/core/operations/index.mjs +22 -0
- package/src/node/index.mjs +55 -0
- package/src/web/HTMLIngredient.mjs +24 -43
- package/src/web/HTMLOperation.mjs +8 -2
- package/src/web/Manager.mjs +1 -0
- package/src/web/html/index.html +6 -6
- package/src/web/static/fonts/bmfonts/Roboto72White.fnt +491 -485
- package/src/web/static/fonts/bmfonts/RobotoBlack72White.fnt +494 -488
- package/src/web/static/fonts/bmfonts/RobotoMono72White.fnt +110 -103
- package/src/web/static/fonts/bmfonts/RobotoSlab72White.fnt +498 -492
- package/src/web/stylesheets/layout/_banner.css +30 -0
- package/src/web/stylesheets/layout/_modals.css +5 -0
- package/src/web/stylesheets/utils/_overrides.css +7 -0
- package/src/web/waiters/ControlsWaiter.mjs +82 -0
- package/src/web/waiters/InputWaiter.mjs +12 -6
- package/src/web/waiters/OperationsWaiter.mjs +30 -13
- package/src/web/waiters/RecipeWaiter.mjs +2 -2
- package/tests/browser/02_ops.js +23 -3
- package/tests/node/index.mjs +1 -0
- package/tests/node/tests/lib/BigIntUtils.mjs +150 -0
- package/tests/node/tests/operations.mjs +11 -10
- package/tests/operations/index.mjs +13 -0
- package/tests/operations/tests/A1Z26CipherDecode.mjs +33 -0
- package/tests/operations/tests/AnalyseUUID.mjs +66 -0
- package/tests/operations/tests/DisassembleARM.mjs +377 -0
- package/tests/operations/tests/ExtractAudioMetadata.mjs +287 -0
- package/tests/operations/tests/ExtractEmailAddresses.mjs +38 -12
- package/tests/operations/tests/Fernet.mjs +18 -3
- package/tests/operations/tests/FlaskSession.mjs +246 -0
- package/tests/operations/tests/GenerateQRCode.mjs +67 -0
- package/tests/operations/tests/JWTSign.mjs +83 -8
- package/tests/operations/tests/Jq.mjs +32 -0
- package/tests/operations/tests/Modhex.mjs +20 -0
- package/tests/operations/tests/ParityBit.mjs +147 -0
- package/tests/operations/tests/ParseEthernetFrame.mjs +45 -0
- package/tests/operations/tests/RC6.mjs +487 -0
- package/tests/operations/tests/RegularExpression.mjs +75 -0
- package/tests/operations/tests/RenderMarkdown.mjs +110 -0
- package/tests/operations/tests/SQLBeautify.mjs +54 -0
- package/tests/operations/tests/TextIntegerConverter.mjs +199 -0
- package/tests/samples/Audio.mjs +73 -0
- package/tests/samples/Images.mjs +0 -12
- package/webpack.config.js +10 -7
- package/src/core/lib/ImageManipulation.mjs +0 -251
|
@@ -702,13 +702,19 @@
|
|
|
702
702
|
},
|
|
703
703
|
"Analyse UUID": {
|
|
704
704
|
"module": "Crypto",
|
|
705
|
-
"description": "
|
|
705
|
+
"description": "Operation for extracting metadata and detecting the version of a given UUID.",
|
|
706
706
|
"infoURL": "https://wikipedia.org/wiki/Universally_unique_identifier",
|
|
707
707
|
"inputType": "string",
|
|
708
708
|
"outputType": "string",
|
|
709
709
|
"flowControl": false,
|
|
710
710
|
"manualBake": false,
|
|
711
|
-
"args": [
|
|
711
|
+
"args": [
|
|
712
|
+
{
|
|
713
|
+
"name": "Include Metadata",
|
|
714
|
+
"type": "boolean",
|
|
715
|
+
"value": true
|
|
716
|
+
}
|
|
717
|
+
]
|
|
712
718
|
},
|
|
713
719
|
"Argon2": {
|
|
714
720
|
"module": "Crypto",
|
|
@@ -6566,6 +6572,58 @@
|
|
|
6566
6572
|
}
|
|
6567
6573
|
]
|
|
6568
6574
|
},
|
|
6575
|
+
"Disassemble ARM": {
|
|
6576
|
+
"module": "Shellcode",
|
|
6577
|
+
"description": "Disassembles ARM machine code into assembly language.<br><br>Supports ARM (32-bit), Thumb, and ARM64 (AArch64) architectures using the Capstone disassembly framework.<br><br>Input should be in hexadecimal.",
|
|
6578
|
+
"infoURL": "https://wikipedia.org/wiki/ARM_architecture_family",
|
|
6579
|
+
"inputType": "string",
|
|
6580
|
+
"outputType": "string",
|
|
6581
|
+
"flowControl": false,
|
|
6582
|
+
"manualBake": false,
|
|
6583
|
+
"args": [
|
|
6584
|
+
{
|
|
6585
|
+
"name": "Architecture",
|
|
6586
|
+
"type": "option",
|
|
6587
|
+
"value": [
|
|
6588
|
+
"ARM (32-bit)",
|
|
6589
|
+
"ARM64 (AArch64)"
|
|
6590
|
+
]
|
|
6591
|
+
},
|
|
6592
|
+
{
|
|
6593
|
+
"name": "Mode",
|
|
6594
|
+
"type": "option",
|
|
6595
|
+
"value": [
|
|
6596
|
+
"ARM",
|
|
6597
|
+
"Thumb",
|
|
6598
|
+
"Thumb + Cortex-M",
|
|
6599
|
+
"ARMv8"
|
|
6600
|
+
]
|
|
6601
|
+
},
|
|
6602
|
+
{
|
|
6603
|
+
"name": "Endianness",
|
|
6604
|
+
"type": "option",
|
|
6605
|
+
"value": [
|
|
6606
|
+
"Little Endian",
|
|
6607
|
+
"Big Endian"
|
|
6608
|
+
]
|
|
6609
|
+
},
|
|
6610
|
+
{
|
|
6611
|
+
"name": "Starting address (hex)",
|
|
6612
|
+
"type": "number",
|
|
6613
|
+
"value": 0
|
|
6614
|
+
},
|
|
6615
|
+
{
|
|
6616
|
+
"name": "Show instruction hex",
|
|
6617
|
+
"type": "boolean",
|
|
6618
|
+
"value": true
|
|
6619
|
+
},
|
|
6620
|
+
{
|
|
6621
|
+
"name": "Show instruction position",
|
|
6622
|
+
"type": "boolean",
|
|
6623
|
+
"value": true
|
|
6624
|
+
}
|
|
6625
|
+
]
|
|
6626
|
+
},
|
|
6569
6627
|
"Disassemble x86": {
|
|
6570
6628
|
"module": "Shellcode",
|
|
6571
6629
|
"description": "Disassembly is the process of translating machine language into assembly language.<br><br>This operation supports 64-bit, 32-bit and 16-bit code written for Intel or AMD x86 processors. It is particularly useful for reverse engineering shellcode.<br><br>Input should be in hexadecimal.",
|
|
@@ -7571,29 +7629,6 @@
|
|
|
7571
7629
|
"type": "boolean",
|
|
7572
7630
|
"value": true
|
|
7573
7631
|
}
|
|
7574
|
-
],
|
|
7575
|
-
"checks": [
|
|
7576
|
-
{
|
|
7577
|
-
"pattern": "\\\\u(?:[\\da-f]{4,6})",
|
|
7578
|
-
"flags": "i",
|
|
7579
|
-
"args": [
|
|
7580
|
-
"\\u"
|
|
7581
|
-
]
|
|
7582
|
-
},
|
|
7583
|
-
{
|
|
7584
|
-
"pattern": "%u(?:[\\da-f]{4,6})",
|
|
7585
|
-
"flags": "i",
|
|
7586
|
-
"args": [
|
|
7587
|
-
"%u"
|
|
7588
|
-
]
|
|
7589
|
-
},
|
|
7590
|
-
{
|
|
7591
|
-
"pattern": "U\\+(?:[\\da-f]{4,6})",
|
|
7592
|
-
"flags": "i",
|
|
7593
|
-
"args": [
|
|
7594
|
-
"U+"
|
|
7595
|
-
]
|
|
7596
|
-
}
|
|
7597
7632
|
]
|
|
7598
7633
|
},
|
|
7599
7634
|
"Expand alphabet range": {
|
|
@@ -7612,6 +7647,27 @@
|
|
|
7612
7647
|
}
|
|
7613
7648
|
]
|
|
7614
7649
|
},
|
|
7650
|
+
"Extract Audio Metadata": {
|
|
7651
|
+
"module": "Default",
|
|
7652
|
+
"description": "Extract common audio metadata across MP3 (ID3v2/ID3v1/GEOB), WAV/BWF/BW64 (INFO/bext/iXML/axml), FLAC (Vorbis Comment/Picture), OGG (Vorbis/OpusTags), AAC (ADTS), AC3 (Dolby Digital), WMA (ASF), plus best-effort MP4/M4A and AIFF scanning. Outputs normalized JSON.",
|
|
7653
|
+
"infoURL": "https://wikipedia.org/wiki/Audio_file_format",
|
|
7654
|
+
"inputType": "ArrayBuffer",
|
|
7655
|
+
"outputType": "html",
|
|
7656
|
+
"flowControl": false,
|
|
7657
|
+
"manualBake": false,
|
|
7658
|
+
"args": [
|
|
7659
|
+
{
|
|
7660
|
+
"name": "Filename (optional)",
|
|
7661
|
+
"type": "string",
|
|
7662
|
+
"value": ""
|
|
7663
|
+
},
|
|
7664
|
+
{
|
|
7665
|
+
"name": "Max embedded text bytes (iXML/axml/etc)",
|
|
7666
|
+
"type": "number",
|
|
7667
|
+
"value": 524288
|
|
7668
|
+
}
|
|
7669
|
+
]
|
|
7670
|
+
},
|
|
7615
7671
|
"Extract dates": {
|
|
7616
7672
|
"module": "Regex",
|
|
7617
7673
|
"description": "Extracts dates in the following formats<ul><li><code>yyyy-mm-dd</code></li><li><code>dd/mm/yyyy</code></li><li><code>mm/dd/yyyy</code></li></ul>Dividers can be any of /, -, . or space",
|
|
@@ -8188,6 +8244,117 @@
|
|
|
8188
8244
|
}
|
|
8189
8245
|
]
|
|
8190
8246
|
},
|
|
8247
|
+
"Flask Session Decode": {
|
|
8248
|
+
"module": "Crypto",
|
|
8249
|
+
"description": "Decodes the payload of a Flask session cookie (itsdangerous) into JSON.",
|
|
8250
|
+
"infoURL": null,
|
|
8251
|
+
"inputType": "string",
|
|
8252
|
+
"outputType": "JSON",
|
|
8253
|
+
"flowControl": false,
|
|
8254
|
+
"manualBake": false,
|
|
8255
|
+
"args": [
|
|
8256
|
+
{
|
|
8257
|
+
"name": "View TimeStamp",
|
|
8258
|
+
"type": "boolean",
|
|
8259
|
+
"value": false
|
|
8260
|
+
}
|
|
8261
|
+
]
|
|
8262
|
+
},
|
|
8263
|
+
"Flask Session Sign": {
|
|
8264
|
+
"module": "Crypto",
|
|
8265
|
+
"description": "Signs a JSON payload to produce a Flask session cookie (itsdangerous HMAC).",
|
|
8266
|
+
"infoURL": null,
|
|
8267
|
+
"inputType": "JSON",
|
|
8268
|
+
"outputType": "string",
|
|
8269
|
+
"flowControl": false,
|
|
8270
|
+
"manualBake": false,
|
|
8271
|
+
"args": [
|
|
8272
|
+
{
|
|
8273
|
+
"name": "Key",
|
|
8274
|
+
"type": "toggleString",
|
|
8275
|
+
"value": "",
|
|
8276
|
+
"toggleValues": [
|
|
8277
|
+
"Hex",
|
|
8278
|
+
"Decimal",
|
|
8279
|
+
"Binary",
|
|
8280
|
+
"Base64",
|
|
8281
|
+
"UTF8",
|
|
8282
|
+
"Latin1"
|
|
8283
|
+
]
|
|
8284
|
+
},
|
|
8285
|
+
{
|
|
8286
|
+
"name": "Salt",
|
|
8287
|
+
"type": "toggleString",
|
|
8288
|
+
"value": "cookie-session",
|
|
8289
|
+
"toggleValues": [
|
|
8290
|
+
"UTF8",
|
|
8291
|
+
"Hex",
|
|
8292
|
+
"Decimal",
|
|
8293
|
+
"Binary",
|
|
8294
|
+
"Base64",
|
|
8295
|
+
"Latin1"
|
|
8296
|
+
]
|
|
8297
|
+
},
|
|
8298
|
+
{
|
|
8299
|
+
"name": "Algorithm",
|
|
8300
|
+
"type": "option",
|
|
8301
|
+
"value": [
|
|
8302
|
+
"sha1",
|
|
8303
|
+
"sha256"
|
|
8304
|
+
]
|
|
8305
|
+
}
|
|
8306
|
+
]
|
|
8307
|
+
},
|
|
8308
|
+
"Flask Session Verify": {
|
|
8309
|
+
"module": "Crypto",
|
|
8310
|
+
"description": "Verifies the HMAC signature of a Flask session cookie (itsdangerous) generated.",
|
|
8311
|
+
"infoURL": null,
|
|
8312
|
+
"inputType": "string",
|
|
8313
|
+
"outputType": "JSON",
|
|
8314
|
+
"flowControl": false,
|
|
8315
|
+
"manualBake": false,
|
|
8316
|
+
"args": [
|
|
8317
|
+
{
|
|
8318
|
+
"name": "Key",
|
|
8319
|
+
"type": "toggleString",
|
|
8320
|
+
"value": "",
|
|
8321
|
+
"toggleValues": [
|
|
8322
|
+
"Hex",
|
|
8323
|
+
"Decimal",
|
|
8324
|
+
"Binary",
|
|
8325
|
+
"Base64",
|
|
8326
|
+
"UTF8",
|
|
8327
|
+
"Latin1"
|
|
8328
|
+
]
|
|
8329
|
+
},
|
|
8330
|
+
{
|
|
8331
|
+
"name": "Salt",
|
|
8332
|
+
"type": "toggleString",
|
|
8333
|
+
"value": "cookie-session",
|
|
8334
|
+
"toggleValues": [
|
|
8335
|
+
"UTF8",
|
|
8336
|
+
"Hex",
|
|
8337
|
+
"Decimal",
|
|
8338
|
+
"Binary",
|
|
8339
|
+
"Base64",
|
|
8340
|
+
"Latin1"
|
|
8341
|
+
]
|
|
8342
|
+
},
|
|
8343
|
+
{
|
|
8344
|
+
"name": "Algorithm",
|
|
8345
|
+
"type": "option",
|
|
8346
|
+
"value": [
|
|
8347
|
+
"sha1",
|
|
8348
|
+
"sha256"
|
|
8349
|
+
]
|
|
8350
|
+
},
|
|
8351
|
+
{
|
|
8352
|
+
"name": "View TimeStamp",
|
|
8353
|
+
"type": "boolean",
|
|
8354
|
+
"value": true
|
|
8355
|
+
}
|
|
8356
|
+
]
|
|
8357
|
+
},
|
|
8191
8358
|
"Fletcher-16 Checksum": {
|
|
8192
8359
|
"module": "Crypto",
|
|
8193
8360
|
"description": "The Fletcher checksum is an algorithm for computing a position-dependent checksum devised by John Gould Fletcher at Lawrence Livermore Labs in the late 1970s.<br><br>The objective of the Fletcher checksum was to provide error-detection properties approaching those of a cyclic redundancy check but with the lower computational effort associated with summation techniques.",
|
|
@@ -11822,6 +11989,11 @@
|
|
|
11822
11989
|
"name": "Query",
|
|
11823
11990
|
"type": "string",
|
|
11824
11991
|
"value": ""
|
|
11992
|
+
},
|
|
11993
|
+
{
|
|
11994
|
+
"name": "Raw",
|
|
11995
|
+
"type": "boolean",
|
|
11996
|
+
"value": false
|
|
11825
11997
|
}
|
|
11826
11998
|
]
|
|
11827
11999
|
},
|
|
@@ -13052,6 +13224,46 @@
|
|
|
13052
13224
|
}
|
|
13053
13225
|
]
|
|
13054
13226
|
},
|
|
13227
|
+
"Parity Bit": {
|
|
13228
|
+
"module": "Default",
|
|
13229
|
+
"description": "A parity bit, or check bit, is the simplest form of error detection. It is a bit which is added to a string of bits and represents if the number of 1's in the binary string is an even number or odd number.<br><br>If a delimiter is specified, the parity bit calculation will be performed on each 'block' of the input data, where the blocks are created by slicing the input at each occurence of the delimiter character",
|
|
13230
|
+
"infoURL": "https://wikipedia.org/wiki/Parity_bit",
|
|
13231
|
+
"inputType": "string",
|
|
13232
|
+
"outputType": "string",
|
|
13233
|
+
"flowControl": false,
|
|
13234
|
+
"manualBake": false,
|
|
13235
|
+
"args": [
|
|
13236
|
+
{
|
|
13237
|
+
"name": "Mode",
|
|
13238
|
+
"type": "option",
|
|
13239
|
+
"value": [
|
|
13240
|
+
"Even Parity",
|
|
13241
|
+
"Odd Parity"
|
|
13242
|
+
]
|
|
13243
|
+
},
|
|
13244
|
+
{
|
|
13245
|
+
"name": "Postion",
|
|
13246
|
+
"type": "option",
|
|
13247
|
+
"value": [
|
|
13248
|
+
"Start",
|
|
13249
|
+
"End"
|
|
13250
|
+
]
|
|
13251
|
+
},
|
|
13252
|
+
{
|
|
13253
|
+
"name": "Encode or Decode",
|
|
13254
|
+
"type": "option",
|
|
13255
|
+
"value": [
|
|
13256
|
+
"Encode",
|
|
13257
|
+
"Decode"
|
|
13258
|
+
]
|
|
13259
|
+
},
|
|
13260
|
+
{
|
|
13261
|
+
"name": "Delimiter",
|
|
13262
|
+
"type": "shortString",
|
|
13263
|
+
"value": ""
|
|
13264
|
+
}
|
|
13265
|
+
]
|
|
13266
|
+
},
|
|
13055
13267
|
"Parse ASN.1 hex string": {
|
|
13056
13268
|
"module": "PublicKey",
|
|
13057
13269
|
"description": "Abstract Syntax Notation One (ASN.1) is a standard and notation that describes rules and structures for representing, encoding, transmitting, and decoding data in telecommunications and computer networking.<br><br>This operation parses arbitrary ASN.1 data (encoded as an hex string: use the 'To Hex' operation if necessary) and presents the resulting tree.",
|
|
@@ -13263,6 +13475,7 @@
|
|
|
13263
13475
|
"America/Coral_Harbour",
|
|
13264
13476
|
"America/Cordoba",
|
|
13265
13477
|
"America/Costa_Rica",
|
|
13478
|
+
"America/Coyhaique",
|
|
13266
13479
|
"America/Creston",
|
|
13267
13480
|
"America/Cuiaba",
|
|
13268
13481
|
"America/Curacao",
|
|
@@ -13764,6 +13977,34 @@
|
|
|
13764
13977
|
}
|
|
13765
13978
|
]
|
|
13766
13979
|
},
|
|
13980
|
+
"Parse Ethernet frame": {
|
|
13981
|
+
"module": "Default",
|
|
13982
|
+
"description": "Parses an Ethernet frame and either shows the deduced values (Source and destination MAC, VLANs) or returns the packet data.<br /><br />Good for use in conjunction with the Parse IPv4, and Parse TCP/UDP recipes.",
|
|
13983
|
+
"infoURL": "https://en.wikipedia.org/wiki/Ethernet_frame#Frame_%E2%80%93_data_link_layer",
|
|
13984
|
+
"inputType": "string",
|
|
13985
|
+
"outputType": "html",
|
|
13986
|
+
"flowControl": false,
|
|
13987
|
+
"manualBake": false,
|
|
13988
|
+
"args": [
|
|
13989
|
+
{
|
|
13990
|
+
"name": "Input type",
|
|
13991
|
+
"type": "option",
|
|
13992
|
+
"value": [
|
|
13993
|
+
"Raw",
|
|
13994
|
+
"Hex"
|
|
13995
|
+
]
|
|
13996
|
+
},
|
|
13997
|
+
{
|
|
13998
|
+
"name": "Return type",
|
|
13999
|
+
"type": "option",
|
|
14000
|
+
"value": [
|
|
14001
|
+
"Text output",
|
|
14002
|
+
"Packet data",
|
|
14003
|
+
"Packet data (hex)"
|
|
14004
|
+
]
|
|
14005
|
+
}
|
|
14006
|
+
]
|
|
14007
|
+
},
|
|
13767
14008
|
"Parse IP range": {
|
|
13768
14009
|
"module": "Default",
|
|
13769
14010
|
"description": "Given a CIDR range (e.g. <code>10.0.0.0/24</code>), hyphenated range (e.g. <code>10.0.0.0 - 10.0.1.0</code>), or a list of IPs and/or CIDR ranges (separated by a new line), this operation provides network information and enumerates all IP addresses in the range.<br><br>IPv6 is supported but will not be enumerated.",
|
|
@@ -13806,6 +14047,15 @@
|
|
|
13806
14047
|
"Hex",
|
|
13807
14048
|
"Raw"
|
|
13808
14049
|
]
|
|
14050
|
+
},
|
|
14051
|
+
{
|
|
14052
|
+
"name": "Output format",
|
|
14053
|
+
"type": "option",
|
|
14054
|
+
"value": [
|
|
14055
|
+
"Table",
|
|
14056
|
+
"Data (hex)",
|
|
14057
|
+
"Data (raw)"
|
|
14058
|
+
]
|
|
13809
14059
|
}
|
|
13810
14060
|
]
|
|
13811
14061
|
},
|
|
@@ -14144,6 +14394,58 @@
|
|
|
14144
14394
|
}
|
|
14145
14395
|
]
|
|
14146
14396
|
},
|
|
14397
|
+
"Pseudo-Random Integer Generator": {
|
|
14398
|
+
"module": "Ciphers",
|
|
14399
|
+
"description": "A cryptographically-secure pseudo-random number generator (PRNG).<br><br>Generates random integers within a specified range using the browser's built-in <code>crypto.getRandomValues()</code> method if available.<br><br>The supported range of integers is from <code>-(2^53 - 1)</code> to <code>(2^53 - 1)</code>.",
|
|
14400
|
+
"infoURL": "https://wikipedia.org/wiki/Pseudorandom_number_generator",
|
|
14401
|
+
"inputType": "string",
|
|
14402
|
+
"outputType": "string",
|
|
14403
|
+
"flowControl": false,
|
|
14404
|
+
"manualBake": false,
|
|
14405
|
+
"args": [
|
|
14406
|
+
{
|
|
14407
|
+
"name": "Number of Integers",
|
|
14408
|
+
"type": "number",
|
|
14409
|
+
"value": 1,
|
|
14410
|
+
"min": 1
|
|
14411
|
+
},
|
|
14412
|
+
{
|
|
14413
|
+
"name": "Min Value",
|
|
14414
|
+
"type": "number",
|
|
14415
|
+
"value": 0,
|
|
14416
|
+
"min": -9007199254740991,
|
|
14417
|
+
"max": 9007199254740991
|
|
14418
|
+
},
|
|
14419
|
+
{
|
|
14420
|
+
"name": "Max Value",
|
|
14421
|
+
"type": "number",
|
|
14422
|
+
"value": 99,
|
|
14423
|
+
"min": -9007199254740991,
|
|
14424
|
+
"max": 9007199254740991
|
|
14425
|
+
},
|
|
14426
|
+
{
|
|
14427
|
+
"name": "Delimiter",
|
|
14428
|
+
"type": "option",
|
|
14429
|
+
"value": [
|
|
14430
|
+
"Space",
|
|
14431
|
+
"Comma",
|
|
14432
|
+
"Semi-colon",
|
|
14433
|
+
"Colon",
|
|
14434
|
+
"Line feed",
|
|
14435
|
+
"CRLF"
|
|
14436
|
+
]
|
|
14437
|
+
},
|
|
14438
|
+
{
|
|
14439
|
+
"name": "Output",
|
|
14440
|
+
"type": "option",
|
|
14441
|
+
"value": [
|
|
14442
|
+
"Raw",
|
|
14443
|
+
"Hex",
|
|
14444
|
+
"Decimal"
|
|
14445
|
+
]
|
|
14446
|
+
}
|
|
14447
|
+
]
|
|
14448
|
+
},
|
|
14147
14449
|
"Pseudo-Random Number Generator": {
|
|
14148
14450
|
"module": "Ciphers",
|
|
14149
14451
|
"description": "A cryptographically-secure pseudo-random number generator (PRNG).<br><br>This operation uses the browser's built-in <code>crypto.getRandomValues()</code> method if available. If this cannot be found, it falls back to a Fortuna-based PRNG algorithm.",
|
|
@@ -14423,6 +14725,178 @@
|
|
|
14423
14725
|
}
|
|
14424
14726
|
]
|
|
14425
14727
|
},
|
|
14728
|
+
"RC6 Decrypt": {
|
|
14729
|
+
"module": "Ciphers",
|
|
14730
|
+
"description": "RC6 is a symmetric key block cipher derived from RC5. It was designed by Ron Rivest, Matt Robshaw, Ray Sidney, and Yiqun Lisa Yin to meet the requirements of the AES competition, and was one of the five finalists.<br><br>RC6 is parameterised as RC6-w/r/b where w is word size in bits (any multiple of 8 from 8-256), r is the number of rounds (1-255), and b is the key length in bytes. The standard AES submission uses w=32, r=20. Common word sizes: 8, 16, 32 (standard), 64, 128.<br><br><b>IV:</b> The Initialisation Vector should be 4*w/8 bytes (e.g. 16 bytes for w=32). If not entered, it will default to null bytes.<br><br><b>Padding:</b> In CBC and ECB mode, the PKCS#7 padding scheme is used.",
|
|
14731
|
+
"infoURL": "https://wikipedia.org/wiki/RC6",
|
|
14732
|
+
"inputType": "string",
|
|
14733
|
+
"outputType": "string",
|
|
14734
|
+
"flowControl": false,
|
|
14735
|
+
"manualBake": false,
|
|
14736
|
+
"args": [
|
|
14737
|
+
{
|
|
14738
|
+
"name": "Key",
|
|
14739
|
+
"type": "toggleString",
|
|
14740
|
+
"value": "",
|
|
14741
|
+
"toggleValues": [
|
|
14742
|
+
"Hex",
|
|
14743
|
+
"UTF8",
|
|
14744
|
+
"Latin1",
|
|
14745
|
+
"Base64"
|
|
14746
|
+
]
|
|
14747
|
+
},
|
|
14748
|
+
{
|
|
14749
|
+
"name": "IV",
|
|
14750
|
+
"type": "toggleString",
|
|
14751
|
+
"value": "",
|
|
14752
|
+
"toggleValues": [
|
|
14753
|
+
"Hex",
|
|
14754
|
+
"UTF8",
|
|
14755
|
+
"Latin1",
|
|
14756
|
+
"Base64"
|
|
14757
|
+
]
|
|
14758
|
+
},
|
|
14759
|
+
{
|
|
14760
|
+
"name": "Mode",
|
|
14761
|
+
"type": "option",
|
|
14762
|
+
"value": [
|
|
14763
|
+
"CBC",
|
|
14764
|
+
"CFB",
|
|
14765
|
+
"OFB",
|
|
14766
|
+
"CTR",
|
|
14767
|
+
"ECB"
|
|
14768
|
+
]
|
|
14769
|
+
},
|
|
14770
|
+
{
|
|
14771
|
+
"name": "Input",
|
|
14772
|
+
"type": "option",
|
|
14773
|
+
"value": [
|
|
14774
|
+
"Hex",
|
|
14775
|
+
"Raw"
|
|
14776
|
+
]
|
|
14777
|
+
},
|
|
14778
|
+
{
|
|
14779
|
+
"name": "Output",
|
|
14780
|
+
"type": "option",
|
|
14781
|
+
"value": [
|
|
14782
|
+
"Raw",
|
|
14783
|
+
"Hex"
|
|
14784
|
+
]
|
|
14785
|
+
},
|
|
14786
|
+
{
|
|
14787
|
+
"name": "Padding",
|
|
14788
|
+
"type": "option",
|
|
14789
|
+
"value": [
|
|
14790
|
+
"PKCS5",
|
|
14791
|
+
"NO",
|
|
14792
|
+
"ZERO",
|
|
14793
|
+
"RANDOM",
|
|
14794
|
+
"BIT"
|
|
14795
|
+
]
|
|
14796
|
+
},
|
|
14797
|
+
{
|
|
14798
|
+
"name": "Word Size",
|
|
14799
|
+
"type": "number",
|
|
14800
|
+
"value": 32,
|
|
14801
|
+
"min": 8,
|
|
14802
|
+
"max": 256,
|
|
14803
|
+
"step": 8
|
|
14804
|
+
},
|
|
14805
|
+
{
|
|
14806
|
+
"name": "Rounds",
|
|
14807
|
+
"type": "number",
|
|
14808
|
+
"value": 20,
|
|
14809
|
+
"min": 1,
|
|
14810
|
+
"max": 255
|
|
14811
|
+
}
|
|
14812
|
+
]
|
|
14813
|
+
},
|
|
14814
|
+
"RC6 Encrypt": {
|
|
14815
|
+
"module": "Ciphers",
|
|
14816
|
+
"description": "RC6 is a symmetric key block cipher derived from RC5. It was designed by Ron Rivest, Matt Robshaw, Ray Sidney, and Yiqun Lisa Yin to meet the requirements of the AES competition, and was one of the five finalists.<br><br>RC6 is parameterised as RC6-w/r/b where w is word size in bits (any multiple of 8 from 8-256), r is the number of rounds (1-255), and b is the key length in bytes. The standard AES submission uses w=32, r=20. Common word sizes: 8, 16, 32 (standard), 64, 128.<br><br><b>IV:</b> The Initialisation Vector should be 4*w/8 bytes (e.g. 16 bytes for w=32). If not entered, it will default to null bytes.<br><br><b>Padding:</b> In CBC and ECB mode, the PKCS#7 padding scheme is used.",
|
|
14817
|
+
"infoURL": "https://wikipedia.org/wiki/RC6",
|
|
14818
|
+
"inputType": "string",
|
|
14819
|
+
"outputType": "string",
|
|
14820
|
+
"flowControl": false,
|
|
14821
|
+
"manualBake": false,
|
|
14822
|
+
"args": [
|
|
14823
|
+
{
|
|
14824
|
+
"name": "Key",
|
|
14825
|
+
"type": "toggleString",
|
|
14826
|
+
"value": "",
|
|
14827
|
+
"toggleValues": [
|
|
14828
|
+
"Hex",
|
|
14829
|
+
"UTF8",
|
|
14830
|
+
"Latin1",
|
|
14831
|
+
"Base64"
|
|
14832
|
+
]
|
|
14833
|
+
},
|
|
14834
|
+
{
|
|
14835
|
+
"name": "IV",
|
|
14836
|
+
"type": "toggleString",
|
|
14837
|
+
"value": "",
|
|
14838
|
+
"toggleValues": [
|
|
14839
|
+
"Hex",
|
|
14840
|
+
"UTF8",
|
|
14841
|
+
"Latin1",
|
|
14842
|
+
"Base64"
|
|
14843
|
+
]
|
|
14844
|
+
},
|
|
14845
|
+
{
|
|
14846
|
+
"name": "Mode",
|
|
14847
|
+
"type": "option",
|
|
14848
|
+
"value": [
|
|
14849
|
+
"CBC",
|
|
14850
|
+
"CFB",
|
|
14851
|
+
"OFB",
|
|
14852
|
+
"CTR",
|
|
14853
|
+
"ECB"
|
|
14854
|
+
]
|
|
14855
|
+
},
|
|
14856
|
+
{
|
|
14857
|
+
"name": "Input",
|
|
14858
|
+
"type": "option",
|
|
14859
|
+
"value": [
|
|
14860
|
+
"Raw",
|
|
14861
|
+
"Hex"
|
|
14862
|
+
]
|
|
14863
|
+
},
|
|
14864
|
+
{
|
|
14865
|
+
"name": "Output",
|
|
14866
|
+
"type": "option",
|
|
14867
|
+
"value": [
|
|
14868
|
+
"Hex",
|
|
14869
|
+
"Raw"
|
|
14870
|
+
]
|
|
14871
|
+
},
|
|
14872
|
+
{
|
|
14873
|
+
"name": "Padding",
|
|
14874
|
+
"type": "option",
|
|
14875
|
+
"value": [
|
|
14876
|
+
"PKCS5",
|
|
14877
|
+
"NO",
|
|
14878
|
+
"ZERO",
|
|
14879
|
+
"RANDOM",
|
|
14880
|
+
"BIT"
|
|
14881
|
+
]
|
|
14882
|
+
},
|
|
14883
|
+
{
|
|
14884
|
+
"name": "Word Size",
|
|
14885
|
+
"type": "number",
|
|
14886
|
+
"value": 32,
|
|
14887
|
+
"min": 8,
|
|
14888
|
+
"max": 256,
|
|
14889
|
+
"step": 8
|
|
14890
|
+
},
|
|
14891
|
+
{
|
|
14892
|
+
"name": "Rounds",
|
|
14893
|
+
"type": "number",
|
|
14894
|
+
"value": 20,
|
|
14895
|
+
"min": 1,
|
|
14896
|
+
"max": 255
|
|
14897
|
+
}
|
|
14898
|
+
]
|
|
14899
|
+
},
|
|
14426
14900
|
"RIPEMD": {
|
|
14427
14901
|
"module": "Crypto",
|
|
14428
14902
|
"description": "RIPEMD (RACE Integrity Primitives Evaluation Message Digest) is a family of cryptographic hash functions developed in Leuven, Belgium, by Hans Dobbertin, Antoon Bosselaers and Bart Preneel at the COSIC research group at the Katholieke Universiteit Leuven, and first published in 1996.<br><br>RIPEMD was based upon the design principles used in MD4, and is similar in performance to the more popular SHA-1.<br><br>",
|
|
@@ -15008,7 +15482,7 @@
|
|
|
15008
15482
|
},
|
|
15009
15483
|
{
|
|
15010
15484
|
"name": "Email address",
|
|
15011
|
-
"value": "(?:[\\u00A0-\\uD7FF\\uE000-\\uFFFFa-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\\.[\\u00A0-\\uD7FF\\uE000-\\uFFFFa-z0-9!#$%&'*+/=?^_`{|}~-]+)*|\"(?:[\\x01-\\x08\\x0b\\x0c\\x0e-\\x1f\\x21\\x23-\\x5b\\x5d-\\x7f]
|
|
15485
|
+
"value": "(?:[\\u00A0-\\uD7FF\\uE000-\\uFFFFa-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\\.[\\u00A0-\\uD7FF\\uE000-\\uFFFFa-z0-9!#$%&'*+/=?^_`{|}~-]+)*|\"(?:[\\x01-\\x08\\x0b\\x0c\\x0e-\\x1f\\x21\\x23-\\x5b\\x5d-\\x7f]|\\\\[\\x01-\\x09\\x0b\\x0c\\x0e-\\x7f])*\")@(?:(?:[\\u00A0-\\uD7FF\\uE000-\\uFFFFa-z0-9](?:[\\u00A0-\\uD7FF\\uE000-\\uFFFFa-z0-9-]*[\\u00A0-\\uD7FF\\uE000-\\uFFFFa-z0-9])?\\.)+[\\u00A0-\\uD7FF\\uE000-\\uFFFFa-z0-9](?:[\\u00A0-\\uD7FF\\uE000-\\uFFFFa-z0-9-]*[\\u00A0-\\uD7FF\\uE000-\\uFFFFa-z0-9])?|\\[(?:(?:(2(5[0-5]|[0-4][0-9])|1[0-9][0-9]|[1-9]?[0-9]))\\.){3}(?:(2(5[0-5]|[0-4][0-9])|1[0-9][0-9]|[1-9]?[0-9]))\\])"
|
|
15012
15486
|
},
|
|
15013
15487
|
{
|
|
15014
15488
|
"name": "URL",
|
|
@@ -15232,6 +15706,11 @@
|
|
|
15232
15706
|
"name": "Enable syntax highlighting",
|
|
15233
15707
|
"type": "boolean",
|
|
15234
15708
|
"value": true
|
|
15709
|
+
},
|
|
15710
|
+
{
|
|
15711
|
+
"name": "Open links in new tab.",
|
|
15712
|
+
"type": "boolean",
|
|
15713
|
+
"value": false
|
|
15235
15714
|
}
|
|
15236
15715
|
]
|
|
15237
15716
|
},
|
|
@@ -18217,6 +18696,26 @@
|
|
|
18217
18696
|
}
|
|
18218
18697
|
]
|
|
18219
18698
|
},
|
|
18699
|
+
"Text-Integer Conversion": {
|
|
18700
|
+
"module": "Default",
|
|
18701
|
+
"description": "Converts between text strings and large integers (decimal or hexadecimal).<br><br>Text is interpreted as a big-endian sequence of character codes. For example:<br>ABC is 0x414243 (hex) is 4276803 (decimal)<br><b>Input format detection:</b><br>Decimal: digits 0-9 only<br>Hexadecimal: 0x... prefix<br>Quoted or unquoted text: treated as string<br><br><b>Character limitations:</b><br>Text input may only contain ASCII and Latin-1 characters (code point < 256).<br>Multi-byte Unicode characters will generate an error.<br><br>.",
|
|
18702
|
+
"infoURL": "https://wikipedia.org/wiki/Endianness",
|
|
18703
|
+
"inputType": "string",
|
|
18704
|
+
"outputType": "string",
|
|
18705
|
+
"flowControl": false,
|
|
18706
|
+
"manualBake": false,
|
|
18707
|
+
"args": [
|
|
18708
|
+
{
|
|
18709
|
+
"name": "Output format",
|
|
18710
|
+
"type": "option",
|
|
18711
|
+
"value": [
|
|
18712
|
+
"String",
|
|
18713
|
+
"Decimal",
|
|
18714
|
+
"Hexadecimal"
|
|
18715
|
+
]
|
|
18716
|
+
}
|
|
18717
|
+
]
|
|
18718
|
+
},
|
|
18220
18719
|
"To BCD": {
|
|
18221
18720
|
"module": "Default",
|
|
18222
18721
|
"description": "Binary-Coded Decimal (BCD) is a class of binary encodings of decimal numbers where each decimal digit is represented by a fixed number of bits, usually four or eight. Special bit patterns are sometimes used for a sign",
|
|
@@ -19228,6 +19727,7 @@
|
|
|
19228
19727
|
"America/Coral_Harbour",
|
|
19229
19728
|
"America/Cordoba",
|
|
19230
19729
|
"America/Costa_Rica",
|
|
19730
|
+
"America/Coyhaique",
|
|
19231
19731
|
"America/Creston",
|
|
19232
19732
|
"America/Cuiaba",
|
|
19233
19733
|
"America/Curacao",
|
|
@@ -19836,6 +20336,7 @@
|
|
|
19836
20336
|
"America/Coral_Harbour",
|
|
19837
20337
|
"America/Cordoba",
|
|
19838
20338
|
"America/Costa_Rica",
|
|
20339
|
+
"America/Coyhaique",
|
|
19839
20340
|
"America/Creston",
|
|
19840
20341
|
"America/Cuiaba",
|
|
19841
20342
|
"America/Curacao",
|
|
@@ -21136,6 +21637,29 @@
|
|
|
21136
21637
|
"U+"
|
|
21137
21638
|
]
|
|
21138
21639
|
}
|
|
21640
|
+
],
|
|
21641
|
+
"checks": [
|
|
21642
|
+
{
|
|
21643
|
+
"pattern": "\\\\u(?:[\\da-f]{4,6})",
|
|
21644
|
+
"flags": "i",
|
|
21645
|
+
"args": [
|
|
21646
|
+
"\\u"
|
|
21647
|
+
]
|
|
21648
|
+
},
|
|
21649
|
+
{
|
|
21650
|
+
"pattern": "%u(?:[\\da-f]{4,6})",
|
|
21651
|
+
"flags": "i",
|
|
21652
|
+
"args": [
|
|
21653
|
+
"%u"
|
|
21654
|
+
]
|
|
21655
|
+
},
|
|
21656
|
+
{
|
|
21657
|
+
"pattern": "U\\+(?:[\\da-f]{4,6})",
|
|
21658
|
+
"flags": "i",
|
|
21659
|
+
"args": [
|
|
21660
|
+
"U+"
|
|
21661
|
+
]
|
|
21662
|
+
}
|
|
21139
21663
|
]
|
|
21140
21664
|
},
|
|
21141
21665
|
"Unicode Text Format": {
|