e93507a09c
Lockfile supply-chain audit / lockfile supply-chain audit (push) Has been cancelled
Windows Studio GGUF CI / GPU prebuilt resolves without Visual Studio (push) Has been cancelled
Windows Studio GGUF CI / setup.ps1 unit tests (VS 2026 / CMake guard) (push) Has been cancelled
Windows Studio GGUF CI / real-VS detection (VS 2022) (push) Has been cancelled
Windows Studio GGUF CI / real-VS detection (VS 2026) (push) Has been cancelled
Windows Studio GGUF CI / VC++ runtime detect + install round-trip (windows-2025-vs2026) (push) Has been cancelled
Windows Studio GGUF CI / VC++ runtime detect + install round-trip (windows-latest) (push) Has been cancelled
Windows Studio Update CI / Studio Updating Tests (push) Has been cancelled
Wheel CI / Wheel build + content sanity + import smoke (push) Has been cancelled
Lint CI / Source lint (Python + shell + YAML + JSON + safety nets) (push) Has been cancelled
MLX CI on Mac M1 / dispatch (push) Has been cancelled
Security audit / advisory audit (pip + npm + cargo) (push) Has been cancelled
Security audit / pip scan-packages :: extras (push) Has been cancelled
Security audit / pip scan-packages :: studio (push) Has been cancelled
Security audit / pip scan-packages :: hf-stack (push) Has been cancelled
Security audit / npm scan-packages (Studio frontend tarballs) (push) Has been cancelled
Security audit / workflow-trigger lint (pull_request_target / cache-poisoning) (push) Has been cancelled
Security audit / pytest tests/security (push) Has been cancelled
Security audit / npm provenance + new install-script diff (push) Has been cancelled
Studio API CI / Studio API & Auth Tests (push) Has been cancelled
Backend CI / (Python 3.10) (push) Has been cancelled
Backend CI / (Python 3.11) (push) Has been cancelled
Backend CI / (Python 3.12) (push) Has been cancelled
Backend CI / (Python 3.13) (push) Has been cancelled
Backend CI / Repo tests (CPU) (push) Has been cancelled
Frontend CI / Frontend build + bundle sanity (push) Has been cancelled
Studio GGUF CI / OpenAI, Anthropic API tests (push) Has been cancelled
Studio GGUF CI / Tool calling Tests (push) Has been cancelled
Studio GGUF CI / JSON, images (push) Has been cancelled
Mac Studio GGUF CI / OpenAI, Anthropic API tests (push) Has been cancelled
Mac Studio GGUF CI / Tool calling Tests (push) Has been cancelled
Mac Studio GGUF CI / JSON, images (push) Has been cancelled
Mac Studio Install Matrix CI / Install + load (macos-14) (push) Has been cancelled
Mac Studio Install Matrix CI / Install + load (macos-15) (push) Has been cancelled
Mac Studio Install Matrix CI / Install + load (macos-26) (push) Has been cancelled
Mac Studio Install Matrix CI / Install + load (macos-15-intel) (push) Has been cancelled
Mac Studio API CI / Studio API & Auth Tests (push) Has been cancelled
Mac Studio Install Matrix CI / Install + load (macos-26-intel) (push) Has been cancelled
Mac Studio UI CI / Chat UI Tests (push) Has been cancelled
Studio Tauri CI / Tauri Linux debug build (no codesign) (push) Has been cancelled
Mac Studio Update CI / Studio Updating Tests (push) Has been cancelled
Studio UI CI / Chat UI Tests (push) Has been cancelled
Windows Studio API CI / Studio API & Auth Tests (push) Has been cancelled
Windows Studio UI CI / Chat UI Tests (push) Has been cancelled
Studio Update CI / Studio Updating Tests (push) Has been cancelled
Core / Core (HF=default + TRL=default) (push) Has been cancelled
Core / Core (HF=4.57.6 + TRL<1) (push) Has been cancelled
Core / Core (HF=latest + TRL=latest) (push) Has been cancelled
Core / llama.cpp build + smoke (push) Has been cancelled
Windows Studio GGUF CI / OpenAI, Anthropic API tests (push) Has been cancelled
Windows Studio GGUF CI / Tool calling Tests (push) Has been cancelled
Windows Studio GGUF CI / JSON, images (push) Has been cancelled
Windows Studio GGUF CI / Studio install + inference without Visual Studio (push) Has been cancelled
Studio export capability / capability (macos-latest) (push) Has been cancelled
Studio export capability / capability (ubuntu-latest) (push) Has been cancelled
Studio export capability / capability (windows-latest) (push) Has been cancelled
Cross-platform parity / parity (macos-latest) (push) Has been cancelled
Cross-platform parity / parity (windows-latest) (push) Has been cancelled
Scorecard supply-chain security / Scorecard analysis (push) Has been cancelled
Studio load-orchestrator CI / test (push) Has been cancelled
132 lines
4.8 KiB
Python
132 lines
4.8 KiB
Python
# SPDX-License-Identifier: AGPL-3.0-only
|
|
# Copyright 2026-present the Unsloth AI Inc. team. All rights reserved. See /studio/LICENSE.AGPL-3.0
|
|
|
|
"""Regression coverage for the bootstrap-pw cross-origin leak (PR 5739).
|
|
|
|
``_is_same_origin_request`` gates ``_inject_bootstrap`` so the seeded admin
|
|
password only ships to same-origin callers.
|
|
"""
|
|
|
|
import os
|
|
from types import SimpleNamespace
|
|
from unittest.mock import MagicMock
|
|
|
|
import pytest
|
|
|
|
|
|
def _build_request(
|
|
host: str,
|
|
origin: str | None,
|
|
scheme: str = "http",
|
|
) -> MagicMock:
|
|
request = MagicMock()
|
|
request.url.scheme = scheme
|
|
request.url.netloc = host
|
|
request.headers = {"origin": origin} if origin is not None else {}
|
|
return request
|
|
|
|
|
|
def test_is_same_origin_request_missing_origin_is_same_origin(monkeypatch):
|
|
from main import _is_same_origin_request
|
|
req = _build_request("127.0.0.1:8888", origin = None)
|
|
assert _is_same_origin_request(req) is True
|
|
|
|
|
|
def test_is_same_origin_request_matching_origin_is_same_origin():
|
|
from main import _is_same_origin_request
|
|
req = _build_request("127.0.0.1:8888", origin = "http://127.0.0.1:8888")
|
|
assert _is_same_origin_request(req) is True
|
|
|
|
|
|
def test_is_same_origin_request_evil_origin_is_cross_origin():
|
|
from main import _is_same_origin_request
|
|
req = _build_request("127.0.0.1:8888", origin = "https://evil.example")
|
|
assert _is_same_origin_request(req) is False
|
|
|
|
|
|
def test_is_same_origin_request_scheme_mismatch_is_cross_origin():
|
|
# https origin against an http listener is not same-origin.
|
|
from main import _is_same_origin_request
|
|
req = _build_request("127.0.0.1:8888", origin = "https://127.0.0.1:8888")
|
|
assert _is_same_origin_request(req) is False
|
|
|
|
|
|
def test_is_same_origin_request_port_mismatch_is_cross_origin():
|
|
# Same host different port is not same-origin per the web platform.
|
|
from main import _is_same_origin_request
|
|
req = _build_request("127.0.0.1:8888", origin = "http://127.0.0.1:5173")
|
|
assert _is_same_origin_request(req) is False
|
|
|
|
|
|
# ── Canonicalisation: default-port stripping + case folding ─────────
|
|
|
|
|
|
def test_is_same_origin_request_https_default_port_stripped_on_origin():
|
|
"""RFC 6454 strips default ports on Origin; canonicalise both sides so this stays same-origin."""
|
|
from main import _is_same_origin_request
|
|
|
|
req = _build_request("example.com:443", origin = "https://example.com", scheme = "https")
|
|
assert _is_same_origin_request(req) is True
|
|
|
|
|
|
def test_is_same_origin_request_http_default_port_stripped_on_origin():
|
|
from main import _is_same_origin_request
|
|
req = _build_request("example.com:80", origin = "http://example.com")
|
|
assert _is_same_origin_request(req) is True
|
|
|
|
|
|
def test_is_same_origin_request_default_port_present_on_origin():
|
|
"""Mirror case: Origin carries the default port, netloc doesn't. Same-origin."""
|
|
from main import _is_same_origin_request
|
|
|
|
req = _build_request("example.com", origin = "https://example.com:443", scheme = "https")
|
|
assert _is_same_origin_request(req) is True
|
|
|
|
|
|
def test_is_same_origin_request_host_case_insensitive():
|
|
"""Host portion is case-insensitive per RFC 3986."""
|
|
from main import _is_same_origin_request
|
|
|
|
req = _build_request("example.com", origin = "http://EXAMPLE.com")
|
|
assert _is_same_origin_request(req) is True
|
|
|
|
|
|
def test_is_same_origin_request_scheme_case_insensitive():
|
|
"""Scheme portion is case-insensitive per RFC 3986."""
|
|
from main import _is_same_origin_request
|
|
|
|
req = _build_request("example.com", origin = "HTTP://example.com")
|
|
assert _is_same_origin_request(req) is True
|
|
|
|
|
|
def test_is_same_origin_request_null_origin_is_cross_origin():
|
|
"""Sandboxed iframes / file:// pages send ``Origin: null``; cross-origin."""
|
|
from main import _is_same_origin_request
|
|
|
|
req = _build_request("example.com", origin = "null")
|
|
assert _is_same_origin_request(req) is False
|
|
|
|
|
|
def test_is_same_origin_request_unparseable_origin_is_cross_origin():
|
|
"""Hostless garbage falls to cross-origin so a malformed header can't leak the bootstrap."""
|
|
from main import _is_same_origin_request
|
|
|
|
req = _build_request("example.com", origin = "not-a-url")
|
|
assert _is_same_origin_request(req) is False
|
|
|
|
|
|
def test_is_same_origin_request_userinfo_in_netloc_ignored():
|
|
"""``user:pass@host:port`` netlocs (RFC 3986) must compare equal to the credentials-less Origin."""
|
|
from main import _is_same_origin_request
|
|
|
|
req = _build_request("user:pass@example.com:80", origin = "http://example.com")
|
|
assert _is_same_origin_request(req) is True
|
|
|
|
|
|
def test_is_same_origin_request_explicit_non_default_port_still_mismatch():
|
|
"""Canonicalisation does NOT collapse non-default ports to default."""
|
|
from main import _is_same_origin_request
|
|
|
|
req = _build_request("example.com", origin = "https://example.com:9999", scheme = "https")
|
|
assert _is_same_origin_request(req) is False
|