The probability is the direct output of the EPSS model, and conveys an overall sense of the threat of exploitation in the wild. The percentile measures the EPSS probability relative to all known EPSS scores. Note: This data is updated daily, relying on the latest available EPSS model version. Check out the EPSS documentation for more details.
In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.
Test your applicationsLearn about Missing Authorization vulnerabilities in an interactive lesson.
Start learningUpgrade django-cms to version 5.0.9 or higher.
Affected versions of this package are vulnerable to Missing Authorization via the DuplicatePageForm.clean_source bypass in cms/admin/forms.py. The source field in DuplicatePageForm is a hidden field whose value is fully controlled by the client on POST, and its queryset spans every page on every site. Because has_add_permission only checks that the user may create a page — not that they may read the source — a staff user with only "add page" rights can supply an arbitrary page ID as source and duplicate any page, thereby reading its plugin content while bypassing per-page view restrictions and multi-site isolation. Additionally, copy(..., permissions=False) strips the source page's view restrictions from the copy, leaving the duplicated page fully readable. A separate issue in GenericCmsPermissionForm also allowed managers to grant permissions beyond their own privilege level.