mirror of
https://github.com/gchq/CyberChef
synced 2025-01-04 00:38:41 +00:00
Moved UUID regex in list
This commit is contained in:
parent
6ca60cb013
commit
409e795ce9
1 changed files with 4 additions and 4 deletions
|
@ -67,6 +67,10 @@ class RegularExpression extends Operation {
|
||||||
name: "MAC address",
|
name: "MAC address",
|
||||||
value: "[A-Fa-f\\d]{2}(?:[:-][A-Fa-f\\d]{2}){5}"
|
value: "[A-Fa-f\\d]{2}(?:[:-][A-Fa-f\\d]{2}){5}"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: "UUID",
|
||||||
|
value: "[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: "Date (yyyy-mm-dd)",
|
name: "Date (yyyy-mm-dd)",
|
||||||
value: "((?:19|20)\\d\\d)[- /.](0[1-9]|1[012])[- /.](0[1-9]|[12][0-9]|3[01])"
|
value: "((?:19|20)\\d\\d)[- /.](0[1-9]|1[012])[- /.](0[1-9]|[12][0-9]|3[01])"
|
||||||
|
@ -83,10 +87,6 @@ class RegularExpression extends Operation {
|
||||||
name: "Strings",
|
name: "Strings",
|
||||||
value: "[A-Za-z\\d/\\-:.,_$%\\x27\"()<>= !\\[\\]{}@]{4,}"
|
value: "[A-Za-z\\d/\\-:.,_$%\\x27\"()<>= !\\[\\]{}@]{4,}"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
name: "UUID (any version)",
|
|
||||||
value: "[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}"
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
"target": 1
|
"target": 1
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue