Sneed-Reactivity/yara-mikesxrs/Volexity/webshell_aspx_simpleseesharp.yar

21 lines
796 B
Text
Raw Permalink Normal View History

rule webshell_aspx_simpleseesharp : Webshell Unclassified
{
meta:
author = "threatintel@volexity.com"
date = "2021-03-01"
description = "A simple ASPX Webshell that allows an attacker to write further files to disk."
reference = "https://www.volexity.com/blog/2021/03/02/active-exploitation-of-microsoft-exchange-zero-day-vulnerabilities/"
hash = "893cd3583b49cb706b3e55ecb2ed0757b977a21f5c72e041392d1256f31166e2"
license = "See license at https://github.com/volexity/threat-intel/blob/main/LICENSE.txt"
strings:
$header = "<%@ Page Language=\"C#\" %>"
$body = "<% HttpPostedFile thisFile = Request.Files[0];thisFile.SaveAs(Path.Combine"
condition:
$header at 0 and
$body and
filesize < 1KB
}