mirror of
https://github.com/Yara-Rules/rules
synced 2026-06-08 12:58:40 +00:00
16 lines
499 B
Plaintext
16 lines
499 B
Plaintext
/*
|
|
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 with_sqlite : sqlite
|
|
{
|
|
meta:
|
|
author = "Julian J. Gonzalez <info@seguridadparatodos.es>"
|
|
reference = "http://www.st2labs.com"
|
|
description = "Rule to detect the presence of SQLite data in raw image"
|
|
strings:
|
|
$hex_string = {53 51 4c 69 74 65 20 66 6f 72 6d 61 74 20 33 00}
|
|
condition:
|
|
all of them
|
|
}
|