CVE-2023-37897
published 2023-07-18CVE-2023-37897: Grav is a file-based Web-platform built in PHP. Grav is subject to a server side template injection (SSTI) vulnerability. The fix for another SSTI…
PriorityP356high8.8CVSS 3.1
AVNACLPRLUINSUCHIHAH
EPSS
2.26%
80.8th percentile
Grav is a file-based Web-platform built in PHP. Grav is subject to a server side template injection (SSTI) vulnerability. The fix for another SSTI vulnerability using `|map`, `|filter` and `|reduce` twigs implemented in the commit `71bbed1` introduces bypass of the denylist due to incorrect return value from `isDangerousFunction()`, which allows to execute the payload prepending double backslash (`\\`). The `isDangerousFunction()` check in version 1.7.42 and onwards retuns `false` value instead of `true` when the `\` symbol is found in the `$name`. This vulnerability can be exploited if the attacker has access to: 1. an Administrator account, or 2. a non-administrator, user account that has Admin panel access and Create/Update page permissions. A fix for this vulnerability has been introduced in commit `b4c6210` and is included in release version `1.7.42.2`. Users are advised to upgrade. There are no known workarounds for this vulnerability.
Affected
4 ranges
| Vendor | Product | Version range | Fixed in |
|---|---|---|---|
| getgrav | grav | < 1.7.42.2 | 1.7.42.2 |
| getgrav | grav | — | — |
| getgrav | grav | — | — |
| getgrav | grav | >= 0 < 1.7.42.2 | 1.7.42.2 |
Stop checking back — get the weekly exploitation signal.
Every Monday: what got weaponized or added to CISA KEV in the last seven days — each CVE cross-linked to its PoC, Nuclei template, and detection rule. Free, one email a week, unsubscribe in one click.
GHSA
grav Server-side Template Injection (SSTI) mitigation bypass
ghsa·2023-07-19
CVE-2023-37897 [HIGH] CWE-393 grav Server-side Template Injection (SSTI) mitigation bypass
grav Server-side Template Injection (SSTI) mitigation bypass
### Summary
The fix for SSTI using `|map`, `|filter` and `|reduce` twigs implemented in the commit [71bbed1](https://github.com/getgrav/grav/commit/71bbed12f950de8335006d7f91112263d8504f1b) introduces bypass of the denylist due to incorrect return value from `isDangerousFunction()`, which allows to execute the payload prepending double backslash (`\\`)
### Details
The `isDangerousFunction()` check in version 1.7.42 and onwards retuns `false` value instead of `true` when the `\` symbol is found in the `$name`.
```php
...
if (strpos($name, "\\") !== false) {
return false;
}
if (in_array($name, $commandExecutionFunctions)) {
return true;
}
...
```
Based on the code where the function is used, it is expected that any dangerous co
OSV
grav Server-side Template Injection (SSTI) mitigation bypass
osv·2023-07-19
CVE-2023-37897 [HIGH] grav Server-side Template Injection (SSTI) mitigation bypass
grav Server-side Template Injection (SSTI) mitigation bypass
### Summary
The fix for SSTI using `|map`, `|filter` and `|reduce` twigs implemented in the commit [71bbed1](https://github.com/getgrav/grav/commit/71bbed12f950de8335006d7f91112263d8504f1b) introduces bypass of the denylist due to incorrect return value from `isDangerousFunction()`, which allows to execute the payload prepending double backslash (`\\`)
### Details
The `isDangerousFunction()` check in version 1.7.42 and onwards retuns `false` value instead of `true` when the `\` symbol is found in the `$name`.
```php
...
if (strpos($name, "\\") !== false) {
return false;
}
if (in_array($name, $commandExecutionFunctions)) {
return true;
}
...
```
Based on the code where the function is used, it is expected that any dangerous co
No detection rules found.
No public exploits indexed.
No writeups or analysis indexed.
https://github.com/getgrav/grav/commit/71bbed12f950de8335006d7f91112263d8504f1bhttps://github.com/getgrav/grav/commit/b4c62101a43051fc7f5349c7d0a5b6085375c1d7https://github.com/getgrav/grav/security/advisories/GHSA-9436-3gmp-4f53https://github.com/getgrav/grav/commit/71bbed12f950de8335006d7f91112263d8504f1bhttps://github.com/getgrav/grav/commit/b4c62101a43051fc7f5349c7d0a5b6085375c1d7https://github.com/getgrav/grav/security/advisories/GHSA-9436-3gmp-4f53
2023-07-18
Published