Hi Bit of an advanced regex feature, but I would like to set up a custom vulnerability signature to detect browsers (user-agent) that are not Internet Explorer. True, one could detect Firefox specifically, but there are so many different browsers in the wild that it is impossible to match them all. The regex I'm attempting therefore is: User-Agent: (?!.*MSIE).* The regular expression would match if any browser type (user-agent) is not MS Internet Explorer, which is what I need. However, PANOS 4.0.0 doesn't seem to like this syntax and returns an error:- Operation Failed: -> signature > standard > Firefox -> and-condition -> And Condition 1 -> or-condition-> Or Condition 1 -> operator -> pattern-match -> pattern "User-Agent: (?!.*MSIE).* is invalid. syntax error at ? Is there any other way to achieve the detection of non-MSIE browsers? Thanks Kind regards, Ben
... View more