Showing posts with label regular expressions. Show all posts
Showing posts with label regular expressions. Show all posts

Friday, April 10, 2020

Yara Basics - Regular Expression

rule HasUrls
{
strings:
$urlregex = /http(s|):\/\/[^\s]+\.[^\s]{2,5}/
$urlregexwide = /http(s|):\/\/[^\s]+\.[^\s]{2,5}/ wide
condition:
any of them
}