Unverified Commit 05f06651 by Jaume Martin Committed by GitHub

Merge pull request #417 from CYB3RMX/patch-1

Added msql database usage checker
parents fae25c09 0d895254
......@@ -912,3 +912,20 @@ rule ldpreload
condition:
($a or $b) and 5 of them
}
rule mysql_database_presence
{
meta:
author="CYB3RMX"
description="This rule checks MySQL database presence"
strings:
$db = "MySql.Data"
$db1 = "MySqlCommand"
$db2 = "MySqlConnection"
$db3 = "MySqlDataReader"
$db4 = "MySql.Data.MySqlClient"
condition:
(any of ($db*))
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment