cyberchef 9.34.2 → 9.36.1

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.
@@ -5548,6 +5548,22 @@
5548
5548
  }
5549
5549
  ]
5550
5550
  },
5551
+ "From Base45": {
5552
+ "module": "Default",
5553
+ "description": "Base45 is a notation for encoding arbitrary byte data using a restricted set of symbols that can be conveniently used by humans and processed by computers. The high number base results in shorter strings than with the decimal or hexadecimal system. Base45 is optimized for usage with QR codes.",
5554
+ "infoURL": "https://wikipedia.org/wiki/List_of_numeral_systems",
5555
+ "inputType": "string",
5556
+ "outputType": "byteArray",
5557
+ "flowControl": false,
5558
+ "manualBake": false,
5559
+ "args": [
5560
+ {
5561
+ "name": "Alphabet",
5562
+ "type": "string",
5563
+ "value": "0-9A-Z $%*+\\-./:"
5564
+ }
5565
+ ]
5566
+ },
5551
5567
  "From Base58": {
5552
5568
  "module": "Default",
5553
5569
  "description": "Base58 (similar to Base64) is a notation for encoding arbitrary byte data. It differs from Base64 by removing easily misread characters (i.e. l, I, 0 and O) to improve human readability.<br><br>This operation decodes data from an ASCII string (with an alphabet of your choosing, presets included) back into its raw form.<br><br>e.g. <code>StV1DL6CwTryKyV</code> becomes <code>hello world</code><br><br>Base58 is commonly used in cryptocurrencies (Bitcoin, Ripple, etc).",
@@ -10777,185 +10793,1244 @@
10777
10793
  }
10778
10794
  ]
10779
10795
  },
10780
- "SM3": {
10781
- "module": "Crypto",
10782
- "description": "SM3 is a cryptographic hash function used in the Chinese National Standard. SM3 is mainly used in digital signatures, message authentication codes, and pseudorandom number generators. The message digest algorithm consists, by default, of 64 rounds and length of 256.",
10783
- "infoURL": "https://wikipedia.org/wiki/SM3_(hash_function)",
10784
- "inputType": "ArrayBuffer",
10785
- "outputType": "string",
10786
- "flowControl": false,
10787
- "manualBake": false,
10788
- "args": [
10789
- {
10790
- "name": "Length",
10791
- "type": "number",
10792
- "value": 256
10793
- },
10794
- {
10795
- "name": "Rounds",
10796
- "type": "number",
10797
- "value": 64,
10798
- "min": 16
10799
- }
10800
- ]
10801
- },
10802
- "SQL Beautify": {
10803
- "module": "Code",
10804
- "description": "Indents and prettifies Structured Query Language (SQL) code.",
10805
- "infoURL": null,
10806
- "inputType": "string",
10807
- "outputType": "string",
10808
- "flowControl": false,
10809
- "manualBake": false,
10810
- "args": [
10811
- {
10812
- "name": "Indent string",
10813
- "type": "binaryShortString",
10814
- "value": "\\t"
10815
- }
10816
- ]
10817
- },
10818
- "SQL Minify": {
10819
- "module": "Code",
10820
- "description": "Compresses Structured Query Language (SQL) code.",
10821
- "infoURL": null,
10822
- "inputType": "string",
10823
- "outputType": "string",
10824
- "flowControl": false,
10825
- "manualBake": false,
10826
- "args": []
10827
- },
10828
- "SSDEEP": {
10829
- "module": "Crypto",
10830
- "description": "SSDEEP is a program for computing context triggered piecewise hashes (CTPH). Also called fuzzy hashes, CTPH can match inputs that have homologies. Such inputs have sequences of identical bytes in the same order, although bytes in between these sequences may be different in both content and length.<br><br>SSDEEP hashes are now widely used for simple identification purposes (e.g. the 'Basic Properties' section in VirusTotal). Although 'better' fuzzy hashes are available, SSDEEP is still one of the primary choices because of its speed and being a de facto standard.<br><br>This operation is fundamentally the same as the CTPH operation, however their outputs differ in format.",
10831
- "infoURL": "https://forensicswiki.xyz/wiki/index.php?title=Ssdeep",
10796
+ "SIGABA": {
10797
+ "module": "Bletchley",
10798
+ "description": "Encipher/decipher with the WW2 SIGABA machine. <br><br>SIGABA, otherwise known as ECM Mark II, was used by the United States for message encryption during WW2 up to the 1950s. It was developed in the 1930s by the US Army and Navy, and has up to this day never been broken. Consisting of 15 rotors: 5 cipher rotors and 10 rotors (5 control rotors and 5 index rotors) controlling the stepping of the cipher rotors, the rotor stepping for SIGABA is much more complex than other rotor machines of its time, such as Enigma. All example rotor wirings are random example sets.<br><br>To configure rotor wirings, for the cipher and control rotors enter a string of letters which map from A to Z, and for the index rotors enter a sequence of numbers which map from 0 to 9. Note that encryption is not the same as decryption, so first choose the desired mode. <br><br> Note: Whilst this has been tested against other software emulators, it has not been tested against hardware.",
10799
+ "infoURL": "https://wikipedia.org/wiki/SIGABA",
10832
10800
  "inputType": "string",
10833
10801
  "outputType": "string",
10834
10802
  "flowControl": false,
10835
10803
  "manualBake": false,
10836
- "args": []
10837
- },
10838
- "SUB": {
10839
- "module": "Default",
10840
- "description": "SUB the input with the given key (e.g. <code>fe023da5</code>), MOD 255",
10841
- "infoURL": "https://wikipedia.org/wiki/Bitwise_operation#Bitwise_operators",
10842
- "inputType": "byteArray",
10843
- "outputType": "byteArray",
10844
- "flowControl": false,
10845
- "manualBake": false,
10846
10804
  "args": [
10847
10805
  {
10848
- "name": "Key",
10849
- "type": "toggleString",
10850
- "value": "",
10851
- "toggleValues": [
10852
- "Hex",
10853
- "Decimal",
10854
- "Binary",
10855
- "Base64",
10856
- "UTF8",
10857
- "Latin1"
10806
+ "name": "1st (left-hand) cipher rotor",
10807
+ "type": "editableOption",
10808
+ "value": [
10809
+ {
10810
+ "name": "Example 1",
10811
+ "value": "SRGWANHPJZFXVIDQCEUKBYOLMT"
10812
+ },
10813
+ {
10814
+ "name": "Example 2",
10815
+ "value": "THQEFSAZVKJYULBODCPXNIMWRG"
10816
+ },
10817
+ {
10818
+ "name": "Example 3",
10819
+ "value": "XDTUYLEVFNQZBPOGIRCSMHWKAJ"
10820
+ },
10821
+ {
10822
+ "name": "Example 4",
10823
+ "value": "LOHDMCWUPSTNGVXYFJREQIKBZA"
10824
+ },
10825
+ {
10826
+ "name": "Example 5",
10827
+ "value": "ERXWNZQIJYLVOFUMSGHTCKPBDA"
10828
+ },
10829
+ {
10830
+ "name": "Example 6",
10831
+ "value": "FQECYHJIOUMDZVPSLKRTGWXBAN"
10832
+ },
10833
+ {
10834
+ "name": "Example 7",
10835
+ "value": "TBYIUMKZDJSOPEWXVANHLCFQGR"
10836
+ },
10837
+ {
10838
+ "name": "Example 8",
10839
+ "value": "QZUPDTFNYIAOMLEBWJXCGHKRSV"
10840
+ },
10841
+ {
10842
+ "name": "Example 9",
10843
+ "value": "CZWNHEMPOVXLKRSIDGJFYBTQAU"
10844
+ },
10845
+ {
10846
+ "name": "Example 10",
10847
+ "value": "ENPXJVKYQBFZTICAGMOHWRLDUS"
10848
+ }
10858
10849
  ]
10859
- }
10860
- ]
10861
- },
10862
- "Scan for Embedded Files": {
10863
- "module": "Default",
10864
- "description": "Scans the data for potential embedded files by looking for magic bytes at all offsets. This operation is prone to false positives.<br><br>WARNING: Files over about 100KB in size will take a VERY long time to process.",
10865
- "infoURL": "https://wikipedia.org/wiki/List_of_file_signatures",
10866
- "inputType": "ArrayBuffer",
10867
- "outputType": "string",
10868
- "flowControl": false,
10869
- "manualBake": false,
10870
- "args": [
10871
- {
10872
- "name": "Images",
10873
- "type": "boolean",
10874
- "value": true
10875
- },
10876
- {
10877
- "name": "Video",
10878
- "type": "boolean",
10879
- "value": true
10880
- },
10881
- {
10882
- "name": "Audio",
10883
- "type": "boolean",
10884
- "value": true
10885
- },
10886
- {
10887
- "name": "Documents",
10888
- "type": "boolean",
10889
- "value": true
10890
- },
10891
- {
10892
- "name": "Applications",
10893
- "type": "boolean",
10894
- "value": true
10895
10850
  },
10896
10851
  {
10897
- "name": "Archives",
10898
- "type": "boolean",
10899
- "value": true
10900
- },
10901
- {
10902
- "name": "Miscellaneous",
10852
+ "name": "1st cipher rotor reversed",
10903
10853
  "type": "boolean",
10904
10854
  "value": false
10905
- }
10906
- ]
10907
- },
10908
- "Scatter chart": {
10909
- "module": "Charts",
10910
- "description": "Plots two-variable data as single points on a graph.",
10911
- "infoURL": "https://wikipedia.org/wiki/Scatter_plot",
10912
- "inputType": "string",
10913
- "outputType": "html",
10914
- "flowControl": false,
10915
- "manualBake": false,
10916
- "args": [
10855
+ },
10917
10856
  {
10918
- "name": "Record delimiter",
10857
+ "name": "1st cipher rotor intial value",
10919
10858
  "type": "option",
10920
10859
  "value": [
10921
- "Line feed",
10922
- "CRLF"
10860
+ "A",
10861
+ "B",
10862
+ "C",
10863
+ "D",
10864
+ "E",
10865
+ "F",
10866
+ "G",
10867
+ "H",
10868
+ "I",
10869
+ "J",
10870
+ "K",
10871
+ "L",
10872
+ "M",
10873
+ "N",
10874
+ "O",
10875
+ "P",
10876
+ "Q",
10877
+ "R",
10878
+ "S",
10879
+ "T",
10880
+ "U",
10881
+ "V",
10882
+ "W",
10883
+ "X",
10884
+ "Y",
10885
+ "Z"
10923
10886
  ]
10924
10887
  },
10925
10888
  {
10926
- "name": "Field delimiter",
10927
- "type": "option",
10889
+ "name": "2nd cipher rotor",
10890
+ "type": "editableOption",
10928
10891
  "value": [
10929
- "Space",
10930
- "Comma",
10931
- "Semi-colon",
10932
- "Colon",
10933
- "Tab"
10892
+ {
10893
+ "name": "Example 1",
10894
+ "value": "SRGWANHPJZFXVIDQCEUKBYOLMT"
10895
+ },
10896
+ {
10897
+ "name": "Example 2",
10898
+ "value": "THQEFSAZVKJYULBODCPXNIMWRG"
10899
+ },
10900
+ {
10901
+ "name": "Example 3",
10902
+ "value": "XDTUYLEVFNQZBPOGIRCSMHWKAJ"
10903
+ },
10904
+ {
10905
+ "name": "Example 4",
10906
+ "value": "LOHDMCWUPSTNGVXYFJREQIKBZA"
10907
+ },
10908
+ {
10909
+ "name": "Example 5",
10910
+ "value": "ERXWNZQIJYLVOFUMSGHTCKPBDA"
10911
+ },
10912
+ {
10913
+ "name": "Example 6",
10914
+ "value": "FQECYHJIOUMDZVPSLKRTGWXBAN"
10915
+ },
10916
+ {
10917
+ "name": "Example 7",
10918
+ "value": "TBYIUMKZDJSOPEWXVANHLCFQGR"
10919
+ },
10920
+ {
10921
+ "name": "Example 8",
10922
+ "value": "QZUPDTFNYIAOMLEBWJXCGHKRSV"
10923
+ },
10924
+ {
10925
+ "name": "Example 9",
10926
+ "value": "CZWNHEMPOVXLKRSIDGJFYBTQAU"
10927
+ },
10928
+ {
10929
+ "name": "Example 10",
10930
+ "value": "ENPXJVKYQBFZTICAGMOHWRLDUS"
10931
+ }
10934
10932
  ]
10935
10933
  },
10936
10934
  {
10937
- "name": "Use column headers as labels",
10935
+ "name": "2nd cipher rotor reversed",
10938
10936
  "type": "boolean",
10939
- "value": true
10940
- },
10941
- {
10942
- "name": "X label",
10943
- "type": "string",
10944
- "value": ""
10945
- },
10946
- {
10947
- "name": "Y label",
10948
- "type": "string",
10949
- "value": ""
10950
- },
10951
- {
10952
- "name": "Colour",
10953
- "type": "string",
10954
- "value": "black"
10937
+ "value": false
10955
10938
  },
10956
10939
  {
10957
- "name": "Point radius",
10958
- "type": "number",
10940
+ "name": "2nd cipher rotor intial value",
10941
+ "type": "option",
10942
+ "value": [
10943
+ "A",
10944
+ "B",
10945
+ "C",
10946
+ "D",
10947
+ "E",
10948
+ "F",
10949
+ "G",
10950
+ "H",
10951
+ "I",
10952
+ "J",
10953
+ "K",
10954
+ "L",
10955
+ "M",
10956
+ "N",
10957
+ "O",
10958
+ "P",
10959
+ "Q",
10960
+ "R",
10961
+ "S",
10962
+ "T",
10963
+ "U",
10964
+ "V",
10965
+ "W",
10966
+ "X",
10967
+ "Y",
10968
+ "Z"
10969
+ ]
10970
+ },
10971
+ {
10972
+ "name": "3rd (middle) cipher rotor",
10973
+ "type": "editableOption",
10974
+ "value": [
10975
+ {
10976
+ "name": "Example 1",
10977
+ "value": "SRGWANHPJZFXVIDQCEUKBYOLMT"
10978
+ },
10979
+ {
10980
+ "name": "Example 2",
10981
+ "value": "THQEFSAZVKJYULBODCPXNIMWRG"
10982
+ },
10983
+ {
10984
+ "name": "Example 3",
10985
+ "value": "XDTUYLEVFNQZBPOGIRCSMHWKAJ"
10986
+ },
10987
+ {
10988
+ "name": "Example 4",
10989
+ "value": "LOHDMCWUPSTNGVXYFJREQIKBZA"
10990
+ },
10991
+ {
10992
+ "name": "Example 5",
10993
+ "value": "ERXWNZQIJYLVOFUMSGHTCKPBDA"
10994
+ },
10995
+ {
10996
+ "name": "Example 6",
10997
+ "value": "FQECYHJIOUMDZVPSLKRTGWXBAN"
10998
+ },
10999
+ {
11000
+ "name": "Example 7",
11001
+ "value": "TBYIUMKZDJSOPEWXVANHLCFQGR"
11002
+ },
11003
+ {
11004
+ "name": "Example 8",
11005
+ "value": "QZUPDTFNYIAOMLEBWJXCGHKRSV"
11006
+ },
11007
+ {
11008
+ "name": "Example 9",
11009
+ "value": "CZWNHEMPOVXLKRSIDGJFYBTQAU"
11010
+ },
11011
+ {
11012
+ "name": "Example 10",
11013
+ "value": "ENPXJVKYQBFZTICAGMOHWRLDUS"
11014
+ }
11015
+ ]
11016
+ },
11017
+ {
11018
+ "name": "3rd cipher rotor reversed",
11019
+ "type": "boolean",
11020
+ "value": false
11021
+ },
11022
+ {
11023
+ "name": "3rd cipher rotor intial value",
11024
+ "type": "option",
11025
+ "value": [
11026
+ "A",
11027
+ "B",
11028
+ "C",
11029
+ "D",
11030
+ "E",
11031
+ "F",
11032
+ "G",
11033
+ "H",
11034
+ "I",
11035
+ "J",
11036
+ "K",
11037
+ "L",
11038
+ "M",
11039
+ "N",
11040
+ "O",
11041
+ "P",
11042
+ "Q",
11043
+ "R",
11044
+ "S",
11045
+ "T",
11046
+ "U",
11047
+ "V",
11048
+ "W",
11049
+ "X",
11050
+ "Y",
11051
+ "Z"
11052
+ ]
11053
+ },
11054
+ {
11055
+ "name": "4th cipher rotor",
11056
+ "type": "editableOption",
11057
+ "value": [
11058
+ {
11059
+ "name": "Example 1",
11060
+ "value": "SRGWANHPJZFXVIDQCEUKBYOLMT"
11061
+ },
11062
+ {
11063
+ "name": "Example 2",
11064
+ "value": "THQEFSAZVKJYULBODCPXNIMWRG"
11065
+ },
11066
+ {
11067
+ "name": "Example 3",
11068
+ "value": "XDTUYLEVFNQZBPOGIRCSMHWKAJ"
11069
+ },
11070
+ {
11071
+ "name": "Example 4",
11072
+ "value": "LOHDMCWUPSTNGVXYFJREQIKBZA"
11073
+ },
11074
+ {
11075
+ "name": "Example 5",
11076
+ "value": "ERXWNZQIJYLVOFUMSGHTCKPBDA"
11077
+ },
11078
+ {
11079
+ "name": "Example 6",
11080
+ "value": "FQECYHJIOUMDZVPSLKRTGWXBAN"
11081
+ },
11082
+ {
11083
+ "name": "Example 7",
11084
+ "value": "TBYIUMKZDJSOPEWXVANHLCFQGR"
11085
+ },
11086
+ {
11087
+ "name": "Example 8",
11088
+ "value": "QZUPDTFNYIAOMLEBWJXCGHKRSV"
11089
+ },
11090
+ {
11091
+ "name": "Example 9",
11092
+ "value": "CZWNHEMPOVXLKRSIDGJFYBTQAU"
11093
+ },
11094
+ {
11095
+ "name": "Example 10",
11096
+ "value": "ENPXJVKYQBFZTICAGMOHWRLDUS"
11097
+ }
11098
+ ]
11099
+ },
11100
+ {
11101
+ "name": "4th cipher rotor reversed",
11102
+ "type": "boolean",
11103
+ "value": false
11104
+ },
11105
+ {
11106
+ "name": "4th cipher rotor intial value",
11107
+ "type": "option",
11108
+ "value": [
11109
+ "A",
11110
+ "B",
11111
+ "C",
11112
+ "D",
11113
+ "E",
11114
+ "F",
11115
+ "G",
11116
+ "H",
11117
+ "I",
11118
+ "J",
11119
+ "K",
11120
+ "L",
11121
+ "M",
11122
+ "N",
11123
+ "O",
11124
+ "P",
11125
+ "Q",
11126
+ "R",
11127
+ "S",
11128
+ "T",
11129
+ "U",
11130
+ "V",
11131
+ "W",
11132
+ "X",
11133
+ "Y",
11134
+ "Z"
11135
+ ]
11136
+ },
11137
+ {
11138
+ "name": "5th (right-hand) cipher rotor",
11139
+ "type": "editableOption",
11140
+ "value": [
11141
+ {
11142
+ "name": "Example 1",
11143
+ "value": "SRGWANHPJZFXVIDQCEUKBYOLMT"
11144
+ },
11145
+ {
11146
+ "name": "Example 2",
11147
+ "value": "THQEFSAZVKJYULBODCPXNIMWRG"
11148
+ },
11149
+ {
11150
+ "name": "Example 3",
11151
+ "value": "XDTUYLEVFNQZBPOGIRCSMHWKAJ"
11152
+ },
11153
+ {
11154
+ "name": "Example 4",
11155
+ "value": "LOHDMCWUPSTNGVXYFJREQIKBZA"
11156
+ },
11157
+ {
11158
+ "name": "Example 5",
11159
+ "value": "ERXWNZQIJYLVOFUMSGHTCKPBDA"
11160
+ },
11161
+ {
11162
+ "name": "Example 6",
11163
+ "value": "FQECYHJIOUMDZVPSLKRTGWXBAN"
11164
+ },
11165
+ {
11166
+ "name": "Example 7",
11167
+ "value": "TBYIUMKZDJSOPEWXVANHLCFQGR"
11168
+ },
11169
+ {
11170
+ "name": "Example 8",
11171
+ "value": "QZUPDTFNYIAOMLEBWJXCGHKRSV"
11172
+ },
11173
+ {
11174
+ "name": "Example 9",
11175
+ "value": "CZWNHEMPOVXLKRSIDGJFYBTQAU"
11176
+ },
11177
+ {
11178
+ "name": "Example 10",
11179
+ "value": "ENPXJVKYQBFZTICAGMOHWRLDUS"
11180
+ }
11181
+ ]
11182
+ },
11183
+ {
11184
+ "name": "5th cipher rotor reversed",
11185
+ "type": "boolean",
11186
+ "value": false
11187
+ },
11188
+ {
11189
+ "name": "5th cipher rotor intial value",
11190
+ "type": "option",
11191
+ "value": [
11192
+ "A",
11193
+ "B",
11194
+ "C",
11195
+ "D",
11196
+ "E",
11197
+ "F",
11198
+ "G",
11199
+ "H",
11200
+ "I",
11201
+ "J",
11202
+ "K",
11203
+ "L",
11204
+ "M",
11205
+ "N",
11206
+ "O",
11207
+ "P",
11208
+ "Q",
11209
+ "R",
11210
+ "S",
11211
+ "T",
11212
+ "U",
11213
+ "V",
11214
+ "W",
11215
+ "X",
11216
+ "Y",
11217
+ "Z"
11218
+ ]
11219
+ },
11220
+ {
11221
+ "name": "1st (left-hand) control rotor",
11222
+ "type": "editableOption",
11223
+ "value": [
11224
+ {
11225
+ "name": "Example 1",
11226
+ "value": "SRGWANHPJZFXVIDQCEUKBYOLMT"
11227
+ },
11228
+ {
11229
+ "name": "Example 2",
11230
+ "value": "THQEFSAZVKJYULBODCPXNIMWRG"
11231
+ },
11232
+ {
11233
+ "name": "Example 3",
11234
+ "value": "XDTUYLEVFNQZBPOGIRCSMHWKAJ"
11235
+ },
11236
+ {
11237
+ "name": "Example 4",
11238
+ "value": "LOHDMCWUPSTNGVXYFJREQIKBZA"
11239
+ },
11240
+ {
11241
+ "name": "Example 5",
11242
+ "value": "ERXWNZQIJYLVOFUMSGHTCKPBDA"
11243
+ },
11244
+ {
11245
+ "name": "Example 6",
11246
+ "value": "FQECYHJIOUMDZVPSLKRTGWXBAN"
11247
+ },
11248
+ {
11249
+ "name": "Example 7",
11250
+ "value": "TBYIUMKZDJSOPEWXVANHLCFQGR"
11251
+ },
11252
+ {
11253
+ "name": "Example 8",
11254
+ "value": "QZUPDTFNYIAOMLEBWJXCGHKRSV"
11255
+ },
11256
+ {
11257
+ "name": "Example 9",
11258
+ "value": "CZWNHEMPOVXLKRSIDGJFYBTQAU"
11259
+ },
11260
+ {
11261
+ "name": "Example 10",
11262
+ "value": "ENPXJVKYQBFZTICAGMOHWRLDUS"
11263
+ }
11264
+ ]
11265
+ },
11266
+ {
11267
+ "name": "1st control rotor reversed",
11268
+ "type": "boolean",
11269
+ "value": false
11270
+ },
11271
+ {
11272
+ "name": "1st control rotor intial value",
11273
+ "type": "option",
11274
+ "value": [
11275
+ "A",
11276
+ "B",
11277
+ "C",
11278
+ "D",
11279
+ "E",
11280
+ "F",
11281
+ "G",
11282
+ "H",
11283
+ "I",
11284
+ "J",
11285
+ "K",
11286
+ "L",
11287
+ "M",
11288
+ "N",
11289
+ "O",
11290
+ "P",
11291
+ "Q",
11292
+ "R",
11293
+ "S",
11294
+ "T",
11295
+ "U",
11296
+ "V",
11297
+ "W",
11298
+ "X",
11299
+ "Y",
11300
+ "Z"
11301
+ ]
11302
+ },
11303
+ {
11304
+ "name": "2nd control rotor",
11305
+ "type": "editableOption",
11306
+ "value": [
11307
+ {
11308
+ "name": "Example 1",
11309
+ "value": "SRGWANHPJZFXVIDQCEUKBYOLMT"
11310
+ },
11311
+ {
11312
+ "name": "Example 2",
11313
+ "value": "THQEFSAZVKJYULBODCPXNIMWRG"
11314
+ },
11315
+ {
11316
+ "name": "Example 3",
11317
+ "value": "XDTUYLEVFNQZBPOGIRCSMHWKAJ"
11318
+ },
11319
+ {
11320
+ "name": "Example 4",
11321
+ "value": "LOHDMCWUPSTNGVXYFJREQIKBZA"
11322
+ },
11323
+ {
11324
+ "name": "Example 5",
11325
+ "value": "ERXWNZQIJYLVOFUMSGHTCKPBDA"
11326
+ },
11327
+ {
11328
+ "name": "Example 6",
11329
+ "value": "FQECYHJIOUMDZVPSLKRTGWXBAN"
11330
+ },
11331
+ {
11332
+ "name": "Example 7",
11333
+ "value": "TBYIUMKZDJSOPEWXVANHLCFQGR"
11334
+ },
11335
+ {
11336
+ "name": "Example 8",
11337
+ "value": "QZUPDTFNYIAOMLEBWJXCGHKRSV"
11338
+ },
11339
+ {
11340
+ "name": "Example 9",
11341
+ "value": "CZWNHEMPOVXLKRSIDGJFYBTQAU"
11342
+ },
11343
+ {
11344
+ "name": "Example 10",
11345
+ "value": "ENPXJVKYQBFZTICAGMOHWRLDUS"
11346
+ }
11347
+ ]
11348
+ },
11349
+ {
11350
+ "name": "2nd control rotor reversed",
11351
+ "type": "boolean",
11352
+ "value": false
11353
+ },
11354
+ {
11355
+ "name": "2nd control rotor intial value",
11356
+ "type": "option",
11357
+ "value": [
11358
+ "A",
11359
+ "B",
11360
+ "C",
11361
+ "D",
11362
+ "E",
11363
+ "F",
11364
+ "G",
11365
+ "H",
11366
+ "I",
11367
+ "J",
11368
+ "K",
11369
+ "L",
11370
+ "M",
11371
+ "N",
11372
+ "O",
11373
+ "P",
11374
+ "Q",
11375
+ "R",
11376
+ "S",
11377
+ "T",
11378
+ "U",
11379
+ "V",
11380
+ "W",
11381
+ "X",
11382
+ "Y",
11383
+ "Z"
11384
+ ]
11385
+ },
11386
+ {
11387
+ "name": "3rd (middle) control rotor",
11388
+ "type": "editableOption",
11389
+ "value": [
11390
+ {
11391
+ "name": "Example 1",
11392
+ "value": "SRGWANHPJZFXVIDQCEUKBYOLMT"
11393
+ },
11394
+ {
11395
+ "name": "Example 2",
11396
+ "value": "THQEFSAZVKJYULBODCPXNIMWRG"
11397
+ },
11398
+ {
11399
+ "name": "Example 3",
11400
+ "value": "XDTUYLEVFNQZBPOGIRCSMHWKAJ"
11401
+ },
11402
+ {
11403
+ "name": "Example 4",
11404
+ "value": "LOHDMCWUPSTNGVXYFJREQIKBZA"
11405
+ },
11406
+ {
11407
+ "name": "Example 5",
11408
+ "value": "ERXWNZQIJYLVOFUMSGHTCKPBDA"
11409
+ },
11410
+ {
11411
+ "name": "Example 6",
11412
+ "value": "FQECYHJIOUMDZVPSLKRTGWXBAN"
11413
+ },
11414
+ {
11415
+ "name": "Example 7",
11416
+ "value": "TBYIUMKZDJSOPEWXVANHLCFQGR"
11417
+ },
11418
+ {
11419
+ "name": "Example 8",
11420
+ "value": "QZUPDTFNYIAOMLEBWJXCGHKRSV"
11421
+ },
11422
+ {
11423
+ "name": "Example 9",
11424
+ "value": "CZWNHEMPOVXLKRSIDGJFYBTQAU"
11425
+ },
11426
+ {
11427
+ "name": "Example 10",
11428
+ "value": "ENPXJVKYQBFZTICAGMOHWRLDUS"
11429
+ }
11430
+ ]
11431
+ },
11432
+ {
11433
+ "name": "3rd control rotor reversed",
11434
+ "type": "boolean",
11435
+ "value": false
11436
+ },
11437
+ {
11438
+ "name": "3rd control rotor intial value",
11439
+ "type": "option",
11440
+ "value": [
11441
+ "A",
11442
+ "B",
11443
+ "C",
11444
+ "D",
11445
+ "E",
11446
+ "F",
11447
+ "G",
11448
+ "H",
11449
+ "I",
11450
+ "J",
11451
+ "K",
11452
+ "L",
11453
+ "M",
11454
+ "N",
11455
+ "O",
11456
+ "P",
11457
+ "Q",
11458
+ "R",
11459
+ "S",
11460
+ "T",
11461
+ "U",
11462
+ "V",
11463
+ "W",
11464
+ "X",
11465
+ "Y",
11466
+ "Z"
11467
+ ]
11468
+ },
11469
+ {
11470
+ "name": "4th control rotor",
11471
+ "type": "editableOption",
11472
+ "value": [
11473
+ {
11474
+ "name": "Example 1",
11475
+ "value": "SRGWANHPJZFXVIDQCEUKBYOLMT"
11476
+ },
11477
+ {
11478
+ "name": "Example 2",
11479
+ "value": "THQEFSAZVKJYULBODCPXNIMWRG"
11480
+ },
11481
+ {
11482
+ "name": "Example 3",
11483
+ "value": "XDTUYLEVFNQZBPOGIRCSMHWKAJ"
11484
+ },
11485
+ {
11486
+ "name": "Example 4",
11487
+ "value": "LOHDMCWUPSTNGVXYFJREQIKBZA"
11488
+ },
11489
+ {
11490
+ "name": "Example 5",
11491
+ "value": "ERXWNZQIJYLVOFUMSGHTCKPBDA"
11492
+ },
11493
+ {
11494
+ "name": "Example 6",
11495
+ "value": "FQECYHJIOUMDZVPSLKRTGWXBAN"
11496
+ },
11497
+ {
11498
+ "name": "Example 7",
11499
+ "value": "TBYIUMKZDJSOPEWXVANHLCFQGR"
11500
+ },
11501
+ {
11502
+ "name": "Example 8",
11503
+ "value": "QZUPDTFNYIAOMLEBWJXCGHKRSV"
11504
+ },
11505
+ {
11506
+ "name": "Example 9",
11507
+ "value": "CZWNHEMPOVXLKRSIDGJFYBTQAU"
11508
+ },
11509
+ {
11510
+ "name": "Example 10",
11511
+ "value": "ENPXJVKYQBFZTICAGMOHWRLDUS"
11512
+ }
11513
+ ]
11514
+ },
11515
+ {
11516
+ "name": "4th control rotor reversed",
11517
+ "type": "boolean",
11518
+ "value": false
11519
+ },
11520
+ {
11521
+ "name": "4th control rotor intial value",
11522
+ "type": "option",
11523
+ "value": [
11524
+ "A",
11525
+ "B",
11526
+ "C",
11527
+ "D",
11528
+ "E",
11529
+ "F",
11530
+ "G",
11531
+ "H",
11532
+ "I",
11533
+ "J",
11534
+ "K",
11535
+ "L",
11536
+ "M",
11537
+ "N",
11538
+ "O",
11539
+ "P",
11540
+ "Q",
11541
+ "R",
11542
+ "S",
11543
+ "T",
11544
+ "U",
11545
+ "V",
11546
+ "W",
11547
+ "X",
11548
+ "Y",
11549
+ "Z"
11550
+ ]
11551
+ },
11552
+ {
11553
+ "name": "5th (right-hand) control rotor",
11554
+ "type": "editableOption",
11555
+ "value": [
11556
+ {
11557
+ "name": "Example 1",
11558
+ "value": "SRGWANHPJZFXVIDQCEUKBYOLMT"
11559
+ },
11560
+ {
11561
+ "name": "Example 2",
11562
+ "value": "THQEFSAZVKJYULBODCPXNIMWRG"
11563
+ },
11564
+ {
11565
+ "name": "Example 3",
11566
+ "value": "XDTUYLEVFNQZBPOGIRCSMHWKAJ"
11567
+ },
11568
+ {
11569
+ "name": "Example 4",
11570
+ "value": "LOHDMCWUPSTNGVXYFJREQIKBZA"
11571
+ },
11572
+ {
11573
+ "name": "Example 5",
11574
+ "value": "ERXWNZQIJYLVOFUMSGHTCKPBDA"
11575
+ },
11576
+ {
11577
+ "name": "Example 6",
11578
+ "value": "FQECYHJIOUMDZVPSLKRTGWXBAN"
11579
+ },
11580
+ {
11581
+ "name": "Example 7",
11582
+ "value": "TBYIUMKZDJSOPEWXVANHLCFQGR"
11583
+ },
11584
+ {
11585
+ "name": "Example 8",
11586
+ "value": "QZUPDTFNYIAOMLEBWJXCGHKRSV"
11587
+ },
11588
+ {
11589
+ "name": "Example 9",
11590
+ "value": "CZWNHEMPOVXLKRSIDGJFYBTQAU"
11591
+ },
11592
+ {
11593
+ "name": "Example 10",
11594
+ "value": "ENPXJVKYQBFZTICAGMOHWRLDUS"
11595
+ }
11596
+ ]
11597
+ },
11598
+ {
11599
+ "name": "5th control rotor reversed",
11600
+ "type": "boolean",
11601
+ "value": false
11602
+ },
11603
+ {
11604
+ "name": "5th control rotor intial value",
11605
+ "type": "option",
11606
+ "value": [
11607
+ "A",
11608
+ "B",
11609
+ "C",
11610
+ "D",
11611
+ "E",
11612
+ "F",
11613
+ "G",
11614
+ "H",
11615
+ "I",
11616
+ "J",
11617
+ "K",
11618
+ "L",
11619
+ "M",
11620
+ "N",
11621
+ "O",
11622
+ "P",
11623
+ "Q",
11624
+ "R",
11625
+ "S",
11626
+ "T",
11627
+ "U",
11628
+ "V",
11629
+ "W",
11630
+ "X",
11631
+ "Y",
11632
+ "Z"
11633
+ ]
11634
+ },
11635
+ {
11636
+ "name": "1st (left-hand) index rotor",
11637
+ "type": "editableOption",
11638
+ "value": [
11639
+ {
11640
+ "name": "Example 1",
11641
+ "value": "6201348957"
11642
+ },
11643
+ {
11644
+ "name": "Example 2",
11645
+ "value": "6147253089"
11646
+ },
11647
+ {
11648
+ "name": "Example 3",
11649
+ "value": "8239647510"
11650
+ },
11651
+ {
11652
+ "name": "Example 4",
11653
+ "value": "7194835260"
11654
+ },
11655
+ {
11656
+ "name": "Example 5",
11657
+ "value": "4873205916"
11658
+ }
11659
+ ]
11660
+ },
11661
+ {
11662
+ "name": "1st index rotor intial value",
11663
+ "type": "option",
11664
+ "value": [
11665
+ "0",
11666
+ "1",
11667
+ "2",
11668
+ "3",
11669
+ "4",
11670
+ "5",
11671
+ "6",
11672
+ "7",
11673
+ "8",
11674
+ "9"
11675
+ ]
11676
+ },
11677
+ {
11678
+ "name": "2nd index rotor",
11679
+ "type": "editableOption",
11680
+ "value": [
11681
+ {
11682
+ "name": "Example 1",
11683
+ "value": "6201348957"
11684
+ },
11685
+ {
11686
+ "name": "Example 2",
11687
+ "value": "6147253089"
11688
+ },
11689
+ {
11690
+ "name": "Example 3",
11691
+ "value": "8239647510"
11692
+ },
11693
+ {
11694
+ "name": "Example 4",
11695
+ "value": "7194835260"
11696
+ },
11697
+ {
11698
+ "name": "Example 5",
11699
+ "value": "4873205916"
11700
+ }
11701
+ ]
11702
+ },
11703
+ {
11704
+ "name": "2nd index rotor intial value",
11705
+ "type": "option",
11706
+ "value": [
11707
+ "0",
11708
+ "1",
11709
+ "2",
11710
+ "3",
11711
+ "4",
11712
+ "5",
11713
+ "6",
11714
+ "7",
11715
+ "8",
11716
+ "9"
11717
+ ]
11718
+ },
11719
+ {
11720
+ "name": "3rd (middle) index rotor",
11721
+ "type": "editableOption",
11722
+ "value": [
11723
+ {
11724
+ "name": "Example 1",
11725
+ "value": "6201348957"
11726
+ },
11727
+ {
11728
+ "name": "Example 2",
11729
+ "value": "6147253089"
11730
+ },
11731
+ {
11732
+ "name": "Example 3",
11733
+ "value": "8239647510"
11734
+ },
11735
+ {
11736
+ "name": "Example 4",
11737
+ "value": "7194835260"
11738
+ },
11739
+ {
11740
+ "name": "Example 5",
11741
+ "value": "4873205916"
11742
+ }
11743
+ ]
11744
+ },
11745
+ {
11746
+ "name": "3rd index rotor intial value",
11747
+ "type": "option",
11748
+ "value": [
11749
+ "0",
11750
+ "1",
11751
+ "2",
11752
+ "3",
11753
+ "4",
11754
+ "5",
11755
+ "6",
11756
+ "7",
11757
+ "8",
11758
+ "9"
11759
+ ]
11760
+ },
11761
+ {
11762
+ "name": "4th index rotor",
11763
+ "type": "editableOption",
11764
+ "value": [
11765
+ {
11766
+ "name": "Example 1",
11767
+ "value": "6201348957"
11768
+ },
11769
+ {
11770
+ "name": "Example 2",
11771
+ "value": "6147253089"
11772
+ },
11773
+ {
11774
+ "name": "Example 3",
11775
+ "value": "8239647510"
11776
+ },
11777
+ {
11778
+ "name": "Example 4",
11779
+ "value": "7194835260"
11780
+ },
11781
+ {
11782
+ "name": "Example 5",
11783
+ "value": "4873205916"
11784
+ }
11785
+ ]
11786
+ },
11787
+ {
11788
+ "name": "4th index rotor intial value",
11789
+ "type": "option",
11790
+ "value": [
11791
+ "0",
11792
+ "1",
11793
+ "2",
11794
+ "3",
11795
+ "4",
11796
+ "5",
11797
+ "6",
11798
+ "7",
11799
+ "8",
11800
+ "9"
11801
+ ]
11802
+ },
11803
+ {
11804
+ "name": "5th (right-hand) index rotor",
11805
+ "type": "editableOption",
11806
+ "value": [
11807
+ {
11808
+ "name": "Example 1",
11809
+ "value": "6201348957"
11810
+ },
11811
+ {
11812
+ "name": "Example 2",
11813
+ "value": "6147253089"
11814
+ },
11815
+ {
11816
+ "name": "Example 3",
11817
+ "value": "8239647510"
11818
+ },
11819
+ {
11820
+ "name": "Example 4",
11821
+ "value": "7194835260"
11822
+ },
11823
+ {
11824
+ "name": "Example 5",
11825
+ "value": "4873205916"
11826
+ }
11827
+ ]
11828
+ },
11829
+ {
11830
+ "name": "5th index rotor intial value",
11831
+ "type": "option",
11832
+ "value": [
11833
+ "0",
11834
+ "1",
11835
+ "2",
11836
+ "3",
11837
+ "4",
11838
+ "5",
11839
+ "6",
11840
+ "7",
11841
+ "8",
11842
+ "9"
11843
+ ]
11844
+ },
11845
+ {
11846
+ "name": "SIGABA mode",
11847
+ "type": "option",
11848
+ "value": [
11849
+ "Encrypt",
11850
+ "Decrypt"
11851
+ ]
11852
+ }
11853
+ ]
11854
+ },
11855
+ "SM3": {
11856
+ "module": "Crypto",
11857
+ "description": "SM3 is a cryptographic hash function used in the Chinese National Standard. SM3 is mainly used in digital signatures, message authentication codes, and pseudorandom number generators. The message digest algorithm consists, by default, of 64 rounds and length of 256.",
11858
+ "infoURL": "https://wikipedia.org/wiki/SM3_(hash_function)",
11859
+ "inputType": "ArrayBuffer",
11860
+ "outputType": "string",
11861
+ "flowControl": false,
11862
+ "manualBake": false,
11863
+ "args": [
11864
+ {
11865
+ "name": "Length",
11866
+ "type": "number",
11867
+ "value": 256
11868
+ },
11869
+ {
11870
+ "name": "Rounds",
11871
+ "type": "number",
11872
+ "value": 64,
11873
+ "min": 16
11874
+ }
11875
+ ]
11876
+ },
11877
+ "SQL Beautify": {
11878
+ "module": "Code",
11879
+ "description": "Indents and prettifies Structured Query Language (SQL) code.",
11880
+ "infoURL": null,
11881
+ "inputType": "string",
11882
+ "outputType": "string",
11883
+ "flowControl": false,
11884
+ "manualBake": false,
11885
+ "args": [
11886
+ {
11887
+ "name": "Indent string",
11888
+ "type": "binaryShortString",
11889
+ "value": "\\t"
11890
+ }
11891
+ ]
11892
+ },
11893
+ "SQL Minify": {
11894
+ "module": "Code",
11895
+ "description": "Compresses Structured Query Language (SQL) code.",
11896
+ "infoURL": null,
11897
+ "inputType": "string",
11898
+ "outputType": "string",
11899
+ "flowControl": false,
11900
+ "manualBake": false,
11901
+ "args": []
11902
+ },
11903
+ "SSDEEP": {
11904
+ "module": "Crypto",
11905
+ "description": "SSDEEP is a program for computing context triggered piecewise hashes (CTPH). Also called fuzzy hashes, CTPH can match inputs that have homologies. Such inputs have sequences of identical bytes in the same order, although bytes in between these sequences may be different in both content and length.<br><br>SSDEEP hashes are now widely used for simple identification purposes (e.g. the 'Basic Properties' section in VirusTotal). Although 'better' fuzzy hashes are available, SSDEEP is still one of the primary choices because of its speed and being a de facto standard.<br><br>This operation is fundamentally the same as the CTPH operation, however their outputs differ in format.",
11906
+ "infoURL": "https://forensicswiki.xyz/wiki/index.php?title=Ssdeep",
11907
+ "inputType": "string",
11908
+ "outputType": "string",
11909
+ "flowControl": false,
11910
+ "manualBake": false,
11911
+ "args": []
11912
+ },
11913
+ "SUB": {
11914
+ "module": "Default",
11915
+ "description": "SUB the input with the given key (e.g. <code>fe023da5</code>), MOD 255",
11916
+ "infoURL": "https://wikipedia.org/wiki/Bitwise_operation#Bitwise_operators",
11917
+ "inputType": "byteArray",
11918
+ "outputType": "byteArray",
11919
+ "flowControl": false,
11920
+ "manualBake": false,
11921
+ "args": [
11922
+ {
11923
+ "name": "Key",
11924
+ "type": "toggleString",
11925
+ "value": "",
11926
+ "toggleValues": [
11927
+ "Hex",
11928
+ "Decimal",
11929
+ "Binary",
11930
+ "Base64",
11931
+ "UTF8",
11932
+ "Latin1"
11933
+ ]
11934
+ }
11935
+ ]
11936
+ },
11937
+ "Scan for Embedded Files": {
11938
+ "module": "Default",
11939
+ "description": "Scans the data for potential embedded files by looking for magic bytes at all offsets. This operation is prone to false positives.<br><br>WARNING: Files over about 100KB in size will take a VERY long time to process.",
11940
+ "infoURL": "https://wikipedia.org/wiki/List_of_file_signatures",
11941
+ "inputType": "ArrayBuffer",
11942
+ "outputType": "string",
11943
+ "flowControl": false,
11944
+ "manualBake": false,
11945
+ "args": [
11946
+ {
11947
+ "name": "Images",
11948
+ "type": "boolean",
11949
+ "value": true
11950
+ },
11951
+ {
11952
+ "name": "Video",
11953
+ "type": "boolean",
11954
+ "value": true
11955
+ },
11956
+ {
11957
+ "name": "Audio",
11958
+ "type": "boolean",
11959
+ "value": true
11960
+ },
11961
+ {
11962
+ "name": "Documents",
11963
+ "type": "boolean",
11964
+ "value": true
11965
+ },
11966
+ {
11967
+ "name": "Applications",
11968
+ "type": "boolean",
11969
+ "value": true
11970
+ },
11971
+ {
11972
+ "name": "Archives",
11973
+ "type": "boolean",
11974
+ "value": true
11975
+ },
11976
+ {
11977
+ "name": "Miscellaneous",
11978
+ "type": "boolean",
11979
+ "value": false
11980
+ }
11981
+ ]
11982
+ },
11983
+ "Scatter chart": {
11984
+ "module": "Charts",
11985
+ "description": "Plots two-variable data as single points on a graph.",
11986
+ "infoURL": "https://wikipedia.org/wiki/Scatter_plot",
11987
+ "inputType": "string",
11988
+ "outputType": "html",
11989
+ "flowControl": false,
11990
+ "manualBake": false,
11991
+ "args": [
11992
+ {
11993
+ "name": "Record delimiter",
11994
+ "type": "option",
11995
+ "value": [
11996
+ "Line feed",
11997
+ "CRLF"
11998
+ ]
11999
+ },
12000
+ {
12001
+ "name": "Field delimiter",
12002
+ "type": "option",
12003
+ "value": [
12004
+ "Space",
12005
+ "Comma",
12006
+ "Semi-colon",
12007
+ "Colon",
12008
+ "Tab"
12009
+ ]
12010
+ },
12011
+ {
12012
+ "name": "Use column headers as labels",
12013
+ "type": "boolean",
12014
+ "value": true
12015
+ },
12016
+ {
12017
+ "name": "X label",
12018
+ "type": "string",
12019
+ "value": ""
12020
+ },
12021
+ {
12022
+ "name": "Y label",
12023
+ "type": "string",
12024
+ "value": ""
12025
+ },
12026
+ {
12027
+ "name": "Colour",
12028
+ "type": "string",
12029
+ "value": "black"
12030
+ },
12031
+ {
12032
+ "name": "Point radius",
12033
+ "type": "number",
10959
12034
  "value": 10
10960
12035
  },
10961
12036
  {
@@ -12083,6 +13158,22 @@
12083
13158
  }
12084
13159
  ]
12085
13160
  },
13161
+ "To Base45": {
13162
+ "module": "Default",
13163
+ "description": "Base45 is a notation for encoding arbitrary byte data using a restricted set of symbols that can be conveniently used by humans and processed by computers. The high number base results in shorter strings than with the decimal or hexadecimal system. Base45 is optimized for usage with QR codes.",
13164
+ "infoURL": "https://wikipedia.org/wiki/List_of_numeral_systems",
13165
+ "inputType": "ArrayBuffer",
13166
+ "outputType": "string",
13167
+ "flowControl": false,
13168
+ "manualBake": false,
13169
+ "args": [
13170
+ {
13171
+ "name": "Alphabet",
13172
+ "type": "string",
13173
+ "value": "0-9A-Z $%*+\\-./:"
13174
+ }
13175
+ ]
13176
+ },
12086
13177
  "To Base58": {
12087
13178
  "module": "Default",
12088
13179
  "description": "Base58 (similar to Base64) is a notation for encoding arbitrary byte data. It differs from Base64 by removing easily misread characters (i.e. l, I, 0 and O) to improve human readability.<br><br>This operation encodes data in an ASCII string (with an alphabet of your choosing, presets included).<br><br>e.g. <code>hello world</code> becomes <code>StV1DL6CwTryKyV</code><br><br>Base58 is commonly used in cryptocurrencies (Bitcoin, Ripple, etc).",