mirror of
https://github.com/mandiant/capa-rules
synced 2026-06-08 15:41:20 +00:00
21 lines
720 B
YAML
21 lines
720 B
YAML
rule:
|
|
meta:
|
|
name: execute SQLite statement in .NET
|
|
namespace: data-manipulation/database/sql
|
|
authors:
|
|
- michael.hunhoff@mandiant.com
|
|
scopes:
|
|
static: function
|
|
dynamic: process
|
|
features:
|
|
- and:
|
|
- or:
|
|
- api: System.Data.SQLite.SQLiteCommand::ExecuteReader
|
|
- api: System.Data.SQLite.SQLiteCommand::ExecuteReaderAsync
|
|
- api: System.Data.SQLite.SQLiteCommand::ExecuteScalar
|
|
- api: System.Data.SQLite.SQLiteCommand::ExecuteDbDataReader
|
|
- api: System.Data.SQLite.SQLiteCommand::ExecuteDbDataReaderAsync
|
|
- api: System.Data.SQLite.SQLiteCommand::ExecuteNonQuery
|
|
- optional:
|
|
- api: System.Data.SQLite.SQLiteCommand::ctor
|