The system put that emoticon in there. It's a colon and a right paranthesis so that's why it did it.
((?i)(http(s|):)\S+\.(work|country|kim|rocks|click)(\/\S+)?\b)(\/|)\s
This rule matches a URL with uppercase or lowercase, http or https and ends with .work, .country, .kim, .rocks, .click with or without an ending forward slash /. It's working very well for us. I found that all of our snowshoe spam (for now) contains a link ending with .work. There's your pattern to match.
Of course if you deal with legit sites that end with any of these TLD's you won't want to use this. We don't so it works well for us.
The system put that emoticon in there. It's a colon and a right paranthesis so that's why it did it.
((?i)(http(s|):)\S+\.(work|country|kim|rocks|click)(\/\S+)?\b)(\/|)\s
This rule matches a URL with uppercase or lowercase, http or https and ends with .work, .country, .kim, .rocks, .click with or without an ending forward slash /. It's working very well for us. I found that all of our snowshoe spam (for now) contains a link ending with .work. There's your pattern to match.
Of course if you deal with legit sites that end with any of these TLD's you won't want to use this. We don't so it works well for us.