CVE-2019-11457: Cross-Site Request Forgery in MicroPyramid Django CRM
8.8
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.59845%
CWE
Published
9/11/2019
Updated
9/16/2024
KEV Status
No
Technology
Python
Technical Details
CVSS Vector
CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
django-crm | pip | <= 0.2.1 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability report explicitly lists multiple endpoints vulnerable to CSRF. In Django applications, these endpoints map directly to view functions that handle POST requests. The presence of CSRF vulnerabilities indicates these view functions lack proper @csrf_protect
decorators or CSRF middleware protection. High confidence comes from: 1) Direct URL-to-view mapping in Django's architecture 2) State-changing operations (password changes
, content creation
) requiring POST 3) CVE description confirming missing CSRF protections 4) Typical Django project structure patterns