mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-11 16:51:31 -04:00
Magic signature for Citrix CTX1 added
This commit is contained in:
parent
b123c50937
commit
3fa3c31e31
2 changed files with 8 additions and 1 deletions
|
@ -26,6 +26,13 @@ class CitrixCTX1Decode extends Operation {
|
||||||
this.inputType = "ArrayBuffer";
|
this.inputType = "ArrayBuffer";
|
||||||
this.outputType = "string";
|
this.outputType = "string";
|
||||||
this.args = [];
|
this.args = [];
|
||||||
|
this.patterns = [
|
||||||
|
{
|
||||||
|
match: "([A-Z]{4}){10,}",
|
||||||
|
flags: "",
|
||||||
|
args: []
|
||||||
|
}
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -31,7 +31,7 @@ class ParseUserAgent extends Operation {
|
||||||
flags: "i",
|
flags: "i",
|
||||||
args: []
|
args: []
|
||||||
}
|
}
|
||||||
]
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue