mirror of
https://github.com/valitydev/SigmaHQ.git
synced 2024-11-06 17:35:19 +00:00
37 lines
1.1 KiB
YAML
37 lines
1.1 KiB
YAML
title: Django Framework Exceptions
|
|
id: fd435618-981e-4a7c-81f8-f78ce480d616
|
|
status: stable
|
|
description: Detects suspicious Django web application framework exceptions that could indicate exploitation attempts
|
|
author: Thomas Patzke
|
|
date: 2017/08/05
|
|
modified: 2020/09/01
|
|
references:
|
|
- https://docs.djangoproject.com/en/1.11/ref/exceptions/
|
|
- https://docs.djangoproject.com/en/1.11/topics/logging/#django-security
|
|
logsource:
|
|
category: application
|
|
product: django
|
|
detection:
|
|
keywords:
|
|
- SuspiciousOperation
|
|
# Subclasses of SuspiciousOperation
|
|
- DisallowedHost
|
|
- DisallowedModelAdminLookup
|
|
- DisallowedModelAdminToField
|
|
- DisallowedRedirect
|
|
- InvalidSessionKey
|
|
- RequestDataTooBig
|
|
- SuspiciousFileOperation
|
|
- SuspiciousMultipartForm
|
|
- SuspiciousSession
|
|
- TooManyFieldsSent
|
|
# Further security-related exceptions
|
|
- PermissionDenied
|
|
condition: keywords
|
|
falsepositives:
|
|
- Application bugs
|
|
- Penetration testing
|
|
level: medium
|
|
tags:
|
|
- attack.initial_access
|
|
- attack.t1190 |