mirror of
https://github.com/mandiant/capa-rules
synced 2026-06-08 15:41:20 +00:00
037ca83cb3
* Improve regex for existing browser data gathering detection - Fix erroneous regex capture + Add detections for cookies gathering + Add generic browser detection (some webkit browser for some reason uses the same chromium-based paths?) Signed-off-by: Still Hsu <dev@stillu.cc> * Add rudimentary sqlite db libs detection - Typically used along with browser data collection Signed-off-by: Still Hsu <dev@stillu.cc> --------- Signed-off-by: Still Hsu <dev@stillu.cc>
21 lines
614 B
YAML
21 lines
614 B
YAML
rule:
|
|
meta:
|
|
name: linked against sqlite3
|
|
namespace: linking/static/sqlite3
|
|
authors:
|
|
- still@teamt5.org
|
|
scope: file
|
|
examples:
|
|
- 253309d8b3675d3cc61d4bf23aa15d4b
|
|
features:
|
|
- or:
|
|
- 3 or more:
|
|
- string: "database corruption"
|
|
- string: "SQLITE_OK"
|
|
- string: "SQLite format 3"
|
|
- string: "sqlite3_extension_init"
|
|
- substring: "cannot INSERT into generated column"
|
|
- substring: "UPSERT not implemented for virtual table"
|
|
- substring: "sqlite3_get_table()"
|
|
- substring: "qualified table names are not allowed on"
|