nuclei-templates/file/logs/python-app-sql-exceptions.yaml

25 lines
512 B
YAML
Raw Normal View History

2021-11-01 18:20:06 +00:00
id: python-app-sql-exceptions
info:
name: Python App SQL Exception Check
author: geeknik
severity: medium
description: Generic check for SQL exceptions in Python according to PEP 249
reference:
- https://www.python.org/dev
2021-11-01 18:20:06 +00:00
tags: file,logs,python,sql
file:
- extensions:
- all
extractors:
- type: regex
name: exception
part: body
regex:
- 'DataError'
- 'IntegrityError'
- 'ProgrammingError'
- 'OperationalError'