Skip to content

Commit 4d83c8a

Browse files
1 parent 3d42d26 commit 4d83c8a

1 file changed

Lines changed: 65 additions & 0 deletions

File tree

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
{
2+
"schema_version": "1.4.0",
3+
"id": "GHSA-7pfv-hr63-h7cw",
4+
"modified": "2026-03-09T19:45:20Z",
5+
"published": "2026-03-09T19:45:20Z",
6+
"aliases": [
7+
"CVE-2026-30927"
8+
],
9+
"summary": "Admidio: Event participation IDOR - non-leaders can register other users for events via user_uuid parameter",
10+
"details": "## Vulnerability\n\nIn `modules/events/events_function.php`, the event participation logic allows any user who can participate in an event to register OTHER users by manipulating the `user_uuid` GET parameter.\n\nLine 47: `$getUserUuid = admFuncVariableIsValid($_GET, 'user_uuid', 'uuid', ...)`\nLine 424: `if ($event->possibleToParticipate() || $participants->isLeader($gCurrentUserId))`\n\nThe condition uses `||` (OR), meaning if `possibleToParticipate()` returns true (event is open for participation), ANY user - not just leaders - can specify a different `user_uuid` and register/cancel participation for that user.\n\nThe code then operates on `$user->getValue('usr_id')` (the target user from user_uuid) rather than the current user.\n\n## Impact\n- Register unwilling users for events (potential harassment/spam)\n- Cancel other users' event participation\n- Manipulate event participant counts and comments\n- If events have participation limits, fill slots with unwanted registrations\n\n## Fix\nFor non-leader users, force `user_uuid` to the current user:\n```php\nif (!$participants->isLeader($gCurrentUserId)) {\n $getUserUuid = $gCurrentUser->getValue('usr_uuid');\n}\n```",
11+
"severity": [
12+
{
13+
"type": "CVSS_V4",
14+
"score": "CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:N/VI:L/VA:L/SC:N/SI:N/SA:N"
15+
}
16+
],
17+
"affected": [
18+
{
19+
"package": {
20+
"ecosystem": "Packagist",
21+
"name": "admidio/admidio"
22+
},
23+
"ranges": [
24+
{
25+
"type": "ECOSYSTEM",
26+
"events": [
27+
{
28+
"introduced": "0"
29+
},
30+
{
31+
"fixed": "5.0.6"
32+
}
33+
]
34+
}
35+
]
36+
}
37+
],
38+
"references": [
39+
{
40+
"type": "WEB",
41+
"url": "https://github.com/Admidio/admidio/security/advisories/GHSA-7pfv-hr63-h7cw"
42+
},
43+
{
44+
"type": "WEB",
45+
"url": "https://github.com/Admidio/admidio/issues/1985"
46+
},
47+
{
48+
"type": "WEB",
49+
"url": "https://github.com/Admidio/admidio/commit/e47f70cc3cbcdb39635fdbaaef02d19f604b8c3e"
50+
},
51+
{
52+
"type": "PACKAGE",
53+
"url": "https://github.com/Admidio/admidio"
54+
}
55+
],
56+
"database_specific": {
57+
"cwe_ids": [
58+
"CWE-639"
59+
],
60+
"severity": "MODERATE",
61+
"github_reviewed": true,
62+
"github_reviewed_at": "2026-03-09T19:45:20Z",
63+
"nvd_published_at": null
64+
}
65+
}

0 commit comments

Comments
 (0)