forked from p15670423/monkey
cc: Make whitespace-only a valid input for ransomware target directory paths
This commit is contained in:
parent
1768c0cdf6
commit
54072b6632
|
@ -1,10 +1,10 @@
|
|||
const ipRegex = '((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)'
|
||||
const cidrNotationRegex = '([0-9]|1[0-9]|2[0-9]|3[0-2])'
|
||||
const hostnameRegex = '^([A-Za-z0-9]*[A-Za-z]+[A-Za-z0-9]*.?)*([A-Za-z0-9]*[A-Za-z]+[A-Za-z0-9]*)$'
|
||||
// path starts with `/` OR `$`
|
||||
const linuxDirRegex = '^/|^\\$'
|
||||
// path starts like `C:\` OR `C:/` OR `$` OR `%abc%`
|
||||
const windowsDirRegex = '^([A-Za-z]:(\\\\|\\/))|^\\$|^(%\\w*\\d*\\s*%)'
|
||||
// path is empty, or starts with `/` OR `$`
|
||||
const linuxDirRegex = '(^\\s*$)|^/|^\\$'
|
||||
// path is empty, or starts like `C:\` OR `C:/` OR `$` OR `%abc%`
|
||||
const windowsDirRegex = '(^\\s*$)|^([A-Za-z]:(\\\\|\\/))|^\\$|^(%\\w*\\d*\\s*%)'
|
||||
|
||||
|
||||
export const IP_RANGE = 'ip-range';
|
||||
|
|
Loading…
Reference in New Issue