Skip to content

Instantly share code, notes, and snippets.

@rxwx
Created September 17, 2017 13:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rxwx/c2e8575bca3dc0c8098e64da7dea9c82 to your computer and use it in GitHub Desktop.
Save rxwx/c2e8575bca3dc0c8098e64da7dea9c82 to your computer and use it in GitHub Desktop.
Yara rule to detect attempts to exploit .NET CLRF injection in a WSDL file (aka CVE-2017-8759)
rule CVE_2017_8759_CRLF {
meta:
description = "Detects attempts to exploit CVE-2017-8759 CRLF injection in WSDL file"
author = "Rich Warren @buffaloverflow"
reference = "https://www.fireeye.com/blog/threat-research/2017/09/zero-day-used-to-distribute-finspy.html"
date = "2017-09-17"
strings:
$s1 = /<soap:address location=\";\r?\n/ ascii wide nocase
condition:
$s1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment