mirror of
https://github.com/gchq/CyberChef
synced 2025-01-26 03:05:06 +00:00
Added in a check to allow Manchester encoded things to be detected by magic
This commit is contained in:
parent
101bab2d15
commit
3340fa079e
1 changed files with 7 additions and 0 deletions
|
@ -25,6 +25,13 @@ class ManchesterDecode extends Operation {
|
|||
this.inputType = "string";
|
||||
this.outputType = "string";
|
||||
this.args = [];
|
||||
this.checks = [
|
||||
{
|
||||
pattern: "(01|10)*",
|
||||
flags: "",
|
||||
args: []
|
||||
}
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue