<How to make regex_match patterns case insensitive...
# community-feeds
r
How to make regex_match patterns case insensitive in osquery queries? I'm currently working with osquery's ATC tables and utilizing regex_match() in my queries. However, I'm encountering a challenge with making the regex_match patterns case insensitive. As per the osquery documentation osquery sql functions, the syntax for regex_match is regex_match(COLUMN, PATTERN, INDEX). However, it doesn't seem to provide an option for case insensitivity. For instance, here's...