steampipe plugin install francois2metz/baleen

Table: baleen_owasp

List Open Web Application Security Project rules.

Notes:

  • List queries require a namespace.

Examples

List current status of owasp rules

select
name,
enabled
from
baleen_owasp
where
namespace = 'kfuAlneru9fjrG==';

Get disabled rules

select
name,
enabled
from
baleen_owasp
where
namespace = 'kfuAlneru9fjrG=='
and not enabled;

Schema for baleen_owasp

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
descriptiontextThe description of the rule.
enabledbooleanStatus of the rule.
grouptextThe group of the rule.
idtextThe ID of the OWASP rule.
nametextThe name of the rule.
namespacetext=Namespace of the owasp rule.