mirror of
https://github.com/projectdiscovery/nuclei-templates.git
synced 2026-01-31 15:53:33 +08:00
* info field reorder * reference values refactored to list * added new lines after the id and before the protocols * removed extra new lines * split really long descriptions to multiple lines (part 1) * other minor fixes
25 lines
512 B
YAML
25 lines
512 B
YAML
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
|
|
tags: file,logs,python,sql
|
|
|
|
file:
|
|
- extensions:
|
|
- all
|
|
|
|
extractors:
|
|
- type: regex
|
|
name: exception
|
|
part: body
|
|
regex:
|
|
- 'DataError'
|
|
- 'IntegrityError'
|
|
- 'ProgrammingError'
|
|
- 'OperationalError'
|