Files
mandiant-capa-rules/nursery/execute-sqlite-statement-in-dotnet.yml
T
Yacine Elhamer 0aea484e04 updated rules
2023-08-21 19:14:45 +02:00

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