Summary
Multiple payment plugin list.json.php endpoints lack authentication and authorization checks, allowing unauthenticated attackers to retrieve all payment transaction records including PayPal billing agreement IDs, Express Checkout tokens, Authorize.Net webhook payloads with transaction details, and Bitcoin payment records. This is the same class of vulnerability fixed in the Scheduler plugin (GHSA-j724-5c6c-68g5 / commit 83390ab1f) but the fix was not applied to the remaining 21 affected endpoints.
Details
The AVideo ObjectYPT admin CRUD pattern generates four endpoints per database table: add.json.php, delete.json.php, list.json.php, and an index.php page. In the payment plugins, add.json.php and delete.json.php correctly check User::isAdmin() before proceeding, but the list.json.php endpoints have no authorization check whatsoever.
PayPalYPT_log list endpoint (plugin/PayPalYPT/View/PayPalYPT_log/list.json.php:1-10):
<?php
require_once '../../../../videos/configuration.php';
require_once $global['systemRootPath'] . 'plugin/PayPalYPT/Objects/PayPalYPT_log.php';
header('Content-Type: application/json');
$rows = PayPalYPT_log::getAll();
$total = PayPalYPT_log::getTotal();
?>
{"data": <?php echo json_encode($rows); ?>, ...}
No User::isAdmin() check. The getAll() method (inherited from ObjectYPT) executes SELECT * FROM PayPalYPT_log returning all records.
Contrast with the sibling add endpoint (plugin/PayPalYPT/View/PayPalYPT_log/add.json.php:13-16):
if (!User::isAdmin()) {
$obj->msg = "You can't do this";
die(json_encode($obj));
}
The configuration.php bootstrap file performs no global authentication gating, it initializes the application framework but does not enforce auth. No .htaccess rules restrict access to plugin View directories.
Data model (plugin/PayPalYPT/Objects/PayPalYPT_log.php): Each record contains agreement_id, users_id, json (full PayPal API response), recurring_payment_id, value (payment amount), and token (PayPal Express Checkout token).
The identical pattern exists in:
plugin/AuthorizeNet/View/Anet_webhook_log/list.json.php, full Authorize.Net webhook payloadsplugin/BTCPayments/View/Btc_payments/list.json.php, Bitcoin transaction identifiers and amounts
This was the exact same vulnerability class patched in commit 83390ab1f for the Scheduler plugin (GHSA-j724-5c6c-68g5), but the fix was only applied to the 3 Scheduler endpoints. A total of 21 list.json.php endpoints across the codebase remain unprotected.
PoC
Step 1, Dump PayPal transaction logs (unauthenticated):
curl -s 'https://target.com/plugin/PayPalYPT/View/PayPalYPT_log/list.json.php'
Returns all PayPal transaction records including agreement IDs, tokens, payment amounts, user IDs, and full PayPal API JSON responses.
Step 2, Dump Authorize.Net webhook logs (unauthenticated):
curl -s 'https://target.com/plugin/AuthorizeNet/View/Anet_webhook_log/list.json.php'
Returns all Authorize.Net webhook payloads including transaction IDs, event types, and payment details.
Step 3, Dump Bitcoin payment records (unauthenticated):
curl -s 'https://target.com/plugin/BTCPayments/View/Btc_payments/list.json.php'
Returns all Bitcoin transaction identifiers, BTC amounts, and store identifiers.
Step 4, Confirm sibling endpoints ARE protected:
curl -s -X POST 'https://target.com/plugin/PayPalYPT/View/PayPalYPT_log/add.json.php'
# Returns: {"error":true,"msg":"You can't do this"}
Impact
- Financial data exposure: Unauthenticated attackers can retrieve all payment transaction records across PayPal, Authorize.Net, and Bitcoin payment providers.
- Token leakage: PayPal Express Checkout tokens and billing agreement IDs are exposed, potentially enabling payment manipulation or account correlation.
- PII leakage: Transaction records contain user ID mappings, payment amounts, and full API responses that may include payer email addresses and names.
- Broad scope: 21 total
list.json.phpendpoints lack auth, also exposing live streaming server infrastructure (Live_servers), user connection data, meeting participation logs, and AI transcription responses. - Zero interaction required: No authentication, no user interaction, a single GET request dumps the entire table.
The application does not perform an authorization check before performing a sensitive operation. Typical impact: unauthorized access to restricted functionality or data.
GHSA-WPRJ-9CVC-5W37 has a CVSS score of 7.5 (High). The vector is network-reachable, no privileges required, and no user interaction. A CVSS score reflects the worst-case severity of the vulnerability, not your specific exposure. Whether this affects your application depends on whether the vulnerable code is present and reachable in your environment. No fixed version is listed yet, so configuration controls and monitoring matter more in the interim.
Affected versions
Security releases
Kodem intelligence
Severity tells you how bad this could be in the worst case. It does not tell you whether you are exposed. Exploitability and impact are functions of runtime truth: whether the vulnerable code is present, reachable, and actually executes in your application. A vulnerable package can sit in your dependency tree and never run.
Kodem, an Intelligent Application Security platform, uses runtime intelligence to reveal which vulnerabilities actually execute in production, so teams prioritize the ones that genuinely matter. Kodem's runtime-powered SCA identifies whether this CVE is reachable in your applications.
Remediation advice
Add User::isAdmin() checks to all unprotected list.json.php endpoints, matching the pattern used in the Scheduler fix (commit 83390ab1f). For each affected file, add immediately after the require_once and header() lines:
if (!User::isAdmin()) {
$obj = new stdClass();
$obj->error = true;
$obj->msg = "You can't do this";
die(json_encode($obj));
}
The full list of files requiring this fix:
plugin/PayPalYPT/View/PayPalYPT_log/list.json.phpplugin/AuthorizeNet/View/Anet_webhook_log/list.json.phpplugin/BTCPayments/View/Btc_payments/list.json.phpplugin/AI/View/Ai_responses/list.json.phpplugin/AI/View/Ai_metatags_responses/list.json.phpplugin/AI/View/Ai_transcribe_responses/list.json.phpplugin/Live/view/Live_servers/list.json.phpplugin/Live/view/Live_schedule/list.json.phpplugin/Live/view/Live_restreams_logs/list.json.phpplugin/SocialMediaPublisher/View/Publisher_schedule/list.json.phpplugin/SocialMediaPublisher/View/Publisher_social_medias/list.json.phpplugin/Meet/View/Meet_join_log/list.json.phpplugin/Meet/View/Meet_schedule_has_users_groups/list.json.phpplugin/PlayLists/View/Playlists_schedules/list.json.phpplugin/UserConnections/View/Users_connections/list.json.phpplugin/UserNotifications/View/User_notifications/list.json.phpplugin/VideosStatistics/View/Statistics/list.json.phpplugin/VideoTags/View/Tags_subscriptions/list.json.phpplugin/CustomizeUser/View/Categories_has_users_groups/list.json.phpplugin/CustomizeUser/View/Users_extra_info/list.json.phpplugin/ImageGallery/list.json.php
Frequently Asked Questions
- What is GHSA-WPRJ-9CVC-5W37? GHSA-WPRJ-9CVC-5W37 is a high-severity missing authorization vulnerability in wwbn/avideo (composer), affecting versions <= 26.0. No fixed version is listed yet. The application does not perform an authorization check before performing a sensitive operation.
- How severe is GHSA-WPRJ-9CVC-5W37? GHSA-WPRJ-9CVC-5W37 has a CVSS score of 7.5 (High). This score reflects the worst-case severity of the vulnerability, not your specific exposure. Whether it represents real risk in your environment depends on whether the vulnerable code is present and reachable.
- Which versions of wwbn/avideo are affected by GHSA-WPRJ-9CVC-5W37? wwbn/avideo (composer) versions <= 26.0 is affected.
- Is there a fix for GHSA-WPRJ-9CVC-5W37? No fixed version is listed for GHSA-WPRJ-9CVC-5W37 yet. Monitor the advisory for updates and apply mitigations in the interim.
- Is GHSA-WPRJ-9CVC-5W37 exploitable, and should I be worried? Whether GHSA-WPRJ-9CVC-5W37 is exploitable in your environment depends on whether the vulnerable code is present and reachable. A CVSS score is a worst-case rating; it does not account for your specific deployment, configuration, or usage patterns. Kodem, an Intelligent Application Security platform, uses runtime intelligence to show which vulnerabilities actually execute in production, so you can focus on the ones that represent real risk. Get a demo
- What actually determines whether GHSA-WPRJ-9CVC-5W37 is exploitable, and how bad it is? Exploitability and impact are not fixed properties of a CVE. They depend on runtime truth: whether the vulnerable code is present, reachable, and actually executes in your application. A high CVSS score on a dependency that never runs is not the same as real risk. Kodem, an Intelligent Application Security platform, uses runtime intelligence to reveal which vulnerabilities actually execute in production, so teams prioritize the ones that genuinely matter.
- How do I fix GHSA-WPRJ-9CVC-5W37? No fixed version is listed yet. In the interim: Keep the dependency up to date. Ensure authorization checks are enforced consistently on all sensitive operations.