a3957273

Results 142 comments of a3957273

This looks way better, thanks so much for making the changes!

Docker images are now automatically built and provided here: https://github.com/gchq/CyberChef/pkgs/container/cyberchef

Merged in a 'Fang URL' operation, [example](https://gchq.github.io/CyberChef/#recipe=Fang_URL(true,true,true)&input=aHh4cHNbOi8vXWV4YW1wbGVbLl1jb20)

Merging in under https://github.com/gchq/CyberChef/pull/1762 which handles the merge conflicts.

We now support dev containers and automatically build images to GCHR.

Nice tests, thanks for the contribution of the operator! ❤️ In the future, you might consider splitting out some of the functionality from being entirely in 'operations' to perhaps storing...

Tried it out with a few JWKs and a few PEMs. This is a nice implementation! Thanks so much for the contribution, apologies it's taken three years to merge this...

You can do a fascimile of this using the 'Find / Replace' functionality: https://gchq.github.io/CyberChef/#recipe=Find_/_Replace(%7B'option':'Regex','string':'(%5Ea*)%7C(a*$)'%7D,'',true,false,true,false)&input=YWFhYWFiYmJjY2NhYWFhYWFh The regex used is: ``` (^a*)|(a*$) ``` Similarly, some other examples: (^\s*)|(\s*$) # remove whitespace (^[a|c]{2}*)|([a|c]{2}$)...