fleet/articles/fleet-quick-tips-querying-procdump-eula-has-been-accepted.md
Eric 4dfe497ac4
Website: Migrate 6 articles (#5801)
* Website: add 6 product articles & images, update styles

* Update articles/fleet-quick-tips-querying-procdump-eula-has-been-accepted.md

Co-authored-by: Mike Thomas <78363703+mike-j-thomas@users.noreply.github.com>
2022-05-19 09:07:16 +09:00

2.2 KiB
Raw Blame History

Fleet quick tips — identify systems where the ProcDump EULA has been accepted.

By now, youve no doubt already heard of Microsofts big email hack.

While attackers initially flew largely under the radar via an unknown vulnerability in the email software, the folks at Volexity observed a handful of post exploitation activities and tools that operators used to gain a foothold — one such tool being ProcDump, which attackers were observed using to dump LSASS process memory.

Identify systems where the ProcDump EULA has been accepted with Fleet

As a possible detection method using osquery and Fleet, check out this query from Recon InfoSec that looks for systems that accepted the ProcDump EULA. This query searches for a registry artifact that indicates ProcDump may have been used in a post-exploitation technique described by Microsofts security blog.

SELECT datetime(mtime, unixepoch, localtime) AS EULA_accepted,path
FROM registry
WHERE path LIKE HKEY_USERS\%\Software\Sysinternals\ProcDump\EulaAccepted;

*mtime = Time that EULA was accepted

For more information about the recent security breach, take a look at Microsofts original blog post.

Could this post be more helpful?

Let us know if you can think of any other example scenarios youd like us to cover.