Skip to content

Instantly share code, notes, and snippets.

@halos
halos / doc_equations.yar
Created March 21, 2018 13:14
Yara rule to detect word documents with equations (CVE-2017-11882 / CVE-2018-0802)
rule doc_equations {
meta:
author = "Javier Rascon Mesa"
description = "Detects documents that contains equations"
strings:
$hdr_0 = {d0 cf 11 e0}
$hdr_1 = "{\\rt" ascii
@halos
halos / gist:3945561
Created October 24, 2012 11:29
Code to get a domain from an URL
dom = url.split('//')[-1]
dom = dom.split('/')[0]