Sigaba#934
Conversation
|
Nice work! We're looking into ways of getting some better test data before we merge. (This is definitely not a criticism of your work. It's just that as we're something of an authoritative source, we're a bit wary of muddling the historical record due to a typo!) Can you tell us where the implementation here is from - have you based it on an existing simulator, or implemented it from scratch from the public documentation? Has it been tested against existing simulators? |
|
Thank you for the feedback. I implemented the program from scratch by looking at public documentation on how the SIGABA machine physically works. One of the papers I looked at was a master's thesis by Miao Ai from San Jose State University on "CRYPTSIM: SIMULATORS FOR CLASSIC ROTOR CIPHERS" (https://scholarworks.sjsu.edu/cgi/viewcontent.cgi?article=1237&context=etd_projects). In the paper there is test data in Appendix C for the SIGABA machine, which was tested against an existing windows simulator (https://cryptocellar.org/simula/sigaba/index.html). The test data in the paper matches with that from the simulator I have written, however I agree that having more test data would be better. Do you have any more suggestions for improvement? |
|
Hello @s2224834. Thanks for looking at this pull request. Is there anything I ought to do to move this forward? Let me know if further information is needed. |
|
Hi - I'm no .js expert, but I think the medium Control Rotor steps on at each 26th step from the start of the message in this code and the slow one at each 26^2. That seems wrong - stepping as a function of the point in the message, rather than the wheel settings. Pekelney suggests something like movement of the next rotor when the previous one shows 'O' although I think there are some inconsistencies between documentation and code. Not sure anyone knows what is right, but that is an area I'd check if possible in order to get this historically accurate. |
|
Hi @oilulio. Thanks for looking at my code. After looking at different sources I see that many simply say that the control rotors step every 26 and 26^2 encryptions, with no indication of where they step, but after doing some searching I did find a source which indicates that it steps when the previous rotor steps from O to N (something which I haven't incorporated into my code) here: http://www.quadibloc.com/crypto/ro0205.htm where it states "When a rotor changes from the letter O to the letter N is when a carry takes place to the next slower rotor." However this is the only source I have found which mentions this, though this is likely. I plan to try to get further information by emailing a museum which has a SIGABA machine so as to make sure that this assumption is correct. |
|
Hi @hettysymes If it helps, I've tried to disentangle some of this in Sigaba.java in my repository. The comments in that code explain what I know. That code has three flags to mimic various alternatives (mainly so it can solve MTC3 challenges about Sigaba). I think the useful reference is Cryptologia Vol XXIII No 3 July 1999, but again, I'm not really sure anyone knows. Good idea about a museum. |
|
Hi @oilulio. Thank you for the links to the SIGABA resources. I managed to contact Mr Patrick Weadon who is the curator of the National Cryptologic Museum in Maryland, who helpfully brought me into contact with Dr. Timothy Mucklow, an expert on the SIGABA machine and author of the following source: https://www.nsa.gov/Portals/70/documents/about/cryptologic-heritage/historical-figures-publications/publications/technology/The_SIGABA_ECM_Cipher_Machine_A_Beautiful_Idea3.pdf?ver=2019-08-07-124409-850. However, he too seemed to be uncertain as to whether the second control rotor steps with every 26 encryptions from the start of encryption, or only once the first rotor reaches a certain point in its rotation. It seems that without finding a real SIGABA machine it may be difficult to fact-check this. |
|
Thanks very much for your research and work here. It's a shame you weren't able to get a good answer. History is hard! We probably can't merge without being able to figure this out - as I mentioned we don't want to accidentally muddy the historical record. We'll have another go at getting some more information as well, but given the current disruption I wouldn't hold your breath on getting answers any time soon. |
|
Hi @hettysymes, @s2224834 I did not reply immediately because it occurred to me that it might be useful to check the Sigaba patent To quote the relevant section (my additions in [ ]): “Each of the wheels 61 [code] and 70 [control] has a peripheral boss 122 (FIGS. 4 and 5) which on the third control wheel, once each revolution, moves contact strip 123 to close a circuit … to the stepping magnet 93 of the fourth control wheel 70 and cause the fourth wheel to rotate one step. In its turn, the boss 122 on the fourth control wheel operates … and so connect the stepping magnet 93 of the second control wheel.” Now Fig 5 in particular makes it clear that the boss 122 is a feature of the wheel not the machine and hence I submit that the logical conclusion is that the advance occurs when the wheel is in a particular position, not a particular number of steps after the start of the message. Incidentally the drawing appears to show a second boss, but the text is clear the advance is once per revolution. Either artistic licence or a boss for the wheel in reverse may be the answer. Hope that helps. {later edit to correct terminology, main thrust unchanged} |
|
@hettysymes |
|
Thank you very much @oilulio for finding this source! I have not come across it before. It does indeed seem like definitive proof that the control rotor steps with every "O" reached on the previous rotor. I shall set about modifying the pull request soon to implement this. |
|
Hi @hettysymes. Not a problem. I think now your algorithm would match the Java code in George Lasry's MITM paper, which may help with your testing (and also my repo code with the Match Lasry flags set). |
|
Excellent work! Once you've got the changes made and have some testing done against the other implementation mentioned I think I'm happy enough with the sourcing to go ahead with a code review and merge once that's done. What do you think @n1474335? |
I have created an emulation of the SIGABA machine and have tested it against some test data from a Master's thesis by Miao Ai: https://scholarworks.sjsu.edu/cgi/viewcontent.cgi?article=1237&context=etd_projects
|
Just did a rebase to master. I will now look at making the changes. |
…the previous rotor reaches "O" and added tests
|
The program has now been modified so that the next control rotor steps once the previous one has reached "O". I have checked it against the test available in George Lasry's MITM paper as commented by @oilulio. The output has also been tested against @oilulio's repo code and the results agree. In addition to this the tests for the SIGABA have been extended with longer tests so that all rotors are covered. I hope this covers any testing issues. Please let me know if there are any more comments. |
|
Happy for this to be merged now I think. The only thing I would request is that you add a line into the operation description stating that whilst this has been tested against other software emulators, it has not been tested against hardware. Our other cipher machine emulators of that era have been tested against hardware and I think we should maintain that aspiration where possible, so as to provide the most trustworthy source available. |
|
@n1474335 thanks for the comment. I have updated the operation description to include that note, and have also made the commenting consistent with the other emulators. Hope this looks okay now. |
|
@s2224834 I think the changes have been made now, and I have tested it against other simulators. Please let me know if there is anything else needed for this pull request. Thanks. |
|
@s2224834 I'd just like to check on the status of this pull request. Is there further action I need to take or do you think it is acceptable? I'd welcome any feedback. Thanks. |
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [gchq/CyberChef](https://github.com/gchq/CyberChef) | minor | `v10.19.4` -> `v10.20.0` | --- ### Release Notes <details> <summary>gchq/CyberChef (gchq/CyberChef)</summary> ### [`v10.20.0`](https://github.com/gchq/CyberChef/blob/HEAD/CHANGELOG.md#400---2016-11-28) [Compare Source](gchq/CyberChef@v10.19.4...v10.20.0) - Initial open source commit [@​n1474335] | [b1d73a72](gchq/CyberChef@b1d73a7) [10.20.0]: https://github.com/gchq/CyberChef/releases/tag/v10.20.0 [10.19.0]: https://github.com/gchq/CyberChef/releases/tag/v10.19.0 [10.18.0]: https://github.com/gchq/CyberChef/releases/tag/v10.18.0 [10.17.0]: https://github.com/gchq/CyberChef/releases/tag/v10.17.0 [10.16.0]: https://github.com/gchq/CyberChef/releases/tag/v10.16.0 [10.15.0]: https://github.com/gchq/CyberChef/releases/tag/v10.15.0 [10.14.0]: https://github.com/gchq/CyberChef/releases/tag/v10.14.0 [10.13.0]: https://github.com/gchq/CyberChef/releases/tag/v10.13.0 [10.12.0]: https://github.com/gchq/CyberChef/releases/tag/v10.12.0 [10.11.0]: https://github.com/gchq/CyberChef/releases/tag/v10.11.0 [10.10.0]: https://github.com/gchq/CyberChef/releases/tag/v10.10.0 [10.9.0]: https://github.com/gchq/CyberChef/releases/tag/v10.9.0 [10.8.0]: https://github.com/gchq/CyberChef/releases/tag/v10.7.0 [10.7.0]: https://github.com/gchq/CyberChef/releases/tag/v10.7.0 [10.6.0]: https://github.com/gchq/CyberChef/releases/tag/v10.6.0 [10.5.0]: https://github.com/gchq/CyberChef/releases/tag/v10.5.0 [10.4.0]: https://github.com/gchq/CyberChef/releases/tag/v10.4.0 [10.3.0]: https://github.com/gchq/CyberChef/releases/tag/v10.3.0 [10.2.0]: https://github.com/gchq/CyberChef/releases/tag/v10.2.0 [10.1.0]: https://github.com/gchq/CyberChef/releases/tag/v10.1.0 [10.0.0]: https://github.com/gchq/CyberChef/releases/tag/v10.0.0 [9.55.0]: https://github.com/gchq/CyberChef/releases/tag/v9.55.0 [9.54.0]: https://github.com/gchq/CyberChef/releases/tag/v9.54.0 [9.53.0]: https://github.com/gchq/CyberChef/releases/tag/v9.53.0 [9.52.0]: https://github.com/gchq/CyberChef/releases/tag/v9.52.0 [9.51.0]: https://github.com/gchq/CyberChef/releases/tag/v9.51.0 [9.50.0]: https://github.com/gchq/CyberChef/releases/tag/v9.50.0 [9.49.0]: https://github.com/gchq/CyberChef/releases/tag/v9.49.0 [9.48.0]: https://github.com/gchq/CyberChef/releases/tag/v9.48.0 [9.47.0]: https://github.com/gchq/CyberChef/releases/tag/v9.47.0 [9.46.0]: https://github.com/gchq/CyberChef/releases/tag/v9.46.0 [9.45.0]: https://github.com/gchq/CyberChef/releases/tag/v9.45.0 [9.44.0]: https://github.com/gchq/CyberChef/releases/tag/v9.44.0 [9.43.0]: https://github.com/gchq/CyberChef/releases/tag/v9.43.0 [9.42.0]: https://github.com/gchq/CyberChef/releases/tag/v9.42.0 [9.41.0]: https://github.com/gchq/CyberChef/releases/tag/v9.41.0 [9.40.0]: https://github.com/gchq/CyberChef/releases/tag/v9.40.0 [9.39.0]: https://github.com/gchq/CyberChef/releases/tag/v9.39.0 [9.38.0]: https://github.com/gchq/CyberChef/releases/tag/v9.38.0 [9.37.0]: https://github.com/gchq/CyberChef/releases/tag/v9.37.0 [9.36.0]: https://github.com/gchq/CyberChef/releases/tag/v9.36.0 [9.35.0]: https://github.com/gchq/CyberChef/releases/tag/v9.35.0 [9.34.0]: https://github.com/gchq/CyberChef/releases/tag/v9.34.0 [9.33.0]: https://github.com/gchq/CyberChef/releases/tag/v9.33.0 [9.32.0]: https://github.com/gchq/CyberChef/releases/tag/v9.32.0 [9.31.0]: https://github.com/gchq/CyberChef/releases/tag/v9.31.0 [9.30.0]: https://github.com/gchq/CyberChef/releases/tag/v9.30.0 [9.29.0]: https://github.com/gchq/CyberChef/releases/tag/v9.29.0 [9.28.0]: https://github.com/gchq/CyberChef/releases/tag/v9.28.0 [9.27.0]: https://github.com/gchq/CyberChef/releases/tag/v9.27.0 [9.26.0]: https://github.com/gchq/CyberChef/releases/tag/v9.26.0 [9.25.0]: https://github.com/gchq/CyberChef/releases/tag/v9.25.0 [9.24.0]: https://github.com/gchq/CyberChef/releases/tag/v9.24.0 [9.23.0]: https://github.com/gchq/CyberChef/releases/tag/v9.23.0 [9.22.0]: https://github.com/gchq/CyberChef/releases/tag/v9.22.0 [9.21.0]: https://github.com/gchq/CyberChef/releases/tag/v9.21.0 [9.20.0]: https://github.com/gchq/CyberChef/releases/tag/v9.20.0 [9.19.0]: https://github.com/gchq/CyberChef/releases/tag/v9.19.0 [9.18.0]: https://github.com/gchq/CyberChef/releases/tag/v9.18.0 [9.17.0]: https://github.com/gchq/CyberChef/releases/tag/v9.17.0 [9.16.0]: https://github.com/gchq/CyberChef/releases/tag/v9.16.0 [9.15.0]: https://github.com/gchq/CyberChef/releases/tag/v9.15.0 [9.14.0]: https://github.com/gchq/CyberChef/releases/tag/v9.14.0 [9.13.0]: https://github.com/gchq/CyberChef/releases/tag/v9.13.0 [9.12.0]: https://github.com/gchq/CyberChef/releases/tag/v9.12.0 [9.11.0]: https://github.com/gchq/CyberChef/releases/tag/v9.11.0 [9.10.0]: https://github.com/gchq/CyberChef/releases/tag/v9.10.0 [9.9.0]: https://github.com/gchq/CyberChef/releases/tag/v9.9.0 [9.8.0]: https://github.com/gchq/CyberChef/releases/tag/v9.8.0 [9.7.0]: https://github.com/gchq/CyberChef/releases/tag/v9.7.0 [9.6.0]: https://github.com/gchq/CyberChef/releases/tag/v9.6.0 [9.5.0]: https://github.com/gchq/CyberChef/releases/tag/v9.5.0 [9.4.0]: https://github.com/gchq/CyberChef/releases/tag/v9.4.0 [9.3.0]: https://github.com/gchq/CyberChef/releases/tag/v9.3.0 [9.2.0]: https://github.com/gchq/CyberChef/releases/tag/v9.2.0 [9.1.0]: https://github.com/gchq/CyberChef/releases/tag/v9.1.0 [9.0.0]: https://github.com/gchq/CyberChef/releases/tag/v9.0.0 [8.38.0]: https://github.com/gchq/CyberChef/releases/tag/v8.38.0 [8.37.0]: https://github.com/gchq/CyberChef/releases/tag/v8.37.0 [8.36.0]: https://github.com/gchq/CyberChef/releases/tag/v8.36.0 [8.35.0]: https://github.com/gchq/CyberChef/releases/tag/v8.35.0 [8.34.0]: https://github.com/gchq/CyberChef/releases/tag/v8.34.0 [8.33.0]: https://github.com/gchq/CyberChef/releases/tag/v8.33.0 [8.32.0]: https://github.com/gchq/CyberChef/releases/tag/v8.32.0 [8.31.0]: https://github.com/gchq/CyberChef/releases/tag/v8.31.0 [8.30.0]: https://github.com/gchq/CyberChef/releases/tag/v8.30.0 [8.29.0]: https://github.com/gchq/CyberChef/releases/tag/v8.29.0 [8.28.0]: https://github.com/gchq/CyberChef/releases/tag/v8.28.0 [8.27.0]: https://github.com/gchq/CyberChef/releases/tag/v8.27.0 [8.26.0]: https://github.com/gchq/CyberChef/releases/tag/v8.26.0 [8.25.0]: https://github.com/gchq/CyberChef/releases/tag/v8.25.0 [8.24.0]: https://github.com/gchq/CyberChef/releases/tag/v8.24.0 [8.23.1]: https://github.com/gchq/CyberChef/releases/tag/v8.23.1 [8.23.0]: https://github.com/gchq/CyberChef/releases/tag/v8.23.0 [8.22.0]: https://github.com/gchq/CyberChef/releases/tag/v8.22.0 [8.21.0]: https://github.com/gchq/CyberChef/releases/tag/v8.21.0 [8.20.0]: https://github.com/gchq/CyberChef/releases/tag/v8.20.0 [8.19.0]: https://github.com/gchq/CyberChef/releases/tag/v8.19.0 [8.18.0]: https://github.com/gchq/CyberChef/releases/tag/v8.18.0 [8.17.0]: https://github.com/gchq/CyberChef/releases/tag/v8.17.0 [8.16.0]: https://github.com/gchq/CyberChef/releases/tag/v8.16.0 [8.15.0]: https://github.com/gchq/CyberChef/releases/tag/v8.15.0 [8.14.0]: https://github.com/gchq/CyberChef/releases/tag/v8.14.0 [8.13.0]: https://github.com/gchq/CyberChef/releases/tag/v8.13.0 [8.12.0]: https://github.com/gchq/CyberChef/releases/tag/v8.12.0 [8.11.0]: https://github.com/gchq/CyberChef/releases/tag/v8.11.0 [8.10.0]: https://github.com/gchq/CyberChef/releases/tag/v8.10.0 [8.9.0]: https://github.com/gchq/CyberChef/releases/tag/v8.9.0 [8.8.0]: https://github.com/gchq/CyberChef/releases/tag/v8.8.0 [8.7.0]: https://github.com/gchq/CyberChef/releases/tag/v8.7.0 [8.6.0]: https://github.com/gchq/CyberChef/releases/tag/v8.6.0 [8.5.0]: https://github.com/gchq/CyberChef/releases/tag/v8.5.0 [8.4.0]: https://github.com/gchq/CyberChef/releases/tag/v8.4.0 [8.3.0]: https://github.com/gchq/CyberChef/releases/tag/v8.3.0 [8.2.0]: https://github.com/gchq/CyberChef/releases/tag/v8.2.0 [8.1.0]: https://github.com/gchq/CyberChef/releases/tag/v8.1.0 [8.0.0]: https://github.com/gchq/CyberChef/releases/tag/v8.0.0 [7.0.0]: https://github.com/gchq/CyberChef/releases/tag/v7.0.0 [6.0.0]: https://github.com/gchq/CyberChef/releases/tag/v6.0.0 [5.0.0]: https://github.com/gchq/CyberChef/releases/tag/v5.0.0 [4.0.0]: gchq/CyberChef@b1d73a7 [@​n1474335]: https://github.com/n1474335 [@​d98762625]: https://github.com/d98762625 [@​j433866]: https://github.com/j433866 [@​n1073645]: https://github.com/n1073645 [@​GCHQ77703]: https://github.com/GCHQ77703 [@​h345983745]: https://github.com/h345983745 [@​s2224834]: https://github.com/s2224834 [@​artemisbot]: https://github.com/artemisbot [@​tlwr]: https://github.com/tlwr [@​picapi]: https://github.com/picapi [@​Dachande663]: https://github.com/Dachande663 [@​JustAnotherMark]: https://github.com/JustAnotherMark [@​sevzero]: https://github.com/sevzero [@​PenguinGeorge]: https://github.com/PenguinGeorge [@​arnydo]: https://github.com/arnydo [@​klaxon1]: https://github.com/klaxon1 [@​bwhitn]: https://github.com/bwhitn [@​jarmovanlenthe]: https://github.com/jarmovanlenthe [@​tcode2k16]: https://github.com/tcode2k16 [@​Cynser]: https://github.com/Cynser [@​anthony-arnold]: https://github.com/anthony-arnold [@​masq]: https://github.com/masq [@​Ge0rg3]: https://github.com/Ge0rg3 [@​MShwed]: https://github.com/MShwed [@​kassi]: https://github.com/kassi [@​jarrodconnolly]: https://github.com/jarrodconnolly [@​VirtualColossus]: https://github.com/VirtualColossus [@​cbeuw]: https://github.com/cbeuw [@​matthieuxyz]: https://github.com/matthieuxyz [@​Flavsditz]: https://github.com/Flavsditz [@​pointhi]: https://github.com/pointhi [@​MarvinJWendt]: https://github.com/MarvinJWendt [@​dmfj]: https://github.com/dmfj [@​mattnotmitt]: https://github.com/mattnotmitt [@​Danh4]: https://github.com/Danh4 [@​john19696]: https://github.com/john19696 [@​t-8ch]: https://github.com/t-8ch [@​hettysymes]: https://github.com/hettysymes [@​swesven]: https://github.com/swesven [@​mikecat]: https://github.com/mikecat [@​crespyl]: https://github.com/crespyl [@​thomasleplus]: https://github.com/thomasleplus [@​valdelaseras]: https://github.com/valdelaseras [@​brun0ne]: https://github.com/brun0ne [@​joostrijneveld]: https://github.com/joostrijneveld [@​Xenonym]: https://github.com/Xenonym [@​gchq77703]: https://github.com/gchq77703 [@​a3957273]: https://github.com/a3957273 [@​0xThiebaut]: https://github.com/0xThiebaut [@​cnotin]: https://github.com/cnotin [@​KevinSJ]: https://github.com/KevinSJ [@​sw5678]: https://github.com/sw5678 [@​sg5506844]: https://github.com/sg5506844 [@​AliceGrey]: https://github.com/AliceGrey [@​AshCorr]: https://github.com/AshCorr [@​simonw]: https://github.com/simonw [@​chriswhite199]: https://github.com/chriswhite199 [@​breakersall]: https://github.com/breakersall [@​evanreichard]: https://github.com/evanreichard [@​devcydo]: https://github.com/devcydo [@​zb3]: https://github.com/zb3 [@​jkataja]: https://github.com/jkataja [@​tomgond]: https://github.com/tomgond [@​e218736]: https://github.com/e218736 [@​TheZ3ro]: https://github.com/TheZ3ro [@​EvieHarv]: https://github.com/EvieHarv [@​cplussharp]: https://github.com/cplussharp [@​robinsandhu]: https://github.com/robinsandhu [@​eltociear]: https://github.com/eltociear [@​GuilhermoReadonly]: https://github.com/GuilhermoReadonly [@​simonarnell]: https://github.com/simonarnell [@​RandomByte]: https://github.com/RandomByte [@​c65722]: https://github.com/c65722 [@​c65722]: https://github.com/c65722 [@​c65722]: https://github.com/c65722 [@​max0x53]: https://github.com/max0x53 [@​Adamkadaban]: https://github.com/Adamkadaban [@​c65722]: https://github.com/c65722 [@​jb30795]: https://github.com/jb30795 [@​FranciscoPombal]: https://github.com/FranciscoPombal [@​Oshawk]: https://github.com/Oshawk [@​Oshawk]: https://github.com/Oshawk [@​bartblaze]: https://github.com/bartblaze [@​exactlyaron]: https://github.com/exactlyaron [@​k3ach]: https://github.com/k3ach [@​vs4vijay]: https://github.com/vs4vijay [@​FranciscoPombal]: https://github.com/FranciscoPombal [@​FranciscoPombal]: https://github.com/FranciscoPombal [@​linuxgemini]: https://github.com/linuxgemini [@​depperm]: https://github.com/depperm [@​evenstensberg]: https://github.com/evenstensberg [@​bartblaze]: https://github.com/bartblaze [@​0xh3xa]: https://github.com/0xh3xa [@​flakjacket95]: https://github.com/flakjacket95 [@​zhzy0077]: https://github.com/zhzy0077 [@​JSCU-CNI]: https://github.com/JSCU-CNI [@​ccarpo]: https://github.com/ccarpo [@​r4mos]: https://github.com/r4mos [@​0xh3xa]: https://github.com/0xh3xa [@​0xh3xa]: https://github.com/0xh3xa [@​PathToLife]: https://github.com/PathToLife [@​peterc-s]: https://github.com/peterc-s [@​plvie]: https://github.com/plvie [@​kenduguay1]: https://github.com/kenduguay1 [@​jonking-ajar]: https://github.com/jonking-ajar [@​PathToLife]: https://github.com/PathToLife [@​r4mos]: https://github.com/r4mos [@​jg42526]: https://github.com/jg42526 [@​es45411]: https://github.com/es45411 [@​gchq]: https://github.com/gchq [@​gchqdev364]: https://github.com/gchqdev364 [@​GCHQDeveloper94872]: https://github.com/GCHQDeveloper94872 [@​Sma-Das]: https://github.com/Sma-Das [@​gchq]: https://github.com/gchq [@​Odyhibit]: https://github.com/Odyhibit [@​ericli-splunk]: https://github.com/ericli-splunk [@​xumptex]: https://github.com/xumptex [@​bartvanandel]: https://github.com/bartvanandel [@​bartvanandel]: https://github.com/bartvanandel [@​kendallgoto]: https://github.com/kendallgoto [@​remingtr]: https://github.com/remingtr [@​0xff1ce]: https://github.com/0xff1ce [@​starplanet]: https://github.com/starplanet [8ad18b]: gchq/CyberChef@8ad18bc [9a33498]: gchq/CyberChef@9a33498 [289a417]: gchq/CyberChef@289a417 [e9ca4dc]: gchq/CyberChef@e9ca4dc [dd18e52]: gchq/CyberChef@dd18e52 [a895d1d]: gchq/CyberChef@a895d1d [31a7f83]: gchq/CyberChef@31a7f83 [760eff4]: gchq/CyberChef@760eff4 [65ffd8d]: gchq/CyberChef@65ffd8d [0a353ee]: gchq/CyberChef@0a353ee [66d445c]: gchq/CyberChef@66d445c [ab37c1e]: gchq/CyberChef@ab37c1e [965570d]: gchq/CyberChef@965570d [a477f47]: gchq/CyberChef@a477f47 [7a5225c]: gchq/CyberChef@7a5225c [5f88ae4]: gchq/CyberChef@5f88ae4 [0e82e4b]: gchq/CyberChef@0e82e4b [d635cca]: gchq/CyberChef@d635cca [895a929]: gchq/CyberChef@895a929 [270a333]: gchq/CyberChef@270a333 [d3adfc7]: gchq/CyberChef@d3adfc7 [47c85a1]: gchq/CyberChef@47c85a1 [3822c6c]: gchq/CyberChef@3822c6c [66d445c]: gchq/CyberChef@66d445c [ab37c1e]: gchq/CyberChef@ab37c1e [965570d]: gchq/CyberChef@965570d [a477f47]: gchq/CyberChef@a477f47 [7a5225c]: gchq/CyberChef@7a5225c [5f88ae4]: gchq/CyberChef@5f88ae4 [0e82e4b]: gchq/CyberChef@0e82e4b [d635cca]: gchq/CyberChef@d635cca [895a929]: gchq/CyberChef@895a929 [270a333]: gchq/CyberChef@270a333 [d3adfc7]: gchq/CyberChef@d3adfc7 [47c85a1]: gchq/CyberChef@47c85a1 [3822c6c]: gchq/CyberChef@3822c6c [66d445c]: gchq/CyberChef@66d445c [ab37c1e]: gchq/CyberChef@ab37c1e [965570d]: gchq/CyberChef@965570d [a477f47]: gchq/CyberChef@a477f47 [7a5225c]: gchq/CyberChef@7a5225c [5f88ae4]: gchq/CyberChef@5f88ae4 [0e82e4b]: gchq/CyberChef@0e82e4b [d635cca]: gchq/CyberChef@d635cca [895a929]: gchq/CyberChef@895a929 [270a333]: gchq/CyberChef@270a333 [d3adfc7]: gchq/CyberChef@d3adfc7 [47c85a1]: gchq/CyberChef@47c85a1 [3822c6c]: gchq/CyberChef@3822c6c [66d445c]: gchq/CyberChef@66d445c [#​95]: gchq/CyberChef#299 [#​173]: gchq/CyberChef#173 [#​143]: gchq/CyberChef#143 [#​224]: gchq/CyberChef#224 [#​239]: gchq/CyberChef#239 [#​248]: gchq/CyberChef#248 [#​255]: gchq/CyberChef#255 [#​277]: gchq/CyberChef#277 [#​281]: gchq/CyberChef#281 [#​284]: gchq/CyberChef#284 [#​291]: gchq/CyberChef#291 [#​294]: gchq/CyberChef#294 [#​296]: gchq/CyberChef#296 [#​298]: gchq/CyberChef#298 [#​311]: gchq/CyberChef#311 [#​325]: gchq/CyberChef#325 [#​338]: gchq/CyberChef#338 [#​340]: gchq/CyberChef#340 [#​344]: gchq/CyberChef#344 [#​348]: gchq/CyberChef#348 [#​351]: gchq/CyberChef#351 [#​387]: gchq/CyberChef#387 [#​394]: gchq/CyberChef#394 [#​428]: gchq/CyberChef#428 [#​439]: gchq/CyberChef#439 [#​440]: gchq/CyberChef#440 [#​441]: gchq/CyberChef#441 [#​443]: gchq/CyberChef#443 [#​446]: gchq/CyberChef#446 [#​448]: gchq/CyberChef#448 [#​449]: gchq/CyberChef#449 [#​455]: gchq/CyberChef#455 [#​458]: gchq/CyberChef#458 [#​461]: gchq/CyberChef#461 [#​467]: gchq/CyberChef#467 [#​468]: gchq/CyberChef#468 [#​476]: gchq/CyberChef#476 [#​477]: gchq/CyberChef#477 [#​489]: gchq/CyberChef#489 [#​496]: gchq/CyberChef#496 [#​500]: gchq/CyberChef#500 [#​506]: gchq/CyberChef#506 [#​515]: gchq/CyberChef#515 [#​516]: gchq/CyberChef#516 [#​525]: gchq/CyberChef#525 [#​528]: gchq/CyberChef#528 [#​530]: gchq/CyberChef#530 [#​531]: gchq/CyberChef#531 [#​533]: gchq/CyberChef#533 [#​535]: gchq/CyberChef#535 [#​556]: gchq/CyberChef#556 [#​566]: gchq/CyberChef#566 [#​571]: gchq/CyberChef#571 [#​585]: gchq/CyberChef#585 [#​591]: gchq/CyberChef#591 [#​595]: gchq/CyberChef#595 [#​614]: gchq/CyberChef#614 [#​625]: gchq/CyberChef#625 [#​627]: gchq/CyberChef#627 [#​632]: gchq/CyberChef#632 [#​652]: gchq/CyberChef#652 [#​653]: gchq/CyberChef#653 [#​674]: gchq/CyberChef#674 [#​683]: gchq/CyberChef#683 [#​865]: gchq/CyberChef#865 [#​906]: gchq/CyberChef#906 [#​912]: gchq/CyberChef#912 [#​917]: gchq/CyberChef#917 [#​934]: gchq/CyberChef#934 [#​948]: gchq/CyberChef#948 [#​951]: gchq/CyberChef#951 [#​952]: gchq/CyberChef#952 [#​965]: gchq/CyberChef#965 [#​966]: gchq/CyberChef#966 [#​987]: gchq/CyberChef#987 [#​999]: gchq/CyberChef#999 [#​1006]: gchq/CyberChef#1006 [#​1022]: gchq/CyberChef#1022 [#​1037]: gchq/CyberChef#1037 [#​1045]: gchq/CyberChef#1045 [#​1049]: gchq/CyberChef#1049 [#​1065]: gchq/CyberChef#1065 [#​1066]: gchq/CyberChef#1066 [#​1083]: gchq/CyberChef#1083 [#​1189]: gchq/CyberChef#1189 [#​1242]: gchq/CyberChef#1242 [#​1244]: gchq/CyberChef#1244 [#​1313]: gchq/CyberChef#1313 [#​1326]: gchq/CyberChef#1326 [#​1364]: gchq/CyberChef#1364 [#​1264]: gchq/CyberChef#1264 [#​1266]: gchq/CyberChef#1266 [#​1250]: gchq/CyberChef#1250 [#​1308]: gchq/CyberChef#1308 [#​1405]: gchq/CyberChef#1405 [#​1421]: gchq/CyberChef#1421 [#​1427]: gchq/CyberChef#1427 [#​1472]: gchq/CyberChef#1472 [#​1457]: gchq/CyberChef#1457 [#​1466]: gchq/CyberChef#1466 [#​1456]: gchq/CyberChef#1456 [#​1450]: gchq/CyberChef#1450 [#​1498]: gchq/CyberChef#1498 [#​1499]: gchq/CyberChef#1499 [#​1528]: gchq/CyberChef#1528 [#​661]: gchq/CyberChef#661 [#​493]: gchq/CyberChef#493 [#​592]: gchq/CyberChef#592 [#​1703]: gchq/CyberChef#1703 [#​1675]: gchq/CyberChef#1675 [#​1678]: gchq/CyberChef#1678 [#​1541]: gchq/CyberChef#1541 [#​1667]: gchq/CyberChef#1667 [#​1555]: gchq/CyberChef#1555 [#​1694]: gchq/CyberChef#1694 [#​1699]: gchq/CyberChef#1699 [#​1757]: gchq/CyberChef#1757 [#​1752]: gchq/CyberChef#1752 [#​1753]: gchq/CyberChef#1753 [#​1750]: gchq/CyberChef#1750 [#​1591]: gchq/CyberChef#1591 [#​654]: gchq/CyberChef#654 [#​1762]: gchq/CyberChef#1762 [#​1606]: gchq/CyberChef#1606 [#​1197]: gchq/CyberChef#1197 [#​933]: gchq/CyberChef#933 [#​1361]: gchq/CyberChef#1361 [#​1765]: gchq/CyberChef#1765 [#​1767]: gchq/CyberChef#1767 [#​1769]: gchq/CyberChef#1769 [#​1759]: gchq/CyberChef#1759 [#​1504]: gchq/CyberChef#1504 [#​512]: gchq/CyberChef#512 [#​1732]: gchq/CyberChef#1732 [#​1789]: gchq/CyberChef#1789 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNDYuMCIsInVwZGF0ZWRJblZlciI6IjQxLjE0Ni4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Reviewed-on: https://git.walbeck.it/mwalbeck/docker-cyberchef/pulls/445 Co-authored-by: renovate-bot <bot@walbeck.it> Co-committed-by: renovate-bot <bot@walbeck.it>
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [gchq/CyberChef](https://github.com/gchq/CyberChef) | minor | `v10.20.0` -> `v10.21.0` | --- ### Release Notes <details> <summary>gchq/CyberChef (gchq/CyberChef)</summary> ### [`v10.21.0`](https://github.com/gchq/CyberChef/blob/HEAD/CHANGELOG.md#400---2016-11-28) [Compare Source](gchq/CyberChef@v10.20.0...v10.21.0) - Initial open source commit [@​n1474335] | [b1d73a72](gchq/CyberChef@b1d73a7) [10.21.0]: https://github.com/gchq/CyberChef/releases/tag/v10.21.0 [10.20.0]: https://github.com/gchq/CyberChef/releases/tag/v10.20.0 [10.19.0]: https://github.com/gchq/CyberChef/releases/tag/v10.19.0 [10.18.0]: https://github.com/gchq/CyberChef/releases/tag/v10.18.0 [10.17.0]: https://github.com/gchq/CyberChef/releases/tag/v10.17.0 [10.16.0]: https://github.com/gchq/CyberChef/releases/tag/v10.16.0 [10.15.0]: https://github.com/gchq/CyberChef/releases/tag/v10.15.0 [10.14.0]: https://github.com/gchq/CyberChef/releases/tag/v10.14.0 [10.13.0]: https://github.com/gchq/CyberChef/releases/tag/v10.13.0 [10.12.0]: https://github.com/gchq/CyberChef/releases/tag/v10.12.0 [10.11.0]: https://github.com/gchq/CyberChef/releases/tag/v10.11.0 [10.10.0]: https://github.com/gchq/CyberChef/releases/tag/v10.10.0 [10.9.0]: https://github.com/gchq/CyberChef/releases/tag/v10.9.0 [10.8.0]: https://github.com/gchq/CyberChef/releases/tag/v10.7.0 [10.7.0]: https://github.com/gchq/CyberChef/releases/tag/v10.7.0 [10.6.0]: https://github.com/gchq/CyberChef/releases/tag/v10.6.0 [10.5.0]: https://github.com/gchq/CyberChef/releases/tag/v10.5.0 [10.4.0]: https://github.com/gchq/CyberChef/releases/tag/v10.4.0 [10.3.0]: https://github.com/gchq/CyberChef/releases/tag/v10.3.0 [10.2.0]: https://github.com/gchq/CyberChef/releases/tag/v10.2.0 [10.1.0]: https://github.com/gchq/CyberChef/releases/tag/v10.1.0 [10.0.0]: https://github.com/gchq/CyberChef/releases/tag/v10.0.0 [9.55.0]: https://github.com/gchq/CyberChef/releases/tag/v9.55.0 [9.54.0]: https://github.com/gchq/CyberChef/releases/tag/v9.54.0 [9.53.0]: https://github.com/gchq/CyberChef/releases/tag/v9.53.0 [9.52.0]: https://github.com/gchq/CyberChef/releases/tag/v9.52.0 [9.51.0]: https://github.com/gchq/CyberChef/releases/tag/v9.51.0 [9.50.0]: https://github.com/gchq/CyberChef/releases/tag/v9.50.0 [9.49.0]: https://github.com/gchq/CyberChef/releases/tag/v9.49.0 [9.48.0]: https://github.com/gchq/CyberChef/releases/tag/v9.48.0 [9.47.0]: https://github.com/gchq/CyberChef/releases/tag/v9.47.0 [9.46.0]: https://github.com/gchq/CyberChef/releases/tag/v9.46.0 [9.45.0]: https://github.com/gchq/CyberChef/releases/tag/v9.45.0 [9.44.0]: https://github.com/gchq/CyberChef/releases/tag/v9.44.0 [9.43.0]: https://github.com/gchq/CyberChef/releases/tag/v9.43.0 [9.42.0]: https://github.com/gchq/CyberChef/releases/tag/v9.42.0 [9.41.0]: https://github.com/gchq/CyberChef/releases/tag/v9.41.0 [9.40.0]: https://github.com/gchq/CyberChef/releases/tag/v9.40.0 [9.39.0]: https://github.com/gchq/CyberChef/releases/tag/v9.39.0 [9.38.0]: https://github.com/gchq/CyberChef/releases/tag/v9.38.0 [9.37.0]: https://github.com/gchq/CyberChef/releases/tag/v9.37.0 [9.36.0]: https://github.com/gchq/CyberChef/releases/tag/v9.36.0 [9.35.0]: https://github.com/gchq/CyberChef/releases/tag/v9.35.0 [9.34.0]: https://github.com/gchq/CyberChef/releases/tag/v9.34.0 [9.33.0]: https://github.com/gchq/CyberChef/releases/tag/v9.33.0 [9.32.0]: https://github.com/gchq/CyberChef/releases/tag/v9.32.0 [9.31.0]: https://github.com/gchq/CyberChef/releases/tag/v9.31.0 [9.30.0]: https://github.com/gchq/CyberChef/releases/tag/v9.30.0 [9.29.0]: https://github.com/gchq/CyberChef/releases/tag/v9.29.0 [9.28.0]: https://github.com/gchq/CyberChef/releases/tag/v9.28.0 [9.27.0]: https://github.com/gchq/CyberChef/releases/tag/v9.27.0 [9.26.0]: https://github.com/gchq/CyberChef/releases/tag/v9.26.0 [9.25.0]: https://github.com/gchq/CyberChef/releases/tag/v9.25.0 [9.24.0]: https://github.com/gchq/CyberChef/releases/tag/v9.24.0 [9.23.0]: https://github.com/gchq/CyberChef/releases/tag/v9.23.0 [9.22.0]: https://github.com/gchq/CyberChef/releases/tag/v9.22.0 [9.21.0]: https://github.com/gchq/CyberChef/releases/tag/v9.21.0 [9.20.0]: https://github.com/gchq/CyberChef/releases/tag/v9.20.0 [9.19.0]: https://github.com/gchq/CyberChef/releases/tag/v9.19.0 [9.18.0]: https://github.com/gchq/CyberChef/releases/tag/v9.18.0 [9.17.0]: https://github.com/gchq/CyberChef/releases/tag/v9.17.0 [9.16.0]: https://github.com/gchq/CyberChef/releases/tag/v9.16.0 [9.15.0]: https://github.com/gchq/CyberChef/releases/tag/v9.15.0 [9.14.0]: https://github.com/gchq/CyberChef/releases/tag/v9.14.0 [9.13.0]: https://github.com/gchq/CyberChef/releases/tag/v9.13.0 [9.12.0]: https://github.com/gchq/CyberChef/releases/tag/v9.12.0 [9.11.0]: https://github.com/gchq/CyberChef/releases/tag/v9.11.0 [9.10.0]: https://github.com/gchq/CyberChef/releases/tag/v9.10.0 [9.9.0]: https://github.com/gchq/CyberChef/releases/tag/v9.9.0 [9.8.0]: https://github.com/gchq/CyberChef/releases/tag/v9.8.0 [9.7.0]: https://github.com/gchq/CyberChef/releases/tag/v9.7.0 [9.6.0]: https://github.com/gchq/CyberChef/releases/tag/v9.6.0 [9.5.0]: https://github.com/gchq/CyberChef/releases/tag/v9.5.0 [9.4.0]: https://github.com/gchq/CyberChef/releases/tag/v9.4.0 [9.3.0]: https://github.com/gchq/CyberChef/releases/tag/v9.3.0 [9.2.0]: https://github.com/gchq/CyberChef/releases/tag/v9.2.0 [9.1.0]: https://github.com/gchq/CyberChef/releases/tag/v9.1.0 [9.0.0]: https://github.com/gchq/CyberChef/releases/tag/v9.0.0 [8.38.0]: https://github.com/gchq/CyberChef/releases/tag/v8.38.0 [8.37.0]: https://github.com/gchq/CyberChef/releases/tag/v8.37.0 [8.36.0]: https://github.com/gchq/CyberChef/releases/tag/v8.36.0 [8.35.0]: https://github.com/gchq/CyberChef/releases/tag/v8.35.0 [8.34.0]: https://github.com/gchq/CyberChef/releases/tag/v8.34.0 [8.33.0]: https://github.com/gchq/CyberChef/releases/tag/v8.33.0 [8.32.0]: https://github.com/gchq/CyberChef/releases/tag/v8.32.0 [8.31.0]: https://github.com/gchq/CyberChef/releases/tag/v8.31.0 [8.30.0]: https://github.com/gchq/CyberChef/releases/tag/v8.30.0 [8.29.0]: https://github.com/gchq/CyberChef/releases/tag/v8.29.0 [8.28.0]: https://github.com/gchq/CyberChef/releases/tag/v8.28.0 [8.27.0]: https://github.com/gchq/CyberChef/releases/tag/v8.27.0 [8.26.0]: https://github.com/gchq/CyberChef/releases/tag/v8.26.0 [8.25.0]: https://github.com/gchq/CyberChef/releases/tag/v8.25.0 [8.24.0]: https://github.com/gchq/CyberChef/releases/tag/v8.24.0 [8.23.1]: https://github.com/gchq/CyberChef/releases/tag/v8.23.1 [8.23.0]: https://github.com/gchq/CyberChef/releases/tag/v8.23.0 [8.22.0]: https://github.com/gchq/CyberChef/releases/tag/v8.22.0 [8.21.0]: https://github.com/gchq/CyberChef/releases/tag/v8.21.0 [8.20.0]: https://github.com/gchq/CyberChef/releases/tag/v8.20.0 [8.19.0]: https://github.com/gchq/CyberChef/releases/tag/v8.19.0 [8.18.0]: https://github.com/gchq/CyberChef/releases/tag/v8.18.0 [8.17.0]: https://github.com/gchq/CyberChef/releases/tag/v8.17.0 [8.16.0]: https://github.com/gchq/CyberChef/releases/tag/v8.16.0 [8.15.0]: https://github.com/gchq/CyberChef/releases/tag/v8.15.0 [8.14.0]: https://github.com/gchq/CyberChef/releases/tag/v8.14.0 [8.13.0]: https://github.com/gchq/CyberChef/releases/tag/v8.13.0 [8.12.0]: https://github.com/gchq/CyberChef/releases/tag/v8.12.0 [8.11.0]: https://github.com/gchq/CyberChef/releases/tag/v8.11.0 [8.10.0]: https://github.com/gchq/CyberChef/releases/tag/v8.10.0 [8.9.0]: https://github.com/gchq/CyberChef/releases/tag/v8.9.0 [8.8.0]: https://github.com/gchq/CyberChef/releases/tag/v8.8.0 [8.7.0]: https://github.com/gchq/CyberChef/releases/tag/v8.7.0 [8.6.0]: https://github.com/gchq/CyberChef/releases/tag/v8.6.0 [8.5.0]: https://github.com/gchq/CyberChef/releases/tag/v8.5.0 [8.4.0]: https://github.com/gchq/CyberChef/releases/tag/v8.4.0 [8.3.0]: https://github.com/gchq/CyberChef/releases/tag/v8.3.0 [8.2.0]: https://github.com/gchq/CyberChef/releases/tag/v8.2.0 [8.1.0]: https://github.com/gchq/CyberChef/releases/tag/v8.1.0 [8.0.0]: https://github.com/gchq/CyberChef/releases/tag/v8.0.0 [7.0.0]: https://github.com/gchq/CyberChef/releases/tag/v7.0.0 [6.0.0]: https://github.com/gchq/CyberChef/releases/tag/v6.0.0 [5.0.0]: https://github.com/gchq/CyberChef/releases/tag/v5.0.0 [4.0.0]: gchq/CyberChef@b1d73a7 [@​n1474335]: https://github.com/n1474335 [@​d98762625]: https://github.com/d98762625 [@​j433866]: https://github.com/j433866 [@​n1073645]: https://github.com/n1073645 [@​GCHQ77703]: https://github.com/GCHQ77703 [@​h345983745]: https://github.com/h345983745 [@​s2224834]: https://github.com/s2224834 [@​artemisbot]: https://github.com/artemisbot [@​tlwr]: https://github.com/tlwr [@​picapi]: https://github.com/picapi [@​Dachande663]: https://github.com/Dachande663 [@​JustAnotherMark]: https://github.com/JustAnotherMark [@​sevzero]: https://github.com/sevzero [@​PenguinGeorge]: https://github.com/PenguinGeorge [@​arnydo]: https://github.com/arnydo [@​klaxon1]: https://github.com/klaxon1 [@​bwhitn]: https://github.com/bwhitn [@​jarmovanlenthe]: https://github.com/jarmovanlenthe [@​tcode2k16]: https://github.com/tcode2k16 [@​Cynser]: https://github.com/Cynser [@​anthony-arnold]: https://github.com/anthony-arnold [@​masq]: https://github.com/masq [@​Ge0rg3]: https://github.com/Ge0rg3 [@​MShwed]: https://github.com/MShwed [@​kassi]: https://github.com/kassi [@​jarrodconnolly]: https://github.com/jarrodconnolly [@​VirtualColossus]: https://github.com/VirtualColossus [@​cbeuw]: https://github.com/cbeuw [@​matthieuxyz]: https://github.com/matthieuxyz [@​Flavsditz]: https://github.com/Flavsditz [@​pointhi]: https://github.com/pointhi [@​MarvinJWendt]: https://github.com/MarvinJWendt [@​dmfj]: https://github.com/dmfj [@​mattnotmitt]: https://github.com/mattnotmitt [@​Danh4]: https://github.com/Danh4 [@​john19696]: https://github.com/john19696 [@​t-8ch]: https://github.com/t-8ch [@​hettysymes]: https://github.com/hettysymes [@​swesven]: https://github.com/swesven [@​mikecat]: https://github.com/mikecat [@​crespyl]: https://github.com/crespyl [@​thomasleplus]: https://github.com/thomasleplus [@​valdelaseras]: https://github.com/valdelaseras [@​brun0ne]: https://github.com/brun0ne [@​joostrijneveld]: https://github.com/joostrijneveld [@​Xenonym]: https://github.com/Xenonym [@​gchq77703]: https://github.com/gchq77703 [@​a3957273]: https://github.com/a3957273 [@​0xThiebaut]: https://github.com/0xThiebaut [@​cnotin]: https://github.com/cnotin [@​KevinSJ]: https://github.com/KevinSJ [@​sw5678]: https://github.com/sw5678 [@​sg5506844]: https://github.com/sg5506844 [@​AliceGrey]: https://github.com/AliceGrey [@​AshCorr]: https://github.com/AshCorr [@​simonw]: https://github.com/simonw [@​chriswhite199]: https://github.com/chriswhite199 [@​breakersall]: https://github.com/breakersall [@​evanreichard]: https://github.com/evanreichard [@​devcydo]: https://github.com/devcydo [@​zb3]: https://github.com/zb3 [@​jkataja]: https://github.com/jkataja [@​tomgond]: https://github.com/tomgond [@​e218736]: https://github.com/e218736 [@​TheZ3ro]: https://github.com/TheZ3ro [@​EvieHarv]: https://github.com/EvieHarv [@​cplussharp]: https://github.com/cplussharp [@​robinsandhu]: https://github.com/robinsandhu [@​eltociear]: https://github.com/eltociear [@​GuilhermoReadonly]: https://github.com/GuilhermoReadonly [@​simonarnell]: https://github.com/simonarnell [@​RandomByte]: https://github.com/RandomByte [@​c65722]: https://github.com/c65722 [@​c65722]: https://github.com/c65722 [@​c65722]: https://github.com/c65722 [@​max0x53]: https://github.com/max0x53 [@​Adamkadaban]: https://github.com/Adamkadaban [@​c65722]: https://github.com/c65722 [@​jb30795]: https://github.com/jb30795 [@​FranciscoPombal]: https://github.com/FranciscoPombal [@​Oshawk]: https://github.com/Oshawk [@​Oshawk]: https://github.com/Oshawk [@​bartblaze]: https://github.com/bartblaze [@​exactlyaron]: https://github.com/exactlyaron [@​k3ach]: https://github.com/k3ach [@​vs4vijay]: https://github.com/vs4vijay [@​FranciscoPombal]: https://github.com/FranciscoPombal [@​FranciscoPombal]: https://github.com/FranciscoPombal [@​linuxgemini]: https://github.com/linuxgemini [@​depperm]: https://github.com/depperm [@​evenstensberg]: https://github.com/evenstensberg [@​bartblaze]: https://github.com/bartblaze [@​0xh3xa]: https://github.com/0xh3xa [@​flakjacket95]: https://github.com/flakjacket95 [@​zhzy0077]: https://github.com/zhzy0077 [@​JSCU-CNI]: https://github.com/JSCU-CNI [@​ccarpo]: https://github.com/ccarpo [@​r4mos]: https://github.com/r4mos [@​0xh3xa]: https://github.com/0xh3xa [@​0xh3xa]: https://github.com/0xh3xa [@​PathToLife]: https://github.com/PathToLife [@​peterc-s]: https://github.com/peterc-s [@​plvie]: https://github.com/plvie [@​kenduguay1]: https://github.com/kenduguay1 [@​jonking-ajar]: https://github.com/jonking-ajar [@​PathToLife]: https://github.com/PathToLife [@​r4mos]: https://github.com/r4mos [@​jg42526]: https://github.com/jg42526 [@​es45411]: https://github.com/es45411 [@​gchq]: https://github.com/gchq [@​gchqdev364]: https://github.com/gchqdev364 [@​GCHQDeveloper94872]: https://github.com/GCHQDeveloper94872 [@​Sma-Das]: https://github.com/Sma-Das [@​gchq]: https://github.com/gchq [@​Odyhibit]: https://github.com/Odyhibit [@​ericli-splunk]: https://github.com/ericli-splunk [@​xumptex]: https://github.com/xumptex [@​bartvanandel]: https://github.com/bartvanandel [@​bartvanandel]: https://github.com/bartvanandel [@​kendallgoto]: https://github.com/kendallgoto [@​remingtr]: https://github.com/remingtr [@​0xff1ce]: https://github.com/0xff1ce [@​starplanet]: https://github.com/starplanet [@​C85297]: https://github.com/C85297 [@​GCHQDeveloper581]: https://github.com/GCHQDeveloper581 [@​ThomasNotTom]: https://github.com/ThomasNotTom [@​rbpi]: https://github.com/rbpi [@​AlexGustafsson]: https://github.com/AlexGustafsson [@​tuliperis]: https://github.com/tuliperis [@​thomasxm]: https://github.com/thomasxm [@​twostraws]: https://github.com/twostraws [8ad18b]: gchq/CyberChef@8ad18bc [9a33498]: gchq/CyberChef@9a33498 [289a417]: gchq/CyberChef@289a417 [e9ca4dc]: gchq/CyberChef@e9ca4dc [dd18e52]: gchq/CyberChef@dd18e52 [a895d1d]: gchq/CyberChef@a895d1d [31a7f83]: gchq/CyberChef@31a7f83 [760eff4]: gchq/CyberChef@760eff4 [65ffd8d]: gchq/CyberChef@65ffd8d [0a353ee]: gchq/CyberChef@0a353ee [66d445c]: gchq/CyberChef@66d445c [ab37c1e]: gchq/CyberChef@ab37c1e [965570d]: gchq/CyberChef@965570d [a477f47]: gchq/CyberChef@a477f47 [7a5225c]: gchq/CyberChef@7a5225c [5f88ae4]: gchq/CyberChef@5f88ae4 [0e82e4b]: gchq/CyberChef@0e82e4b [d635cca]: gchq/CyberChef@d635cca [895a929]: gchq/CyberChef@895a929 [270a333]: gchq/CyberChef@270a333 [d3adfc7]: gchq/CyberChef@d3adfc7 [47c85a1]: gchq/CyberChef@47c85a1 [3822c6c]: gchq/CyberChef@3822c6c [66d445c]: gchq/CyberChef@66d445c [ab37c1e]: gchq/CyberChef@ab37c1e [965570d]: gchq/CyberChef@965570d [a477f47]: gchq/CyberChef@a477f47 [7a5225c]: gchq/CyberChef@7a5225c [5f88ae4]: gchq/CyberChef@5f88ae4 [0e82e4b]: gchq/CyberChef@0e82e4b [d635cca]: gchq/CyberChef@d635cca [895a929]: gchq/CyberChef@895a929 [270a333]: gchq/CyberChef@270a333 [d3adfc7]: gchq/CyberChef@d3adfc7 [47c85a1]: gchq/CyberChef@47c85a1 [3822c6c]: gchq/CyberChef@3822c6c [66d445c]: gchq/CyberChef@66d445c [ab37c1e]: gchq/CyberChef@ab37c1e [965570d]: gchq/CyberChef@965570d [a477f47]: gchq/CyberChef@a477f47 [7a5225c]: gchq/CyberChef@7a5225c [5f88ae4]: gchq/CyberChef@5f88ae4 [0e82e4b]: gchq/CyberChef@0e82e4b [d635cca]: gchq/CyberChef@d635cca [895a929]: gchq/CyberChef@895a929 [270a333]: gchq/CyberChef@270a333 [d3adfc7]: gchq/CyberChef@d3adfc7 [47c85a1]: gchq/CyberChef@47c85a1 [3822c6c]: gchq/CyberChef@3822c6c [66d445c]: gchq/CyberChef@66d445c [#​95]: gchq/CyberChef#299 [#​173]: gchq/CyberChef#173 [#​143]: gchq/CyberChef#143 [#​224]: gchq/CyberChef#224 [#​239]: gchq/CyberChef#239 [#​248]: gchq/CyberChef#248 [#​255]: gchq/CyberChef#255 [#​277]: gchq/CyberChef#277 [#​281]: gchq/CyberChef#281 [#​284]: gchq/CyberChef#284 [#​291]: gchq/CyberChef#291 [#​294]: gchq/CyberChef#294 [#​296]: gchq/CyberChef#296 [#​298]: gchq/CyberChef#298 [#​311]: gchq/CyberChef#311 [#​325]: gchq/CyberChef#325 [#​338]: gchq/CyberChef#338 [#​340]: gchq/CyberChef#340 [#​344]: gchq/CyberChef#344 [#​348]: gchq/CyberChef#348 [#​351]: gchq/CyberChef#351 [#​387]: gchq/CyberChef#387 [#​394]: gchq/CyberChef#394 [#​428]: gchq/CyberChef#428 [#​439]: gchq/CyberChef#439 [#​440]: gchq/CyberChef#440 [#​441]: gchq/CyberChef#441 [#​443]: gchq/CyberChef#443 [#​446]: gchq/CyberChef#446 [#​448]: gchq/CyberChef#448 [#​449]: gchq/CyberChef#449 [#​455]: gchq/CyberChef#455 [#​458]: gchq/CyberChef#458 [#​461]: gchq/CyberChef#461 [#​467]: gchq/CyberChef#467 [#​468]: gchq/CyberChef#468 [#​476]: gchq/CyberChef#476 [#​477]: gchq/CyberChef#477 [#​489]: gchq/CyberChef#489 [#​496]: gchq/CyberChef#496 [#​500]: gchq/CyberChef#500 [#​506]: gchq/CyberChef#506 [#​515]: gchq/CyberChef#515 [#​516]: gchq/CyberChef#516 [#​525]: gchq/CyberChef#525 [#​528]: gchq/CyberChef#528 [#​530]: gchq/CyberChef#530 [#​531]: gchq/CyberChef#531 [#​533]: gchq/CyberChef#533 [#​535]: gchq/CyberChef#535 [#​556]: gchq/CyberChef#556 [#​566]: gchq/CyberChef#566 [#​571]: gchq/CyberChef#571 [#​585]: gchq/CyberChef#585 [#​591]: gchq/CyberChef#591 [#​595]: gchq/CyberChef#595 [#​614]: gchq/CyberChef#614 [#​625]: gchq/CyberChef#625 [#​627]: gchq/CyberChef#627 [#​632]: gchq/CyberChef#632 [#​652]: gchq/CyberChef#652 [#​653]: gchq/CyberChef#653 [#​674]: gchq/CyberChef#674 [#​683]: gchq/CyberChef#683 [#​865]: gchq/CyberChef#865 [#​906]: gchq/CyberChef#906 [#​912]: gchq/CyberChef#912 [#​917]: gchq/CyberChef#917 [#​934]: gchq/CyberChef#934 [#​948]: gchq/CyberChef#948 [#​951]: gchq/CyberChef#951 [#​952]: gchq/CyberChef#952 [#​965]: gchq/CyberChef#965 [#​966]: gchq/CyberChef#966 [#​987]: gchq/CyberChef#987 [#​999]: gchq/CyberChef#999 [#​1006]: gchq/CyberChef#1006 [#​1022]: gchq/CyberChef#1022 [#​1037]: gchq/CyberChef#1037 [#​1045]: gchq/CyberChef#1045 [#​1049]: gchq/CyberChef#1049 [#​1065]: gchq/CyberChef#1065 [#​1066]: gchq/CyberChef#1066 [#​1083]: gchq/CyberChef#1083 [#​1189]: gchq/CyberChef#1189 [#​1242]: gchq/CyberChef#1242 [#​1244]: gchq/CyberChef#1244 [#​1313]: gchq/CyberChef#1313 [#​1326]: gchq/CyberChef#1326 [#​1364]: gchq/CyberChef#1364 [#​1264]: gchq/CyberChef#1264 [#​1266]: gchq/CyberChef#1266 [#​1250]: gchq/CyberChef#1250 [#​1308]: gchq/CyberChef#1308 [#​1405]: gchq/CyberChef#1405 [#​1421]: gchq/CyberChef#1421 [#​1427]: gchq/CyberChef#1427 [#​1472]: gchq/CyberChef#1472 [#​1457]: gchq/CyberChef#1457 [#​1466]: gchq/CyberChef#1466 [#​1456]: gchq/CyberChef#1456 [#​1450]: gchq/CyberChef#1450 [#​1498]: gchq/CyberChef#1498 [#​1499]: gchq/CyberChef#1499 [#​1528]: gchq/CyberChef#1528 [#​661]: gchq/CyberChef#661 [#​493]: gchq/CyberChef#493 [#​592]: gchq/CyberChef#592 [#​1703]: gchq/CyberChef#1703 [#​1675]: gchq/CyberChef#1675 [#​1678]: gchq/CyberChef#1678 [#​1541]: gchq/CyberChef#1541 [#​1667]: gchq/CyberChef#1667 [#​1555]: gchq/CyberChef#1555 [#​1694]: gchq/CyberChef#1694 [#​1699]: gchq/CyberChef#1699 [#​1757]: gchq/CyberChef#1757 [#​1752]: gchq/CyberChef#1752 [#​1753]: gchq/CyberChef#1753 [#​1750]: gchq/CyberChef#1750 [#​1591]: gchq/CyberChef#1591 [#​654]: gchq/CyberChef#654 [#​1762]: gchq/CyberChef#1762 [#​1606]: gchq/CyberChef#1606 [#​1197]: gchq/CyberChef#1197 [#​933]: gchq/CyberChef#933 [#​1361]: gchq/CyberChef#1361 [#​1765]: gchq/CyberChef#1765 [#​1767]: gchq/CyberChef#1767 [#​1769]: gchq/CyberChef#1769 [#​1759]: gchq/CyberChef#1759 [#​1504]: gchq/CyberChef#1504 [#​512]: gchq/CyberChef#512 [#​1732]: gchq/CyberChef#1732 [#​1789]: gchq/CyberChef#1789 [#​1040]: gchq/CyberChef#1040 [#​2176]: gchq/CyberChef#2176 [#​2177]: gchq/CyberChef#2177 [#​2174]: gchq/CyberChef#2174 [#​2058]: gchq/CyberChef#2058 [#​1861]: gchq/CyberChef#1861 [#​2055]: gchq/CyberChef#2055 [#​2169]: gchq/CyberChef#2169 [#​2175]: gchq/CyberChef#2175 [#​2173]: gchq/CyberChef#2173 [#​2172]: gchq/CyberChef#2172 [#​2136]: gchq/CyberChef#2136 [#​2165]: gchq/CyberChef#2165 [#​2159]: gchq/CyberChef#2159 [#​2086]: gchq/CyberChef#2086 [#​2118]: gchq/CyberChef#2118 [#​2166]: gchq/CyberChef#2166 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNDYuMCIsInVwZGF0ZWRJblZlciI6IjQxLjE0Ni4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Reviewed-on: https://git.walbeck.it/mwalbeck/docker-cyberchef/pulls/449 Co-authored-by: renovate-bot <bot@walbeck.it> Co-committed-by: renovate-bot <bot@walbeck.it>
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [gchq/CyberChef](https://github.com/gchq/CyberChef) | minor | `v10.21.0` -> `v10.22.1` | --- ### Release Notes <details> <summary>gchq/CyberChef (gchq/CyberChef)</summary> ### [`v10.22.1`](https://github.com/gchq/CyberChef/releases/tag/v10.22.1) [Compare Source](gchq/CyberChef@v10.22.0...v10.22.1) See the [CHANGELOG](https://github.com/gchq/CyberChef/blob/master/CHANGELOG.md) and [commit messages](https://github.com/gchq/CyberChef/commits/master) for details. ### [`v10.22.0`](https://github.com/gchq/CyberChef/blob/HEAD/CHANGELOG.md#400---2016-11-28) [Compare Source](gchq/CyberChef@v10.21.0...v10.22.0) - Initial open source commit [@​n1474335] | [b1d73a72](gchq/CyberChef@b1d73a7) [10.22.0]: https://github.com/gchq/CyberChef/releases/tag/v10.22.0 [10.21.0]: https://github.com/gchq/CyberChef/releases/tag/v10.21.0 [10.20.0]: https://github.com/gchq/CyberChef/releases/tag/v10.20.0 [10.19.0]: https://github.com/gchq/CyberChef/releases/tag/v10.19.0 [10.18.0]: https://github.com/gchq/CyberChef/releases/tag/v10.18.0 [10.17.0]: https://github.com/gchq/CyberChef/releases/tag/v10.17.0 [10.16.0]: https://github.com/gchq/CyberChef/releases/tag/v10.16.0 [10.15.0]: https://github.com/gchq/CyberChef/releases/tag/v10.15.0 [10.14.0]: https://github.com/gchq/CyberChef/releases/tag/v10.14.0 [10.13.0]: https://github.com/gchq/CyberChef/releases/tag/v10.13.0 [10.12.0]: https://github.com/gchq/CyberChef/releases/tag/v10.12.0 [10.11.0]: https://github.com/gchq/CyberChef/releases/tag/v10.11.0 [10.10.0]: https://github.com/gchq/CyberChef/releases/tag/v10.10.0 [10.9.0]: https://github.com/gchq/CyberChef/releases/tag/v10.9.0 [10.8.0]: https://github.com/gchq/CyberChef/releases/tag/v10.7.0 [10.7.0]: https://github.com/gchq/CyberChef/releases/tag/v10.7.0 [10.6.0]: https://github.com/gchq/CyberChef/releases/tag/v10.6.0 [10.5.0]: https://github.com/gchq/CyberChef/releases/tag/v10.5.0 [10.4.0]: https://github.com/gchq/CyberChef/releases/tag/v10.4.0 [10.3.0]: https://github.com/gchq/CyberChef/releases/tag/v10.3.0 [10.2.0]: https://github.com/gchq/CyberChef/releases/tag/v10.2.0 [10.1.0]: https://github.com/gchq/CyberChef/releases/tag/v10.1.0 [10.0.0]: https://github.com/gchq/CyberChef/releases/tag/v10.0.0 [9.55.0]: https://github.com/gchq/CyberChef/releases/tag/v9.55.0 [9.54.0]: https://github.com/gchq/CyberChef/releases/tag/v9.54.0 [9.53.0]: https://github.com/gchq/CyberChef/releases/tag/v9.53.0 [9.52.0]: https://github.com/gchq/CyberChef/releases/tag/v9.52.0 [9.51.0]: https://github.com/gchq/CyberChef/releases/tag/v9.51.0 [9.50.0]: https://github.com/gchq/CyberChef/releases/tag/v9.50.0 [9.49.0]: https://github.com/gchq/CyberChef/releases/tag/v9.49.0 [9.48.0]: https://github.com/gchq/CyberChef/releases/tag/v9.48.0 [9.47.0]: https://github.com/gchq/CyberChef/releases/tag/v9.47.0 [9.46.0]: https://github.com/gchq/CyberChef/releases/tag/v9.46.0 [9.45.0]: https://github.com/gchq/CyberChef/releases/tag/v9.45.0 [9.44.0]: https://github.com/gchq/CyberChef/releases/tag/v9.44.0 [9.43.0]: https://github.com/gchq/CyberChef/releases/tag/v9.43.0 [9.42.0]: https://github.com/gchq/CyberChef/releases/tag/v9.42.0 [9.41.0]: https://github.com/gchq/CyberChef/releases/tag/v9.41.0 [9.40.0]: https://github.com/gchq/CyberChef/releases/tag/v9.40.0 [9.39.0]: https://github.com/gchq/CyberChef/releases/tag/v9.39.0 [9.38.0]: https://github.com/gchq/CyberChef/releases/tag/v9.38.0 [9.37.0]: https://github.com/gchq/CyberChef/releases/tag/v9.37.0 [9.36.0]: https://github.com/gchq/CyberChef/releases/tag/v9.36.0 [9.35.0]: https://github.com/gchq/CyberChef/releases/tag/v9.35.0 [9.34.0]: https://github.com/gchq/CyberChef/releases/tag/v9.34.0 [9.33.0]: https://github.com/gchq/CyberChef/releases/tag/v9.33.0 [9.32.0]: https://github.com/gchq/CyberChef/releases/tag/v9.32.0 [9.31.0]: https://github.com/gchq/CyberChef/releases/tag/v9.31.0 [9.30.0]: https://github.com/gchq/CyberChef/releases/tag/v9.30.0 [9.29.0]: https://github.com/gchq/CyberChef/releases/tag/v9.29.0 [9.28.0]: https://github.com/gchq/CyberChef/releases/tag/v9.28.0 [9.27.0]: https://github.com/gchq/CyberChef/releases/tag/v9.27.0 [9.26.0]: https://github.com/gchq/CyberChef/releases/tag/v9.26.0 [9.25.0]: https://github.com/gchq/CyberChef/releases/tag/v9.25.0 [9.24.0]: https://github.com/gchq/CyberChef/releases/tag/v9.24.0 [9.23.0]: https://github.com/gchq/CyberChef/releases/tag/v9.23.0 [9.22.0]: https://github.com/gchq/CyberChef/releases/tag/v9.22.0 [9.21.0]: https://github.com/gchq/CyberChef/releases/tag/v9.21.0 [9.20.0]: https://github.com/gchq/CyberChef/releases/tag/v9.20.0 [9.19.0]: https://github.com/gchq/CyberChef/releases/tag/v9.19.0 [9.18.0]: https://github.com/gchq/CyberChef/releases/tag/v9.18.0 [9.17.0]: https://github.com/gchq/CyberChef/releases/tag/v9.17.0 [9.16.0]: https://github.com/gchq/CyberChef/releases/tag/v9.16.0 [9.15.0]: https://github.com/gchq/CyberChef/releases/tag/v9.15.0 [9.14.0]: https://github.com/gchq/CyberChef/releases/tag/v9.14.0 [9.13.0]: https://github.com/gchq/CyberChef/releases/tag/v9.13.0 [9.12.0]: https://github.com/gchq/CyberChef/releases/tag/v9.12.0 [9.11.0]: https://github.com/gchq/CyberChef/releases/tag/v9.11.0 [9.10.0]: https://github.com/gchq/CyberChef/releases/tag/v9.10.0 [9.9.0]: https://github.com/gchq/CyberChef/releases/tag/v9.9.0 [9.8.0]: https://github.com/gchq/CyberChef/releases/tag/v9.8.0 [9.7.0]: https://github.com/gchq/CyberChef/releases/tag/v9.7.0 [9.6.0]: https://github.com/gchq/CyberChef/releases/tag/v9.6.0 [9.5.0]: https://github.com/gchq/CyberChef/releases/tag/v9.5.0 [9.4.0]: https://github.com/gchq/CyberChef/releases/tag/v9.4.0 [9.3.0]: https://github.com/gchq/CyberChef/releases/tag/v9.3.0 [9.2.0]: https://github.com/gchq/CyberChef/releases/tag/v9.2.0 [9.1.0]: https://github.com/gchq/CyberChef/releases/tag/v9.1.0 [9.0.0]: https://github.com/gchq/CyberChef/releases/tag/v9.0.0 [8.38.0]: https://github.com/gchq/CyberChef/releases/tag/v8.38.0 [8.37.0]: https://github.com/gchq/CyberChef/releases/tag/v8.37.0 [8.36.0]: https://github.com/gchq/CyberChef/releases/tag/v8.36.0 [8.35.0]: https://github.com/gchq/CyberChef/releases/tag/v8.35.0 [8.34.0]: https://github.com/gchq/CyberChef/releases/tag/v8.34.0 [8.33.0]: https://github.com/gchq/CyberChef/releases/tag/v8.33.0 [8.32.0]: https://github.com/gchq/CyberChef/releases/tag/v8.32.0 [8.31.0]: https://github.com/gchq/CyberChef/releases/tag/v8.31.0 [8.30.0]: https://github.com/gchq/CyberChef/releases/tag/v8.30.0 [8.29.0]: https://github.com/gchq/CyberChef/releases/tag/v8.29.0 [8.28.0]: https://github.com/gchq/CyberChef/releases/tag/v8.28.0 [8.27.0]: https://github.com/gchq/CyberChef/releases/tag/v8.27.0 [8.26.0]: https://github.com/gchq/CyberChef/releases/tag/v8.26.0 [8.25.0]: https://github.com/gchq/CyberChef/releases/tag/v8.25.0 [8.24.0]: https://github.com/gchq/CyberChef/releases/tag/v8.24.0 [8.23.1]: https://github.com/gchq/CyberChef/releases/tag/v8.23.1 [8.23.0]: https://github.com/gchq/CyberChef/releases/tag/v8.23.0 [8.22.0]: https://github.com/gchq/CyberChef/releases/tag/v8.22.0 [8.21.0]: https://github.com/gchq/CyberChef/releases/tag/v8.21.0 [8.20.0]: https://github.com/gchq/CyberChef/releases/tag/v8.20.0 [8.19.0]: https://github.com/gchq/CyberChef/releases/tag/v8.19.0 [8.18.0]: https://github.com/gchq/CyberChef/releases/tag/v8.18.0 [8.17.0]: https://github.com/gchq/CyberChef/releases/tag/v8.17.0 [8.16.0]: https://github.com/gchq/CyberChef/releases/tag/v8.16.0 [8.15.0]: https://github.com/gchq/CyberChef/releases/tag/v8.15.0 [8.14.0]: https://github.com/gchq/CyberChef/releases/tag/v8.14.0 [8.13.0]: https://github.com/gchq/CyberChef/releases/tag/v8.13.0 [8.12.0]: https://github.com/gchq/CyberChef/releases/tag/v8.12.0 [8.11.0]: https://github.com/gchq/CyberChef/releases/tag/v8.11.0 [8.10.0]: https://github.com/gchq/CyberChef/releases/tag/v8.10.0 [8.9.0]: https://github.com/gchq/CyberChef/releases/tag/v8.9.0 [8.8.0]: https://github.com/gchq/CyberChef/releases/tag/v8.8.0 [8.7.0]: https://github.com/gchq/CyberChef/releases/tag/v8.7.0 [8.6.0]: https://github.com/gchq/CyberChef/releases/tag/v8.6.0 [8.5.0]: https://github.com/gchq/CyberChef/releases/tag/v8.5.0 [8.4.0]: https://github.com/gchq/CyberChef/releases/tag/v8.4.0 [8.3.0]: https://github.com/gchq/CyberChef/releases/tag/v8.3.0 [8.2.0]: https://github.com/gchq/CyberChef/releases/tag/v8.2.0 [8.1.0]: https://github.com/gchq/CyberChef/releases/tag/v8.1.0 [8.0.0]: https://github.com/gchq/CyberChef/releases/tag/v8.0.0 [7.0.0]: https://github.com/gchq/CyberChef/releases/tag/v7.0.0 [6.0.0]: https://github.com/gchq/CyberChef/releases/tag/v6.0.0 [5.0.0]: https://github.com/gchq/CyberChef/releases/tag/v5.0.0 [4.0.0]: gchq/CyberChef@b1d73a7 [@​n1474335]: https://github.com/n1474335 [@​d98762625]: https://github.com/d98762625 [@​j433866]: https://github.com/j433866 [@​n1073645]: https://github.com/n1073645 [@​GCHQ77703]: https://github.com/GCHQ77703 [@​h345983745]: https://github.com/h345983745 [@​s2224834]: https://github.com/s2224834 [@​artemisbot]: https://github.com/artemisbot [@​tlwr]: https://github.com/tlwr [@​picapi]: https://github.com/picapi [@​Dachande663]: https://github.com/Dachande663 [@​JustAnotherMark]: https://github.com/JustAnotherMark [@​sevzero]: https://github.com/sevzero [@​PenguinGeorge]: https://github.com/PenguinGeorge [@​arnydo]: https://github.com/arnydo [@​klaxon1]: https://github.com/klaxon1 [@​bwhitn]: https://github.com/bwhitn [@​jarmovanlenthe]: https://github.com/jarmovanlenthe [@​tcode2k16]: https://github.com/tcode2k16 [@​Cynser]: https://github.com/Cynser [@​anthony-arnold]: https://github.com/anthony-arnold [@​masq]: https://github.com/masq [@​Ge0rg3]: https://github.com/Ge0rg3 [@​MShwed]: https://github.com/MShwed [@​kassi]: https://github.com/kassi [@​jarrodconnolly]: https://github.com/jarrodconnolly [@​VirtualColossus]: https://github.com/VirtualColossus [@​cbeuw]: https://github.com/cbeuw [@​matthieuxyz]: https://github.com/matthieuxyz [@​Flavsditz]: https://github.com/Flavsditz [@​pointhi]: https://github.com/pointhi [@​MarvinJWendt]: https://github.com/MarvinJWendt [@​dmfj]: https://github.com/dmfj [@​mattnotmitt]: https://github.com/mattnotmitt [@​Danh4]: https://github.com/Danh4 [@​john19696]: https://github.com/john19696 [@​t-8ch]: https://github.com/t-8ch [@​hettysymes]: https://github.com/hettysymes [@​swesven]: https://github.com/swesven [@​mikecat]: https://github.com/mikecat [@​crespyl]: https://github.com/crespyl [@​thomasleplus]: https://github.com/thomasleplus [@​valdelaseras]: https://github.com/valdelaseras [@​brun0ne]: https://github.com/brun0ne [@​joostrijneveld]: https://github.com/joostrijneveld [@​Xenonym]: https://github.com/Xenonym [@​gchq77703]: https://github.com/gchq77703 [@​a3957273]: https://github.com/a3957273 [@​0xThiebaut]: https://github.com/0xThiebaut [@​cnotin]: https://github.com/cnotin [@​KevinSJ]: https://github.com/KevinSJ [@​sw5678]: https://github.com/sw5678 [@​sg5506844]: https://github.com/sg5506844 [@​AliceGrey]: https://github.com/AliceGrey [@​AshCorr]: https://github.com/AshCorr [@​simonw]: https://github.com/simonw [@​chriswhite199]: https://github.com/chriswhite199 [@​breakersall]: https://github.com/breakersall [@​evanreichard]: https://github.com/evanreichard [@​devcydo]: https://github.com/devcydo [@​zb3]: https://github.com/zb3 [@​jkataja]: https://github.com/jkataja [@​tomgond]: https://github.com/tomgond [@​e218736]: https://github.com/e218736 [@​TheZ3ro]: https://github.com/TheZ3ro [@​EvieHarv]: https://github.com/EvieHarv [@​cplussharp]: https://github.com/cplussharp [@​robinsandhu]: https://github.com/robinsandhu [@​eltociear]: https://github.com/eltociear [@​GuilhermoReadonly]: https://github.com/GuilhermoReadonly [@​simonarnell]: https://github.com/simonarnell [@​RandomByte]: https://github.com/RandomByte [@​c65722]: https://github.com/c65722 [@​c65722]: https://github.com/c65722 [@​c65722]: https://github.com/c65722 [@​max0x53]: https://github.com/max0x53 [@​Adamkadaban]: https://github.com/Adamkadaban [@​c65722]: https://github.com/c65722 [@​jb30795]: https://github.com/jb30795 [@​FranciscoPombal]: https://github.com/FranciscoPombal [@​Oshawk]: https://github.com/Oshawk [@​Oshawk]: https://github.com/Oshawk [@​bartblaze]: https://github.com/bartblaze [@​exactlyaron]: https://github.com/exactlyaron [@​k3ach]: https://github.com/k3ach [@​vs4vijay]: https://github.com/vs4vijay [@​FranciscoPombal]: https://github.com/FranciscoPombal [@​FranciscoPombal]: https://github.com/FranciscoPombal [@​linuxgemini]: https://github.com/linuxgemini [@​depperm]: https://github.com/depperm [@​evenstensberg]: https://github.com/evenstensberg [@​bartblaze]: https://github.com/bartblaze [@​0xh3xa]: https://github.com/0xh3xa [@​flakjacket95]: https://github.com/flakjacket95 [@​zhzy0077]: https://github.com/zhzy0077 [@​JSCU-CNI]: https://github.com/JSCU-CNI [@​ccarpo]: https://github.com/ccarpo [@​r4mos]: https://github.com/r4mos [@​0xh3xa]: https://github.com/0xh3xa [@​0xh3xa]: https://github.com/0xh3xa [@​PathToLife]: https://github.com/PathToLife [@​peterc-s]: https://github.com/peterc-s [@​plvie]: https://github.com/plvie [@​kenduguay1]: https://github.com/kenduguay1 [@​jonking-ajar]: https://github.com/jonking-ajar [@​PathToLife]: https://github.com/PathToLife [@​r4mos]: https://github.com/r4mos [@​jg42526]: https://github.com/jg42526 [@​es45411]: https://github.com/es45411 [@​gchq]: https://github.com/gchq [@​gchqdev364]: https://github.com/gchqdev364 [@​GCHQDeveloper94872]: https://github.com/GCHQDeveloper94872 [@​Sma-Das]: https://github.com/Sma-Das [@​gchq]: https://github.com/gchq [@​Odyhibit]: https://github.com/Odyhibit [@​ericli-splunk]: https://github.com/ericli-splunk [@​xumptex]: https://github.com/xumptex [@​bartvanandel]: https://github.com/bartvanandel [@​bartvanandel]: https://github.com/bartvanandel [@​kendallgoto]: https://github.com/kendallgoto [@​remingtr]: https://github.com/remingtr [@​0xff1ce]: https://github.com/0xff1ce [@​starplanet]: https://github.com/starplanet [@​C85297]: https://github.com/C85297 [@​GCHQDeveloper581]: https://github.com/GCHQDeveloper581 [@​ThomasNotTom]: https://github.com/ThomasNotTom [@​rbpi]: https://github.com/rbpi [@​AlexGustafsson]: https://github.com/AlexGustafsson [@​tuliperis]: https://github.com/tuliperis [@​thomasxm]: https://github.com/thomasxm [@​twostraws]: https://github.com/twostraws [@​beneri]: https://github.com/beneri [@​t-martine]: https://github.com/t-martine [@​wesinator]: https://github.com/wesinator [@​Raka-loah]: https://github.com/Raka-loah [8ad18b]: gchq/CyberChef@8ad18bc [9a33498]: gchq/CyberChef@9a33498 [289a417]: gchq/CyberChef@289a417 [e9ca4dc]: gchq/CyberChef@e9ca4dc [dd18e52]: gchq/CyberChef@dd18e52 [a895d1d]: gchq/CyberChef@a895d1d [31a7f83]: gchq/CyberChef@31a7f83 [760eff4]: gchq/CyberChef@760eff4 [65ffd8d]: gchq/CyberChef@65ffd8d [0a353ee]: gchq/CyberChef@0a353ee [66d445c]: gchq/CyberChef@66d445c [ab37c1e]: gchq/CyberChef@ab37c1e [965570d]: gchq/CyberChef@965570d [a477f47]: gchq/CyberChef@a477f47 [7a5225c]: gchq/CyberChef@7a5225c [5f88ae4]: gchq/CyberChef@5f88ae4 [0e82e4b]: gchq/CyberChef@0e82e4b [d635cca]: gchq/CyberChef@d635cca [895a929]: gchq/CyberChef@895a929 [270a333]: gchq/CyberChef@270a333 [d3adfc7]: gchq/CyberChef@d3adfc7 [47c85a1]: gchq/CyberChef@47c85a1 [3822c6c]: gchq/CyberChef@3822c6c [66d445c]: gchq/CyberChef@66d445c [ab37c1e]: gchq/CyberChef@ab37c1e [965570d]: gchq/CyberChef@965570d [a477f47]: gchq/CyberChef@a477f47 [7a5225c]: gchq/CyberChef@7a5225c [5f88ae4]: gchq/CyberChef@5f88ae4 [0e82e4b]: gchq/CyberChef@0e82e4b [d635cca]: gchq/CyberChef@d635cca [895a929]: gchq/CyberChef@895a929 [270a333]: gchq/CyberChef@270a333 [d3adfc7]: gchq/CyberChef@d3adfc7 [47c85a1]: gchq/CyberChef@47c85a1 [3822c6c]: gchq/CyberChef@3822c6c [66d445c]: gchq/CyberChef@66d445c [ab37c1e]: gchq/CyberChef@ab37c1e [965570d]: gchq/CyberChef@965570d [a477f47]: gchq/CyberChef@a477f47 [7a5225c]: gchq/CyberChef@7a5225c [5f88ae4]: gchq/CyberChef@5f88ae4 [0e82e4b]: gchq/CyberChef@0e82e4b [d635cca]: gchq/CyberChef@d635cca [895a929]: gchq/CyberChef@895a929 [270a333]: gchq/CyberChef@270a333 [d3adfc7]: gchq/CyberChef@d3adfc7 [47c85a1]: gchq/CyberChef@47c85a1 [3822c6c]: gchq/CyberChef@3822c6c [66d445c]: gchq/CyberChef@66d445c [#​95]: gchq/CyberChef#299 [#​173]: gchq/CyberChef#173 [#​143]: gchq/CyberChef#143 [#​224]: gchq/CyberChef#224 [#​239]: gchq/CyberChef#239 [#​248]: gchq/CyberChef#248 [#​255]: gchq/CyberChef#255 [#​277]: gchq/CyberChef#277 [#​281]: gchq/CyberChef#281 [#​284]: gchq/CyberChef#284 [#​291]: gchq/CyberChef#291 [#​294]: gchq/CyberChef#294 [#​296]: gchq/CyberChef#296 [#​298]: gchq/CyberChef#298 [#​311]: gchq/CyberChef#311 [#​325]: gchq/CyberChef#325 [#​338]: gchq/CyberChef#338 [#​340]: gchq/CyberChef#340 [#​344]: gchq/CyberChef#344 [#​348]: gchq/CyberChef#348 [#​351]: gchq/CyberChef#351 [#​387]: gchq/CyberChef#387 [#​394]: gchq/CyberChef#394 [#​428]: gchq/CyberChef#428 [#​439]: gchq/CyberChef#439 [#​440]: gchq/CyberChef#440 [#​441]: gchq/CyberChef#441 [#​443]: gchq/CyberChef#443 [#​446]: gchq/CyberChef#446 [#​448]: gchq/CyberChef#448 [#​449]: gchq/CyberChef#449 [#​455]: gchq/CyberChef#455 [#​458]: gchq/CyberChef#458 [#​461]: gchq/CyberChef#461 [#​467]: gchq/CyberChef#467 [#​468]: gchq/CyberChef#468 [#​476]: gchq/CyberChef#476 [#​477]: gchq/CyberChef#477 [#​489]: gchq/CyberChef#489 [#​496]: gchq/CyberChef#496 [#​500]: gchq/CyberChef#500 [#​506]: gchq/CyberChef#506 [#​515]: gchq/CyberChef#515 [#​516]: gchq/CyberChef#516 [#​525]: gchq/CyberChef#525 [#​528]: gchq/CyberChef#528 [#​530]: gchq/CyberChef#530 [#​531]: gchq/CyberChef#531 [#​533]: gchq/CyberChef#533 [#​535]: gchq/CyberChef#535 [#​556]: gchq/CyberChef#556 [#​566]: gchq/CyberChef#566 [#​571]: gchq/CyberChef#571 [#​585]: gchq/CyberChef#585 [#​591]: gchq/CyberChef#591 [#​595]: gchq/CyberChef#595 [#​614]: gchq/CyberChef#614 [#​625]: gchq/CyberChef#625 [#​627]: gchq/CyberChef#627 [#​632]: gchq/CyberChef#632 [#​652]: gchq/CyberChef#652 [#​653]: gchq/CyberChef#653 [#​674]: gchq/CyberChef#674 [#​683]: gchq/CyberChef#683 [#​865]: gchq/CyberChef#865 [#​906]: gchq/CyberChef#906 [#​912]: gchq/CyberChef#912 [#​917]: gchq/CyberChef#917 [#​934]: gchq/CyberChef#934 [#​948]: gchq/CyberChef#948 [#​951]: gchq/CyberChef#951 [#​952]: gchq/CyberChef#952 [#​965]: gchq/CyberChef#965 [#​966]: gchq/CyberChef#966 [#​987]: gchq/CyberChef#987 [#​999]: gchq/CyberChef#999 [#​1006]: gchq/CyberChef#1006 [#​1022]: gchq/CyberChef#1022 [#​1037]: gchq/CyberChef#1037 [#​1045]: gchq/CyberChef#1045 [#​1049]: gchq/CyberChef#1049 [#​1065]: gchq/CyberChef#1065 [#​1066]: gchq/CyberChef#1066 [#​1083]: gchq/CyberChef#1083 [#​1189]: gchq/CyberChef#1189 [#​1242]: gchq/CyberChef#1242 [#​1244]: gchq/CyberChef#1244 [#​1313]: gchq/CyberChef#1313 [#​1326]: gchq/CyberChef#1326 [#​1364]: gchq/CyberChef#1364 [#​1264]: gchq/CyberChef#1264 [#​1266]: gchq/CyberChef#1266 [#​1250]: gchq/CyberChef#1250 [#​1308]: gchq/CyberChef#1308 [#​1405]: gchq/CyberChef#1405 [#​1421]: gchq/CyberChef#1421 [#​1427]: gchq/CyberChef#1427 [#​1472]: gchq/CyberChef#1472 [#​1457]: gchq/CyberChef#1457 [#​1466]: gchq/CyberChef#1466 [#​1456]: gchq/CyberChef#1456 [#​1450]: gchq/CyberChef#1450 [#​1498]: gchq/CyberChef#1498 [#​1499]: gchq/CyberChef#1499 [#​1528]: gchq/CyberChef#1528 [#​661]: gchq/CyberChef#661 [#​493]: gchq/CyberChef#493 [#​592]: gchq/CyberChef#592 [#​1703]: gchq/CyberChef#1703 [#​1675]: gchq/CyberChef#1675 [#​1678]: gchq/CyberChef#1678 [#​1541]: gchq/CyberChef#1541 [#​1667]: gchq/CyberChef#1667 [#​1555]: gchq/CyberChef#1555 [#​1694]: gchq/CyberChef#1694 [#​1699]: gchq/CyberChef#1699 [#​1757]: gchq/CyberChef#1757 [#​1752]: gchq/CyberChef#1752 [#​1753]: gchq/CyberChef#1753 [#​1750]: gchq/CyberChef#1750 [#​1591]: gchq/CyberChef#1591 [#​654]: gchq/CyberChef#654 [#​1762]: gchq/CyberChef#1762 [#​1606]: gchq/CyberChef#1606 [#​1197]: gchq/CyberChef#1197 [#​933]: gchq/CyberChef#933 [#​1361]: gchq/CyberChef#1361 [#​1765]: gchq/CyberChef#1765 [#​1767]: gchq/CyberChef#1767 [#​1769]: gchq/CyberChef#1769 [#​1759]: gchq/CyberChef#1759 [#​1504]: gchq/CyberChef#1504 [#​512]: gchq/CyberChef#512 [#​1732]: gchq/CyberChef#1732 [#​1789]: gchq/CyberChef#1789 [#​1040]: gchq/CyberChef#1040 [#​2176]: gchq/CyberChef#2176 [#​2177]: gchq/CyberChef#2177 [#​2174]: gchq/CyberChef#2174 [#​2058]: gchq/CyberChef#2058 [#​1861]: gchq/CyberChef#1861 [#​2055]: gchq/CyberChef#2055 [#​2169]: gchq/CyberChef#2169 [#​2175]: gchq/CyberChef#2175 [#​2173]: gchq/CyberChef#2173 [#​2172]: gchq/CyberChef#2172 [#​2136]: gchq/CyberChef#2136 [#​2165]: gchq/CyberChef#2165 [#​2159]: gchq/CyberChef#2159 [#​2086]: gchq/CyberChef#2086 [#​2118]: gchq/CyberChef#2118 [#​2166]: gchq/CyberChef#2166 [#​2188]: gchq/CyberChef#2188 [#​2137]: gchq/CyberChef#2137 [#​1876]: gchq/CyberChef#1876 [#​2186]: gchq/CyberChef#2186 [#​1573]: gchq/CyberChef#1573 [#​2183]: gchq/CyberChef#2183 [#​2182]: gchq/CyberChef#2182 [#​2181]: gchq/CyberChef#2181 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNDYuMCIsInVwZGF0ZWRJblZlciI6IjQxLjE0Ni4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Reviewed-on: https://git.walbeck.it/mwalbeck/docker-cyberchef/pulls/452 Co-authored-by: renovate-bot <bot@walbeck.it> Co-committed-by: renovate-bot <bot@walbeck.it>
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [gchq/CyberChef](https://github.com/gchq/CyberChef) | minor | `v10.22.1` → `v10.23.0` | --- ### Release Notes <details> <summary>gchq/CyberChef (gchq/CyberChef)</summary> ### [`v10.23.0`](https://github.com/gchq/CyberChef/blob/HEAD/CHANGELOG.md#400---2016-11-28) [Compare Source](gchq/CyberChef@v10.22.1...v10.23.0) - Initial open source commit [@​n1474335] | [b1d73a72](gchq/CyberChef@b1d73a7) [10.23.0]: https://github.com/gchq/CyberChef/releases/tag/v10.23.0 [10.22.0]: https://github.com/gchq/CyberChef/releases/tag/v10.22.0 [10.21.0]: https://github.com/gchq/CyberChef/releases/tag/v10.21.0 [10.20.0]: https://github.com/gchq/CyberChef/releases/tag/v10.20.0 [10.19.0]: https://github.com/gchq/CyberChef/releases/tag/v10.19.0 [10.18.0]: https://github.com/gchq/CyberChef/releases/tag/v10.18.0 [10.17.0]: https://github.com/gchq/CyberChef/releases/tag/v10.17.0 [10.16.0]: https://github.com/gchq/CyberChef/releases/tag/v10.16.0 [10.15.0]: https://github.com/gchq/CyberChef/releases/tag/v10.15.0 [10.14.0]: https://github.com/gchq/CyberChef/releases/tag/v10.14.0 [10.13.0]: https://github.com/gchq/CyberChef/releases/tag/v10.13.0 [10.12.0]: https://github.com/gchq/CyberChef/releases/tag/v10.12.0 [10.11.0]: https://github.com/gchq/CyberChef/releases/tag/v10.11.0 [10.10.0]: https://github.com/gchq/CyberChef/releases/tag/v10.10.0 [10.9.0]: https://github.com/gchq/CyberChef/releases/tag/v10.9.0 [10.8.0]: https://github.com/gchq/CyberChef/releases/tag/v10.7.0 [10.7.0]: https://github.com/gchq/CyberChef/releases/tag/v10.7.0 [10.6.0]: https://github.com/gchq/CyberChef/releases/tag/v10.6.0 [10.5.0]: https://github.com/gchq/CyberChef/releases/tag/v10.5.0 [10.4.0]: https://github.com/gchq/CyberChef/releases/tag/v10.4.0 [10.3.0]: https://github.com/gchq/CyberChef/releases/tag/v10.3.0 [10.2.0]: https://github.com/gchq/CyberChef/releases/tag/v10.2.0 [10.1.0]: https://github.com/gchq/CyberChef/releases/tag/v10.1.0 [10.0.0]: https://github.com/gchq/CyberChef/releases/tag/v10.0.0 [9.55.0]: https://github.com/gchq/CyberChef/releases/tag/v9.55.0 [9.54.0]: https://github.com/gchq/CyberChef/releases/tag/v9.54.0 [9.53.0]: https://github.com/gchq/CyberChef/releases/tag/v9.53.0 [9.52.0]: https://github.com/gchq/CyberChef/releases/tag/v9.52.0 [9.51.0]: https://github.com/gchq/CyberChef/releases/tag/v9.51.0 [9.50.0]: https://github.com/gchq/CyberChef/releases/tag/v9.50.0 [9.49.0]: https://github.com/gchq/CyberChef/releases/tag/v9.49.0 [9.48.0]: https://github.com/gchq/CyberChef/releases/tag/v9.48.0 [9.47.0]: https://github.com/gchq/CyberChef/releases/tag/v9.47.0 [9.46.0]: https://github.com/gchq/CyberChef/releases/tag/v9.46.0 [9.45.0]: https://github.com/gchq/CyberChef/releases/tag/v9.45.0 [9.44.0]: https://github.com/gchq/CyberChef/releases/tag/v9.44.0 [9.43.0]: https://github.com/gchq/CyberChef/releases/tag/v9.43.0 [9.42.0]: https://github.com/gchq/CyberChef/releases/tag/v9.42.0 [9.41.0]: https://github.com/gchq/CyberChef/releases/tag/v9.41.0 [9.40.0]: https://github.com/gchq/CyberChef/releases/tag/v9.40.0 [9.39.0]: https://github.com/gchq/CyberChef/releases/tag/v9.39.0 [9.38.0]: https://github.com/gchq/CyberChef/releases/tag/v9.38.0 [9.37.0]: https://github.com/gchq/CyberChef/releases/tag/v9.37.0 [9.36.0]: https://github.com/gchq/CyberChef/releases/tag/v9.36.0 [9.35.0]: https://github.com/gchq/CyberChef/releases/tag/v9.35.0 [9.34.0]: https://github.com/gchq/CyberChef/releases/tag/v9.34.0 [9.33.0]: https://github.com/gchq/CyberChef/releases/tag/v9.33.0 [9.32.0]: https://github.com/gchq/CyberChef/releases/tag/v9.32.0 [9.31.0]: https://github.com/gchq/CyberChef/releases/tag/v9.31.0 [9.30.0]: https://github.com/gchq/CyberChef/releases/tag/v9.30.0 [9.29.0]: https://github.com/gchq/CyberChef/releases/tag/v9.29.0 [9.28.0]: https://github.com/gchq/CyberChef/releases/tag/v9.28.0 [9.27.0]: https://github.com/gchq/CyberChef/releases/tag/v9.27.0 [9.26.0]: https://github.com/gchq/CyberChef/releases/tag/v9.26.0 [9.25.0]: https://github.com/gchq/CyberChef/releases/tag/v9.25.0 [9.24.0]: https://github.com/gchq/CyberChef/releases/tag/v9.24.0 [9.23.0]: https://github.com/gchq/CyberChef/releases/tag/v9.23.0 [9.22.0]: https://github.com/gchq/CyberChef/releases/tag/v9.22.0 [9.21.0]: https://github.com/gchq/CyberChef/releases/tag/v9.21.0 [9.20.0]: https://github.com/gchq/CyberChef/releases/tag/v9.20.0 [9.19.0]: https://github.com/gchq/CyberChef/releases/tag/v9.19.0 [9.18.0]: https://github.com/gchq/CyberChef/releases/tag/v9.18.0 [9.17.0]: https://github.com/gchq/CyberChef/releases/tag/v9.17.0 [9.16.0]: https://github.com/gchq/CyberChef/releases/tag/v9.16.0 [9.15.0]: https://github.com/gchq/CyberChef/releases/tag/v9.15.0 [9.14.0]: https://github.com/gchq/CyberChef/releases/tag/v9.14.0 [9.13.0]: https://github.com/gchq/CyberChef/releases/tag/v9.13.0 [9.12.0]: https://github.com/gchq/CyberChef/releases/tag/v9.12.0 [9.11.0]: https://github.com/gchq/CyberChef/releases/tag/v9.11.0 [9.10.0]: https://github.com/gchq/CyberChef/releases/tag/v9.10.0 [9.9.0]: https://github.com/gchq/CyberChef/releases/tag/v9.9.0 [9.8.0]: https://github.com/gchq/CyberChef/releases/tag/v9.8.0 [9.7.0]: https://github.com/gchq/CyberChef/releases/tag/v9.7.0 [9.6.0]: https://github.com/gchq/CyberChef/releases/tag/v9.6.0 [9.5.0]: https://github.com/gchq/CyberChef/releases/tag/v9.5.0 [9.4.0]: https://github.com/gchq/CyberChef/releases/tag/v9.4.0 [9.3.0]: https://github.com/gchq/CyberChef/releases/tag/v9.3.0 [9.2.0]: https://github.com/gchq/CyberChef/releases/tag/v9.2.0 [9.1.0]: https://github.com/gchq/CyberChef/releases/tag/v9.1.0 [9.0.0]: https://github.com/gchq/CyberChef/releases/tag/v9.0.0 [8.38.0]: https://github.com/gchq/CyberChef/releases/tag/v8.38.0 [8.37.0]: https://github.com/gchq/CyberChef/releases/tag/v8.37.0 [8.36.0]: https://github.com/gchq/CyberChef/releases/tag/v8.36.0 [8.35.0]: https://github.com/gchq/CyberChef/releases/tag/v8.35.0 [8.34.0]: https://github.com/gchq/CyberChef/releases/tag/v8.34.0 [8.33.0]: https://github.com/gchq/CyberChef/releases/tag/v8.33.0 [8.32.0]: https://github.com/gchq/CyberChef/releases/tag/v8.32.0 [8.31.0]: https://github.com/gchq/CyberChef/releases/tag/v8.31.0 [8.30.0]: https://github.com/gchq/CyberChef/releases/tag/v8.30.0 [8.29.0]: https://github.com/gchq/CyberChef/releases/tag/v8.29.0 [8.28.0]: https://github.com/gchq/CyberChef/releases/tag/v8.28.0 [8.27.0]: https://github.com/gchq/CyberChef/releases/tag/v8.27.0 [8.26.0]: https://github.com/gchq/CyberChef/releases/tag/v8.26.0 [8.25.0]: https://github.com/gchq/CyberChef/releases/tag/v8.25.0 [8.24.0]: https://github.com/gchq/CyberChef/releases/tag/v8.24.0 [8.23.1]: https://github.com/gchq/CyberChef/releases/tag/v8.23.1 [8.23.0]: https://github.com/gchq/CyberChef/releases/tag/v8.23.0 [8.22.0]: https://github.com/gchq/CyberChef/releases/tag/v8.22.0 [8.21.0]: https://github.com/gchq/CyberChef/releases/tag/v8.21.0 [8.20.0]: https://github.com/gchq/CyberChef/releases/tag/v8.20.0 [8.19.0]: https://github.com/gchq/CyberChef/releases/tag/v8.19.0 [8.18.0]: https://github.com/gchq/CyberChef/releases/tag/v8.18.0 [8.17.0]: https://github.com/gchq/CyberChef/releases/tag/v8.17.0 [8.16.0]: https://github.com/gchq/CyberChef/releases/tag/v8.16.0 [8.15.0]: https://github.com/gchq/CyberChef/releases/tag/v8.15.0 [8.14.0]: https://github.com/gchq/CyberChef/releases/tag/v8.14.0 [8.13.0]: https://github.com/gchq/CyberChef/releases/tag/v8.13.0 [8.12.0]: https://github.com/gchq/CyberChef/releases/tag/v8.12.0 [8.11.0]: https://github.com/gchq/CyberChef/releases/tag/v8.11.0 [8.10.0]: https://github.com/gchq/CyberChef/releases/tag/v8.10.0 [8.9.0]: https://github.com/gchq/CyberChef/releases/tag/v8.9.0 [8.8.0]: https://github.com/gchq/CyberChef/releases/tag/v8.8.0 [8.7.0]: https://github.com/gchq/CyberChef/releases/tag/v8.7.0 [8.6.0]: https://github.com/gchq/CyberChef/releases/tag/v8.6.0 [8.5.0]: https://github.com/gchq/CyberChef/releases/tag/v8.5.0 [8.4.0]: https://github.com/gchq/CyberChef/releases/tag/v8.4.0 [8.3.0]: https://github.com/gchq/CyberChef/releases/tag/v8.3.0 [8.2.0]: https://github.com/gchq/CyberChef/releases/tag/v8.2.0 [8.1.0]: https://github.com/gchq/CyberChef/releases/tag/v8.1.0 [8.0.0]: https://github.com/gchq/CyberChef/releases/tag/v8.0.0 [7.0.0]: https://github.com/gchq/CyberChef/releases/tag/v7.0.0 [6.0.0]: https://github.com/gchq/CyberChef/releases/tag/v6.0.0 [5.0.0]: https://github.com/gchq/CyberChef/releases/tag/v5.0.0 [4.0.0]: gchq/CyberChef@b1d73a7 [@​n1474335]: https://github.com/n1474335 [@​d98762625]: https://github.com/d98762625 [@​j433866]: https://github.com/j433866 [@​n1073645]: https://github.com/n1073645 [@​GCHQ77703]: https://github.com/GCHQ77703 [@​h345983745]: https://github.com/h345983745 [@​s2224834]: https://github.com/s2224834 [@​artemisbot]: https://github.com/artemisbot [@​tlwr]: https://github.com/tlwr [@​picapi]: https://github.com/picapi [@​Dachande663]: https://github.com/Dachande663 [@​JustAnotherMark]: https://github.com/JustAnotherMark [@​sevzero]: https://github.com/sevzero [@​PenguinGeorge]: https://github.com/PenguinGeorge [@​arnydo]: https://github.com/arnydo [@​klaxon1]: https://github.com/klaxon1 [@​bwhitn]: https://github.com/bwhitn [@​jarmovanlenthe]: https://github.com/jarmovanlenthe [@​tcode2k16]: https://github.com/tcode2k16 [@​Cynser]: https://github.com/Cynser [@​anthony-arnold]: https://github.com/anthony-arnold [@​masq]: https://github.com/masq [@​Ge0rg3]: https://github.com/Ge0rg3 [@​MShwed]: https://github.com/MShwed [@​kassi]: https://github.com/kassi [@​jarrodconnolly]: https://github.com/jarrodconnolly [@​VirtualColossus]: https://github.com/VirtualColossus [@​cbeuw]: https://github.com/cbeuw [@​matthieuxyz]: https://github.com/matthieuxyz [@​Flavsditz]: https://github.com/Flavsditz [@​pointhi]: https://github.com/pointhi [@​MarvinJWendt]: https://github.com/MarvinJWendt [@​dmfj]: https://github.com/dmfj [@​mattnotmitt]: https://github.com/mattnotmitt [@​Danh4]: https://github.com/Danh4 [@​john19696]: https://github.com/john19696 [@​t-8ch]: https://github.com/t-8ch [@​hettysymes]: https://github.com/hettysymes [@​swesven]: https://github.com/swesven [@​mikecat]: https://github.com/mikecat [@​crespyl]: https://github.com/crespyl [@​thomasleplus]: https://github.com/thomasleplus [@​valdelaseras]: https://github.com/valdelaseras [@​brun0ne]: https://github.com/brun0ne [@​joostrijneveld]: https://github.com/joostrijneveld [@​Xenonym]: https://github.com/Xenonym [@​gchq77703]: https://github.com/gchq77703 [@​a3957273]: https://github.com/a3957273 [@​0xThiebaut]: https://github.com/0xThiebaut [@​cnotin]: https://github.com/cnotin [@​KevinSJ]: https://github.com/KevinSJ [@​sw5678]: https://github.com/sw5678 [@​sg5506844]: https://github.com/sg5506844 [@​AliceGrey]: https://github.com/AliceGrey [@​AshCorr]: https://github.com/AshCorr [@​simonw]: https://github.com/simonw [@​chriswhite199]: https://github.com/chriswhite199 [@​breakersall]: https://github.com/breakersall [@​evanreichard]: https://github.com/evanreichard [@​devcydo]: https://github.com/devcydo [@​zb3]: https://github.com/zb3 [@​jkataja]: https://github.com/jkataja [@​tomgond]: https://github.com/tomgond [@​e218736]: https://github.com/e218736 [@​TheZ3ro]: https://github.com/TheZ3ro [@​EvieHarv]: https://github.com/EvieHarv [@​cplussharp]: https://github.com/cplussharp [@​robinsandhu]: https://github.com/robinsandhu [@​eltociear]: https://github.com/eltociear [@​GuilhermoReadonly]: https://github.com/GuilhermoReadonly [@​simonarnell]: https://github.com/simonarnell [@​RandomByte]: https://github.com/RandomByte [@​c65722]: https://github.com/c65722 [@​c65722]: https://github.com/c65722 [@​c65722]: https://github.com/c65722 [@​max0x53]: https://github.com/max0x53 [@​Adamkadaban]: https://github.com/Adamkadaban [@​c65722]: https://github.com/c65722 [@​jb30795]: https://github.com/jb30795 [@​FranciscoPombal]: https://github.com/FranciscoPombal [@​Oshawk]: https://github.com/Oshawk [@​Oshawk]: https://github.com/Oshawk [@​bartblaze]: https://github.com/bartblaze [@​exactlyaron]: https://github.com/exactlyaron [@​k3ach]: https://github.com/k3ach [@​vs4vijay]: https://github.com/vs4vijay [@​FranciscoPombal]: https://github.com/FranciscoPombal [@​FranciscoPombal]: https://github.com/FranciscoPombal [@​linuxgemini]: https://github.com/linuxgemini [@​depperm]: https://github.com/depperm [@​evenstensberg]: https://github.com/evenstensberg [@​bartblaze]: https://github.com/bartblaze [@​0xh3xa]: https://github.com/0xh3xa [@​flakjacket95]: https://github.com/flakjacket95 [@​zhzy0077]: https://github.com/zhzy0077 [@​JSCU-CNI]: https://github.com/JSCU-CNI [@​ccarpo]: https://github.com/ccarpo [@​r4mos]: https://github.com/r4mos [@​0xh3xa]: https://github.com/0xh3xa [@​0xh3xa]: https://github.com/0xh3xa [@​PathToLife]: https://github.com/PathToLife [@​peterc-s]: https://github.com/peterc-s [@​plvie]: https://github.com/plvie [@​kenduguay1]: https://github.com/kenduguay1 [@​jonking-ajar]: https://github.com/jonking-ajar [@​PathToLife]: https://github.com/PathToLife [@​r4mos]: https://github.com/r4mos [@​jg42526]: https://github.com/jg42526 [@​es45411]: https://github.com/es45411 [@​gchq]: https://github.com/gchq [@​gchqdev364]: https://github.com/gchqdev364 [@​GCHQDeveloper94872]: https://github.com/GCHQDeveloper94872 [@​Sma-Das]: https://github.com/Sma-Das [@​gchq]: https://github.com/gchq [@​Odyhibit]: https://github.com/Odyhibit [@​ericli-splunk]: https://github.com/ericli-splunk [@​xumptex]: https://github.com/xumptex [@​bartvanandel]: https://github.com/bartvanandel [@​bartvanandel]: https://github.com/bartvanandel [@​kendallgoto]: https://github.com/kendallgoto [@​remingtr]: https://github.com/remingtr [@​0xff1ce]: https://github.com/0xff1ce [@​starplanet]: https://github.com/starplanet [@​C85297]: https://github.com/C85297 [@​GCHQDeveloper581]: https://github.com/GCHQDeveloper581 [@​ThomasNotTom]: https://github.com/ThomasNotTom [@​rbpi]: https://github.com/rbpi [@​AlexGustafsson]: https://github.com/AlexGustafsson [@​tuliperis]: https://github.com/tuliperis [@​thomasxm]: https://github.com/thomasxm [@​twostraws]: https://github.com/twostraws [@​beneri]: https://github.com/beneri [@​t-martine]: https://github.com/t-martine [@​wesinator]: https://github.com/wesinator [@​Raka-loah]: https://github.com/Raka-loah [@​Kalkran]: https://github.com/Kalkran [@​saschabuehrle]: https://github.com/saschabuehrle [@​j264415]: https://github.com/j264415 [@​Lamby777]: https://github.com/Lamby777 [@​rtpt-romankarwacik]: https://github.com/rtpt-romankarwacik [@​d0s1nt]: https://github.com/d0s1nt [@​brick-pixel]: https://github.com/brick-pixel [@​am-periphery]: https://github.com/am-periphery [@​p-leriche]: https://github.com/p-leriche [@​Swonkie]: https://github.com/Swonkie [@​ThePlayer372-FR]: https://github.com/ThePlayer372-FR [@​W-Floyd]: https://github.com/W-Floyd [@​cktgh]: https://github.com/cktgh [@​aby-jo]: https://github.com/aby-jo [@​atsiv1]: https://github.com/atsiv1 [@​fjh1997]: https://github.com/fjh1997 [8ad18b]: gchq/CyberChef@8ad18bc [9a33498]: gchq/CyberChef@9a33498 [289a417]: gchq/CyberChef@289a417 [e9ca4dc]: gchq/CyberChef@e9ca4dc [dd18e52]: gchq/CyberChef@dd18e52 [a895d1d]: gchq/CyberChef@a895d1d [31a7f83]: gchq/CyberChef@31a7f83 [760eff4]: gchq/CyberChef@760eff4 [65ffd8d]: gchq/CyberChef@65ffd8d [0a353ee]: gchq/CyberChef@0a353ee [66d445c]: gchq/CyberChef@66d445c [ab37c1e]: gchq/CyberChef@ab37c1e [965570d]: gchq/CyberChef@965570d [a477f47]: gchq/CyberChef@a477f47 [7a5225c]: gchq/CyberChef@7a5225c [5f88ae4]: gchq/CyberChef@5f88ae4 [0e82e4b]: gchq/CyberChef@0e82e4b [d635cca]: gchq/CyberChef@d635cca [895a929]: gchq/CyberChef@895a929 [270a333]: gchq/CyberChef@270a333 [d3adfc7]: gchq/CyberChef@d3adfc7 [47c85a1]: gchq/CyberChef@47c85a1 [3822c6c]: gchq/CyberChef@3822c6c [66d445c]: gchq/CyberChef@66d445c [ab37c1e]: gchq/CyberChef@ab37c1e [965570d]: gchq/CyberChef@965570d [a477f47]: gchq/CyberChef@a477f47 [7a5225c]: gchq/CyberChef@7a5225c [5f88ae4]: gchq/CyberChef@5f88ae4 [0e82e4b]: gchq/CyberChef@0e82e4b [d635cca]: gchq/CyberChef@d635cca [895a929]: gchq/CyberChef@895a929 [270a333]: gchq/CyberChef@270a333 [d3adfc7]: gchq/CyberChef@d3adfc7 [47c85a1]: gchq/CyberChef@47c85a1 [3822c6c]: gchq/CyberChef@3822c6c [66d445c]: gchq/CyberChef@66d445c [ab37c1e]: gchq/CyberChef@ab37c1e [965570d]: gchq/CyberChef@965570d [a477f47]: gchq/CyberChef@a477f47 [7a5225c]: gchq/CyberChef@7a5225c [5f88ae4]: gchq/CyberChef@5f88ae4 [0e82e4b]: gchq/CyberChef@0e82e4b [d635cca]: gchq/CyberChef@d635cca [895a929]: gchq/CyberChef@895a929 [270a333]: gchq/CyberChef@270a333 [d3adfc7]: gchq/CyberChef@d3adfc7 [47c85a1]: gchq/CyberChef@47c85a1 [3822c6c]: gchq/CyberChef@3822c6c [66d445c]: gchq/CyberChef@66d445c [#​95]: gchq/CyberChef#299 [#​173]: gchq/CyberChef#173 [#​143]: gchq/CyberChef#143 [#​224]: gchq/CyberChef#224 [#​239]: gchq/CyberChef#239 [#​248]: gchq/CyberChef#248 [#​255]: gchq/CyberChef#255 [#​277]: gchq/CyberChef#277 [#​281]: gchq/CyberChef#281 [#​284]: gchq/CyberChef#284 [#​291]: gchq/CyberChef#291 [#​294]: gchq/CyberChef#294 [#​296]: gchq/CyberChef#296 [#​298]: gchq/CyberChef#298 [#​311]: gchq/CyberChef#311 [#​325]: gchq/CyberChef#325 [#​338]: gchq/CyberChef#338 [#​340]: gchq/CyberChef#340 [#​344]: gchq/CyberChef#344 [#​348]: gchq/CyberChef#348 [#​351]: gchq/CyberChef#351 [#​387]: gchq/CyberChef#387 [#​394]: gchq/CyberChef#394 [#​428]: gchq/CyberChef#428 [#​439]: gchq/CyberChef#439 [#​440]: gchq/CyberChef#440 [#​441]: gchq/CyberChef#441 [#​443]: gchq/CyberChef#443 [#​446]: gchq/CyberChef#446 [#​448]: gchq/CyberChef#448 [#​449]: gchq/CyberChef#449 [#​455]: gchq/CyberChef#455 [#​458]: gchq/CyberChef#458 [#​461]: gchq/CyberChef#461 [#​467]: gchq/CyberChef#467 [#​468]: gchq/CyberChef#468 [#​476]: gchq/CyberChef#476 [#​477]: gchq/CyberChef#477 [#​489]: gchq/CyberChef#489 [#​496]: gchq/CyberChef#496 [#​500]: gchq/CyberChef#500 [#​506]: gchq/CyberChef#506 [#​515]: gchq/CyberChef#515 [#​516]: gchq/CyberChef#516 [#​525]: gchq/CyberChef#525 [#​528]: gchq/CyberChef#528 [#​530]: gchq/CyberChef#530 [#​531]: gchq/CyberChef#531 [#​533]: gchq/CyberChef#533 [#​535]: gchq/CyberChef#535 [#​556]: gchq/CyberChef#556 [#​566]: gchq/CyberChef#566 [#​571]: gchq/CyberChef#571 [#​585]: gchq/CyberChef#585 [#​591]: gchq/CyberChef#591 [#​595]: gchq/CyberChef#595 [#​614]: gchq/CyberChef#614 [#​625]: gchq/CyberChef#625 [#​627]: gchq/CyberChef#627 [#​632]: gchq/CyberChef#632 [#​652]: gchq/CyberChef#652 [#​653]: gchq/CyberChef#653 [#​674]: gchq/CyberChef#674 [#​683]: gchq/CyberChef#683 [#​865]: gchq/CyberChef#865 [#​906]: gchq/CyberChef#906 [#​912]: gchq/CyberChef#912 [#​917]: gchq/CyberChef#917 [#​934]: gchq/CyberChef#934 [#​948]: gchq/CyberChef#948 [#​951]: gchq/CyberChef#951 [#​952]: gchq/CyberChef#952 [#​965]: gchq/CyberChef#965 [#​966]: gchq/CyberChef#966 [#​987]: gchq/CyberChef#987 [#​999]: gchq/CyberChef#999 [#​1006]: gchq/CyberChef#1006 [#​1022]: gchq/CyberChef#1022 [#​1037]: gchq/CyberChef#1037 [#​1045]: gchq/CyberChef#1045 [#​1049]: gchq/CyberChef#1049 [#​1065]: gchq/CyberChef#1065 [#​1066]: gchq/CyberChef#1066 [#​1083]: gchq/CyberChef#1083 [#​1189]: gchq/CyberChef#1189 [#​1242]: gchq/CyberChef#1242 [#​1244]: gchq/CyberChef#1244 [#​1313]: gchq/CyberChef#1313 [#​1326]: gchq/CyberChef#1326 [#​1364]: gchq/CyberChef#1364 [#​1264]: gchq/CyberChef#1264 [#​1266]: gchq/CyberChef#1266 [#​1250]: gchq/CyberChef#1250 [#​1308]: gchq/CyberChef#1308 [#​1405]: gchq/CyberChef#1405 [#​1421]: gchq/CyberChef#1421 [#​1427]: gchq/CyberChef#1427 [#​1472]: gchq/CyberChef#1472 [#​1457]: gchq/CyberChef#1457 [#​1466]: gchq/CyberChef#1466 [#​1456]: gchq/CyberChef#1456 [#​1450]: gchq/CyberChef#1450 [#​1498]: gchq/CyberChef#1498 [#​1499]: gchq/CyberChef#1499 [#​1528]: gchq/CyberChef#1528 [#​661]: gchq/CyberChef#661 [#​493]: gchq/CyberChef#493 [#​592]: gchq/CyberChef#592 [#​1703]: gchq/CyberChef#1703 [#​1675]: gchq/CyberChef#1675 [#​1678]: gchq/CyberChef#1678 [#​1541]: gchq/CyberChef#1541 [#​1667]: gchq/CyberChef#1667 [#​1555]: gchq/CyberChef#1555 [#​1694]: gchq/CyberChef#1694 [#​1699]: gchq/CyberChef#1699 [#​1757]: gchq/CyberChef#1757 [#​1752]: gchq/CyberChef#1752 [#​1753]: gchq/CyberChef#1753 [#​1750]: gchq/CyberChef#1750 [#​1591]: gchq/CyberChef#1591 [#​654]: gchq/CyberChef#654 [#​1762]: gchq/CyberChef#1762 [#​1606]: gchq/CyberChef#1606 [#​1197]: gchq/CyberChef#1197 [#​933]: gchq/CyberChef#933 [#​1361]: gchq/CyberChef#1361 [#​1765]: gchq/CyberChef#1765 [#​1767]: gchq/CyberChef#1767 [#​1769]: gchq/CyberChef#1769 [#​1759]: gchq/CyberChef#1759 [#​1504]: gchq/CyberChef#1504 [#​512]: gchq/CyberChef#512 [#​1732]: gchq/CyberChef#1732 [#​1789]: gchq/CyberChef#1789 [#​1040]: gchq/CyberChef#1040 [#​2176]: gchq/CyberChef#2176 [#​2177]: gchq/CyberChef#2177 [#​2174]: gchq/CyberChef#2174 [#​2058]: gchq/CyberChef#2058 [#​1861]: gchq/CyberChef#1861 [#​2055]: gchq/CyberChef#2055 [#​2169]: gchq/CyberChef#2169 [#​2175]: gchq/CyberChef#2175 [#​2173]: gchq/CyberChef#2173 [#​2172]: gchq/CyberChef#2172 [#​2136]: gchq/CyberChef#2136 [#​2165]: gchq/CyberChef#2165 [#​2159]: gchq/CyberChef#2159 [#​2086]: gchq/CyberChef#2086 [#​2118]: gchq/CyberChef#2118 [#​2166]: gchq/CyberChef#2166 [#​2188]: gchq/CyberChef#2188 [#​2137]: gchq/CyberChef#2137 [#​1876]: gchq/CyberChef#1876 [#​2186]: gchq/CyberChef#2186 [#​1573]: gchq/CyberChef#1573 [#​2183]: gchq/CyberChef#2183 [#​2182]: gchq/CyberChef#2182 [#​2181]: gchq/CyberChef#2181 [#​2307]: gchq/CyberChef#2307 [#​2304]: gchq/CyberChef#2304 [#​2305]: gchq/CyberChef#2305 [#​2303]: gchq/CyberChef#2303 [#​2302]: gchq/CyberChef#2302 [#​2299]: gchq/CyberChef#2299 [#​2297]: gchq/CyberChef#2297 [#​2296]: gchq/CyberChef#2296 [#​2292]: gchq/CyberChef#2292 [#​2295]: gchq/CyberChef#2295 [#​2279]: gchq/CyberChef#2279 [#​2249]: gchq/CyberChef#2249 [#​1733]: gchq/CyberChef#1733 [#​1722]: gchq/CyberChef#1722 [#​1727]: https://github.com/gchq/CyberChef/pull/1727 [#​2263]: https://github.com/gchq/CyberChef/pull/2263 [#​1540]: https://github.com/gchq/CyberChef/pull/1540 [#​2262]: https://github.com/gchq/CyberChef/pull/2262 [#​2266]: https://github.com/gchq/CyberChef/pull/2266 [#​2237]: https://github.com/gchq/CyberChef/pull/2237 [#​2261]: https://github.com/gchq/CyberChef/pull/2261 [#​2260]: https://github.com/gchq/CyberChef/pull/2260 [#​2170]: https://github.com/gchq/CyberChef/pull/2170 [#​2210]: https://github.com/gchq/CyberChef/pull/2210 [#​2259]: https://github.com/gchq/CyberChef/pull/2259 [#​2257]: https://github.com/gchq/CyberChef/pull/2257 [#​2250]: https://github.com/gchq/CyberChef/pull/2250 [#​2236]: https://github.com/gchq/CyberChef/pull/2236 [#​2234]: https://github.com/gchq/CyberChef/pull/2234 [#​2235]: https://github.com/gchq/CyberChef/pull/2235 [#​2229]: https://github.com/gchq/CyberChef/pull/2229 [#​2228]: https://github.com/gchq/CyberChef/pull/2228 [#​2231]: https://github.com/gchq/CyberChef/pull/2231 [#​2156]: https://github.com/gchq/CyberChef/pull/2156 [#​2213]: https://github.com/gchq/CyberChef/pull/2213 [#​2163]: https://github.com/gchq/CyberChef/pull/2163 [#​2161]: https://github.com/gchq/CyberChef/pull/2161 [#​2208]: https://github.com/gchq/CyberChef/pull/2208 [#​2223]: https://github.com/gchq/CyberChef/pull/2223 [#​2219]: https://github.com/gchq/CyberChef/pull/2219 [#​2218]: https://github.com/gchq/CyberChef/pull/2218 [#​2151]: https://github.com/gchq/CyberChef/pull/2151 [#​2205]: https://github.com/gchq/CyberChef/pull/2205 [#​2071]: https://github.com/gchq/CyberChef/pull/2071 [#​2133]: https://github.com/gchq/CyberChef/pull/2133 [#​2017]: https://github.com/gchq/CyberChef/pull/2017 [#​2204]: https://github.com/gchq/CyberChef/pull/2204 [#​2201]: https://github.com/gchq/CyberChef/pull/2201 [#​2195]: https://github.com/gchq/CyberChef/pull/2195 [#​2200]: https://github.com/gchq/CyberChef/pull/2200 [#​2199]: https://github.com/gchq/CyberChef/pull/2199 [#​2125]: https://github.com/gchq/CyberChef/pull/2125 [#​2171]: https://github.com/gchq/CyberChef/pull/2171 [#​2194]: https://github.com/gchq/CyberChef/pull/2194 [#​2193]: https://github.com/gchq/CyberChef/pull/2193 [#​2192]: https://github.com/gchq/CyberChef/pull/2192 </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xMDQuNCIsInVwZGF0ZWRJblZlciI6IjQzLjEwNC40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Reviewed-on: https://git.walbeck.it/mwalbeck/docker-cyberchef/pulls/474 Co-authored-by: renovate-bot <bot@walbeck.it> Co-committed-by: renovate-bot <bot@walbeck.it>
I would like to submit a pull request for an emulation of the WW2 SIGABA machine. Please let me know of any comments. Thank you.