| 0 |
| url |
VCID-9313-7h29-aqcb |
| vulnerability_id |
VCID-9313-7h29-aqcb |
| summary |
CodeIgniter4 allows spoofing of IP address when using proxy
### Impact
This vulnerability may allow attackers to spoof their IP address when your server is behind a reverse proxy.
### Patches
Upgrade to v4.2.11 or later, and configure `Config\App::$proxyIPs`.
### Workarounds
Do not use `$request->getIPAddress()`.
### References
- https://codeigniter4.github.io/userguide/incoming/request.html#CodeIgniter\HTTP\Request::getIPAddress
### For more information
If you have any questions or comments about this advisory:
* Open an issue in [codeigniter4/CodeIgniter4](https://github.com/codeigniter4/CodeIgniter4/issues)
* Email us at [SECURITY.md](https://github.com/codeigniter4/CodeIgniter4/blob/develop/SECURITY.md) |
| references |
| 0 |
| reference_url |
https://api.first.org/data/v1/epss?cve=CVE-2022-23556 |
| reference_id |
|
| reference_type |
|
| scores |
| 0 |
| value |
0.0014 |
| scoring_system |
epss |
| scoring_elements |
0.33951 |
| published_at |
2026-06-06T12:55:00Z |
|
| 1 |
| value |
0.0014 |
| scoring_system |
epss |
| scoring_elements |
0.33917 |
| published_at |
2026-06-07T12:55:00Z |
|
| 2 |
| value |
0.0014 |
| scoring_system |
epss |
| scoring_elements |
0.33936 |
| published_at |
2026-06-05T12:55:00Z |
|
| 3 |
| value |
0.0014 |
| scoring_system |
epss |
| scoring_elements |
0.33832 |
| published_at |
2026-06-04T12:55:00Z |
|
|
| url |
https://api.first.org/data/v1/epss?cve=CVE-2022-23556 |
|
| 1 |
|
| 2 |
|
| 3 |
|
| 4 |
|
| 5 |
|
| 6 |
|
| 7 |
|
|
| fixed_packages |
|
| aliases |
CVE-2022-23556, GHSA-ghw3-5qvm-3mqc
|
| risk_score |
4.0 |
| exploitability |
0.5 |
| weighted_severity |
8.0 |
| resource_url |
http://public2.vulnerablecode.io/vulnerabilities/VCID-9313-7h29-aqcb |
|
| 1 |
| url |
VCID-dv2s-rcnm-77f4 |
| vulnerability_id |
VCID-dv2s-rcnm-77f4 |
| summary |
Missing validation of header name and value in codeigniter4/framework
Lack of proper header validation for its name and value. The potential attacker can construct deliberately malformed headers with `Header` class. This could disrupt application functionality, potentially causing errors or generating invalid HTTP requests. In some cases, these malformed requests might lead to a DoS scenario if a remote service’s web application firewall interprets them as malicious and blocks further communication with the application. |
| references |
|
| fixed_packages |
|
| aliases |
CVE-2025-24013, GHSA-x5mq-jjr3-vmx6
|
| risk_score |
3.1 |
| exploitability |
0.5 |
| weighted_severity |
6.2 |
| resource_url |
http://public2.vulnerablecode.io/vulnerabilities/VCID-dv2s-rcnm-77f4 |
|
| 2 |
| url |
VCID-hh88-2t9v-6bdt |
| vulnerability_id |
VCID-hh88-2t9v-6bdt |
| summary |
Withdrawn Advisory: CodeIgniter4 Cross-Site Scripting Vulnerability in debugbar_time Parameter
### Withdrawn Advisory
This advisory has been withdrawn because the original report was found to be invalid. This link is maintained to preserve external references. For more information, see https://github.com/github/advisory-database/pull/5862.
### Original Description
A stored cross-site scripting (XSS) vulnerability in CodeIgniter4 v4.6.0 allows attackers to execute arbitrary web scripts or HTML via a crafted payload injected into the debugbar_time parameter. |
| references |
|
| fixed_packages |
|
| aliases |
CVE-2025-45406, GHSA-49jm-g4m8-x53p
|
| risk_score |
3.1 |
| exploitability |
0.5 |
| weighted_severity |
6.2 |
| resource_url |
http://public2.vulnerablecode.io/vulnerabilities/VCID-hh88-2t9v-6bdt |
|
| 3 |
|
| 4 |
| url |
VCID-rk43-at2z-9bc5 |
| vulnerability_id |
VCID-rk43-at2z-9bc5 |
| summary |
Codeigniter4's Secure or HttpOnly flag set in Config\Cookie is not reflected in Cookies issued
### Impact
Setting `$secure` or `$httponly` value to `true` in `Config\Cookie` is not reflected in `set_cookie()` or `Response::setCookie()`.
> **Note**
> This vulnerability does not affect session cookies.
The following code does not issue a cookie with the secure flag even if you set `$secure = true` in `Config\Cookie`.
```php
helper('cookie');
$cookie = [
'name' => $name,
'value' => $value,
];
set_cookie($cookie);
// or
$this->response->setCookie($cookie);
```
### Patches
Upgrade to v4.2.7 or later.
### Workarounds
1. Specify the options explicitly.
```php
helper('cookie');
$cookie = [
'name' => $name,
'value' => $value,
'secure' => true,
'httponly' => true,
];
set_cookie($cookie);
// or
$this->response->setCookie($cookie);
```
2. Use Cookie object.
```php
use CodeIgniter\Cookie\Cookie;
helper('cookie');
$cookie = new Cookie($name, $value);
set_cookie($cookie);
// or
$this->response->setCookie($cookie);
```
### References
- https://codeigniter4.github.io/userguide/helpers/cookie_helper.html#set_cookie
- https://codeigniter4.github.io/userguide/outgoing/response.html#CodeIgniter\HTTP\Response::setCookie
### For more information
If you have any questions or comments about this advisory:
* Open an issue in [codeigniter4/CodeIgniter4](https://github.com/codeigniter4/CodeIgniter4/issues)
* Email us at [SECURITY.md](https://github.com/codeigniter4/CodeIgniter4/blob/develop/SECURITY.md) |
| references |
| 0 |
| reference_url |
https://api.first.org/data/v1/epss?cve=CVE-2022-39284 |
| reference_id |
|
| reference_type |
|
| scores |
| 0 |
| value |
0.00492 |
| scoring_system |
epss |
| scoring_elements |
0.65993 |
| published_at |
2026-06-04T12:55:00Z |
|
| 1 |
| value |
0.00492 |
| scoring_system |
epss |
| scoring_elements |
0.66041 |
| published_at |
2026-06-07T12:55:00Z |
|
| 2 |
| value |
0.00492 |
| scoring_system |
epss |
| scoring_elements |
0.66056 |
| published_at |
2026-06-06T12:55:00Z |
|
| 3 |
| value |
0.00492 |
| scoring_system |
epss |
| scoring_elements |
0.66044 |
| published_at |
2026-06-05T12:55:00Z |
|
|
| url |
https://api.first.org/data/v1/epss?cve=CVE-2022-39284 |
|
| 1 |
|
| 2 |
|
| 3 |
|
| 4 |
|
| 5 |
|
| 6 |
|
| 7 |
|
| 8 |
|
| 9 |
|
| 10 |
|
|
| fixed_packages |
|
| aliases |
CVE-2022-39284, GHSA-745p-r637-7vvp
|
| risk_score |
1.4 |
| exploitability |
0.5 |
| weighted_severity |
2.7 |
| resource_url |
http://public2.vulnerablecode.io/vulnerabilities/VCID-rk43-at2z-9bc5 |
|
| 5 |
| url |
VCID-s6nh-cvkt-vygr |
| vulnerability_id |
VCID-s6nh-cvkt-vygr |
| summary |
Generation of Error Message Containing Sensitive Information
CodeIgniter is a PHP full-stack web framework. Prior to CodeIgniter4 version 4.4.3, if an error or exception occurs, a detailed error report is displayed even if in the production environment. As a result, confidential information may be leaked. Version 4.4.3 contains a patch. As a workaround, replace `ini_set('display_errors', '0')` with `ini_set('display_errors', 'Off')` in `app/Config/Boot/production.php`. |
| references |
|
| fixed_packages |
|
| aliases |
CVE-2023-46240, GHSA-hwxf-qxj7-7rfj
|
| risk_score |
4.0 |
| exploitability |
0.5 |
| weighted_severity |
8.0 |
| resource_url |
http://public2.vulnerablecode.io/vulnerabilities/VCID-s6nh-cvkt-vygr |
|
| 6 |
| url |
VCID-vbkq-554e-gfd8 |
| vulnerability_id |
VCID-vbkq-554e-gfd8 |
| summary |
CodeIgniter4 Potential Session Handlers Vulnerability
### Impact
When an application uses (1) multiple session cookies (e.g., one for user pages and one for admin pages) and (2) a session handler is set to `DatabaseHandler`, `MemcachedHandler`, or `RedisHandler`, then if an attacker gets one session cookie (e.g., one for user pages), they may be able to access pages that require another session cookie (e.g., for admin pages).
### Patches
Upgrade to version 4.2.11 or later.
### Workarounds
- Use only one session cookie.
### References
- https://codeigniter4.github.io/userguide/libraries/sessions.html#session-drivers
### For more information
If you have any questions or comments about this advisory:
* Open an issue in [codeigniter4/CodeIgniter4](https://github.com/codeigniter4/CodeIgniter4/issues)
* Email us at [SECURITY.md](https://github.com/codeigniter4/CodeIgniter4/blob/develop/SECURITY.md) |
| references |
| 0 |
| reference_url |
https://api.first.org/data/v1/epss?cve=CVE-2022-46170 |
| reference_id |
|
| reference_type |
|
| scores |
| 0 |
| value |
0.00311 |
| scoring_system |
epss |
| scoring_elements |
0.54561 |
| published_at |
2026-06-05T12:55:00Z |
|
| 1 |
| value |
0.00311 |
| scoring_system |
epss |
| scoring_elements |
0.54562 |
| published_at |
2026-06-07T12:55:00Z |
|
| 2 |
| value |
0.00311 |
| scoring_system |
epss |
| scoring_elements |
0.54504 |
| published_at |
2026-06-04T12:55:00Z |
|
| 3 |
| value |
0.00311 |
| scoring_system |
epss |
| scoring_elements |
0.54571 |
| published_at |
2026-06-06T12:55:00Z |
|
|
| url |
https://api.first.org/data/v1/epss?cve=CVE-2022-46170 |
|
| 1 |
|
| 2 |
|
| 3 |
|
| 4 |
|
| 5 |
|
| 6 |
|
| 7 |
|
|
| fixed_packages |
|
| aliases |
CVE-2022-46170, GHSA-6cq5-8cj7-g558
|
| risk_score |
4.0 |
| exploitability |
0.5 |
| weighted_severity |
8.0 |
| resource_url |
http://public2.vulnerablecode.io/vulnerabilities/VCID-vbkq-554e-gfd8 |
|
| 7 |
| url |
VCID-wm3q-p9d7-fkgb |
| vulnerability_id |
VCID-wm3q-p9d7-fkgb |
| summary |
CodeIgniter4 DoS Vulnerability
A vulnerability was found in the Language class that allowed DoS attacks. This vulnerability can be exploited by an attacker to consume a large amount of memory on the server. |
| references |
|
| fixed_packages |
|
| aliases |
CVE-2024-29904, GHSA-39fp-mqmm-gxj6
|
| risk_score |
4.0 |
| exploitability |
0.5 |
| weighted_severity |
8.0 |
| resource_url |
http://public2.vulnerablecode.io/vulnerabilities/VCID-wm3q-p9d7-fkgb |
|
| 8 |
| url |
VCID-zg3d-nd19-13hu |
| vulnerability_id |
VCID-zg3d-nd19-13hu |
| summary |
CodeIgniter4's ImageMagick Handler has Command Injection Vulnerability
This vulnerability affects applications that:
* Use the ImageMagick handler for image processing (`imagick` as the image library)
* **AND** either:
* Allow file uploads with user-controlled filenames and process uploaded images using the `resize()` method
* **OR** use the `text()` method with user-controlled text content or options
An attacker can:
* Upload a file with a malicious filename containing shell metacharacters that get executed when the image is processed
* **OR** provide malicious text content or options that get executed when adding text to images |
| references |
|
| fixed_packages |
|
| aliases |
CVE-2025-54418, GHSA-9952-gv64-x94c
|
| risk_score |
4.5 |
| exploitability |
0.5 |
| weighted_severity |
9.0 |
| resource_url |
http://public2.vulnerablecode.io/vulnerabilities/VCID-zg3d-nd19-13hu |
|