We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Kirandawadi/volatility3-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/*
This Yara ruleset is under the GNU-GPLv2 license (http://www.gnu.org/licenses/gpl-2.0.html) and open to any user or organization, as long as you use it under this license.
*/
rule CAP_HookExKeylogger
{
meta:
author = "Brian C. Bell -- @biebsmalwareguy"
reference = "https://github.com/DFIRnotes/rules/blob/master/CAP_HookExKeylogger.yar"
strings:
$str_Win32hookapi = "SetWindowsHookEx" nocase
$str_Win32llkey = "WH_KEYBOARD_LL" nocase
$str_Win32key = "WH_KEYBOARD" nocase
condition:
2 of them
}