Skip to content

Cross-Site Request Forgery (CSRF) Protection Bypass Vulnerability in CodeIgniter4

Moderate severity GitHub Reviewed Published Feb 26, 2022 in codeigniter4/CodeIgniter4 • Updated Feb 3, 2023

Package

composer codeigniter4/framework (Composer)

Affected versions

< 4.1.9

Patched versions

4.1.9

Description

Impact

This vulnerability might allow remote attackers to bypass the CodeIgniter4 CSRF protection mechanism.

Patches

Upgrade to v4.1.9 or later.

Workarounds

These are workarounds for this vulnerability, but you will still need to code as these after upgrading to v4.1.9.
Otherwise, the CSRF protection may be bypassed.

When Auto-Routing is Enabled

  1. Check the request method in the controller method before processing.

E.g.:

        if (strtolower($this->request->getMethod()) !== 'post') {
            return $this->response->setStatusCode(405)->setBody('Method Not Allowed');
        }

When Auto-Routing is Disabled

Do one of the following:

  1. Do not use $routes->add(), and use HTTP verbs in routes.
  2. Check the request method in the controller method before processing.

E.g.:

        if (strtolower($this->request->getMethod()) !== 'post') {
            return $this->response->setStatusCode(405)->setBody('Method Not Allowed');
        }

References

For more information

If you have any questions or comments about this advisory:

References

@MGatner MGatner published to codeigniter4/CodeIgniter4 Feb 26, 2022
Published by the National Vulnerability Database Feb 28, 2022
Published to the GitHub Advisory Database Mar 1, 2022
Reviewed Mar 1, 2022
Last updated Feb 3, 2023

Severity

Moderate
6.3
/ 10

CVSS base metrics

Attack vector
Network
Attack complexity
Low
Privileges required
Low
User interaction
Required
Scope
Unchanged
Confidentiality
None
Integrity
High
Availability
Low
CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:U/C:N/I:H/A:L

Weaknesses

CVE ID

CVE-2022-24712

GHSA ID

GHSA-4v37-24gm-h554

Source code

No known source code
Checking history
See something to contribute? Suggest improvements for this vulnerability.