pilate / yara-url

Module for yara that allows matching on URL components

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

yara-url

Module for yara that allows matching on URL components

Example:

import "url"

rule test
{
  meta:
    description = "Using the URL module to match a hostname containing 'google'"
  condition:
    (url.scheme == "ftp") and url.match.host(/^google/)
}

About

Module for yara that allows matching on URL components


Languages

Language:C 87.0%Language:Dockerfile 13.0%