nuclei-templates/exposures/configs/django-variables-exposed.yaml

48 lines
1.3 KiB
YAML
Raw Normal View History

id: django-variables-exposed
2022-08-12 04:47:07 +00:00
info:
name: Exposed Django variables
2022-08-12 04:47:07 +00:00
author: nobody
severity: info
description: Detects suspicious Django web application framework exceptions that could indicate exploitation attempts
2022-08-12 04:47:07 +00:00
reference:
2022-08-20 08:29:01 +00:00
- https://docs.djangoproject.com/en/1.11/ref/exceptions/
- https://docs.djangoproject.com/en/1.11/topics/logging/#django-security
- https://github.com/projectdiscovery/nuclei-templates/blob/master/file/logs/django-framework-exceptions.yaml
metadata:
verified: true
tags: exposure,config,django
2022-08-12 04:47:07 +00:00
requests:
- method: GET
path:
- "{{BaseURL}}"
matchers-condition: and
matchers:
- type: word
words:
- 'seeing this error because you have <code>DEBUG = True</code>'
- 'SuspiciousOperation'
- 'DisallowedHost'
- 'DisallowedModelAdminLookup'
- 'DisallowedModelAdminToField'
- 'DisallowedRedirect'
- 'InvalidSessionKey'
- 'RequestDataTooBig'
- 'SuspiciousFileOperation'
- 'SuspiciousMultipartForm'
- 'SuspiciousSession'
- 'TooManyFieldsSent'
- 'PermissionDenied'
2022-08-21 11:57:55 +00:00
condition: or
2022-08-12 04:47:07 +00:00
- type: word
part: header
words:
- "text/html"
- type: status
status:
- 400