Skip to content

Instantly share code, notes, and snippets.

@TheKevinWang
Created September 6, 2018 01:49
Show Gist options
  • Save TheKevinWang/1af5f64fece548b01c0267ecf06444e7 to your computer and use it in GitHub Desktop.
Save TheKevinWang/1af5f64fece548b01c0267ecf06444e7 to your computer and use it in GitHub Desktop.
Detects meterpreter payloads in memory.
rule Meterpreter {
meta:
author = "Kevin Wang"
description = "Meterpreter reverse shell in memory detecter."
strings:
$a = "metsrv.dll"
$b = "stdapi_"
$c = "priv_fs"
condition:
$a and $b and $c
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment