CVE-2018-16552:
MicroPyramid Django-CRM CSRF
8.8
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.35071%
CWE
Published
5/13/2022
Updated
9/16/2024
KEV Status
No
Technology
Python
Technical Details
CVSS Vector
CVSS:3.1/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 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from missing CSRF protection on state-changing endpoints. In Django, views handling POST requests typically require either CsrfViewMiddleware or @csrf_protect decorator. The confirmed vulnerable endpoints (/users/create/, /users/##/edit/, /accounts/##/delete/) map directly to these view functions, which would normally handle user creation, editing, and deletion operations. The absence of CSRF tokens in exploit POC requests indicates these views lack proper CSRF validation mechanisms. Django's class-based views like CreateView/UpdateView/DeleteView would be the logical implementations for these endpoints, making them the vulnerable components.