CAR-T Therapy Expands Beyond Leukemia: GPNMB Protein Emerges as Promising Target for Glioblastoma and Rare Soft Tissue Sarcoma
CAR-T therapy has revolutionized the treatment of certain blood cancers, yet it has struggled to achieve comparable success against solid tumors of internal organs. The core challenge lies not in the immune cells themselves but in identifying reliable molecular targets. Cells within solid tumors vary widely in their surface protein profiles, allowing therapy-resistant subpopulations to drive disease recurrence.
Two independent research groups have now converged on the same surface protein, GPNMB, as a promising solution that addresses multiple obstacles simultaneously. Genetically modified lymphocytes targeting GPNMB successfully eliminated glioblastoma and alveolar soft part sarcoma cells in laboratory models, slowed tumor growth in mice, and, in one project, were administered to a human patient for the first time.
How CAR-T Therapy Works
CAR-T treatment begins with a patient’s own T-lymphocytes, which are extracted from blood, genetically engineered to express a chimeric antigen receptor (CAR), and then reinfused. The CAR functions as a highly specific sensor that recognizes a pre-selected molecule on the surface of cancer cells, enabling the lymphocytes to locate and destroy them. While this approach has proven highly effective for leukemias and some lymphomas—where most malignant cells share a common surface protein—it has been far less successful against solid tumors.
Overcoming Solid-Tumor Barriers
Solid tumors present two major difficulties. First, even within a single tumor, different cells express different surface proteins, so some escape attack and continue proliferating. Second, the tumor microenvironment—composed of connective tissue, blood vessels, and immune cells—often suppresses anti-tumor responses and hinders CAR-T function. Researchers therefore sought a target present on both tumor cells and the immune cells that shield the tumor.
Glioblastoma Study Highlights Dual Attack
One team focused on glioblastoma, the most aggressive brain tumor. By comparing patient samples, scientists identified GPNMB as the most promising surface protein on the most dangerous tumor cells. After genetic modification, the resulting CAR-T cells nearly completely eradicated tumor cells grown from patient tissues. In mouse experiments, treatment slowed disease progression and extended survival. Importantly, GPNMB was also expressed on immune cells that normally help the tumor evade destruction, allowing the therapy to attack both the tumor and its protective microenvironment.
Alveolar Soft Part Sarcoma Research and First-in-Human Use
The second study examined alveolar soft part sarcoma, a rare and aggressive soft-tissue cancer often driven by a fusion gene. Screening again pointed to GPNMB, whose expression correlated directly with the activity of the fusion gene. CAR-T cells targeting this protein eliminated tumors and blocked metastasis formation in mice. Prior to human testing, researchers confirmed safety using mice engrafted with human skin; only transient inflammation occurred, with no lasting tissue damage. The therapy was then given to a patient with recurrent, metastatic disease. A single infusion led to rapid expansion of the modified lymphocytes, which persisted for about a month without severe cytokine-release syndrome or other major complications. Imaging showed reduction in lung metastases and disease stabilization lasting approximately three months.
Future Directions and Limitations
Both teams noted that adding drugs to block remaining immunosuppressive cells further enhanced tumor clearance in mouse models. The researchers conclude that effective CAR-T targets should be sought not only on cancer cells but also on the immune cells that support tumor growth. While GPNMB is not yet a universal solution and clinical data remain limited to a single patient, the independent validation across two different solid-tumor types marks a significant step toward expanding CAR-T therapy beyond leukemia.
Related articles
OAuth Authorization Server Built Without Storing User Profiles
The article details the evolution of an OAuth Authorization Server that deliberately avoids storing user profiles, relying instead on external identity providers for authentication. It addresses three core constraints: hundreds of dynamically created isolated APIs, a public SPA client without a BFF, and the inability of resources to query the AS on every request. The design separates concerns so the AS handles only clients, tenants, grants, audiences, scopes, keys, sessions, and token issuance while the Main API owns profiles and roles. Tokens are managed securely inside a Service Worker using a custom FedCM grant, eliminating races across tabs and reducing XSS exposure. The approach minimizes blast radius, simplifies compliance, and keeps the AS replaceable without affecting product domain logic.
Why a 202-Character License Key Uses ECDSA P-256 Instead of Ed25519 or RSA
A developer building offline license verification for a .NET desktop application evaluated Ed25519, RSA, and ECDSA P-256 before selecting the last option. The decision was driven by the requirement for zero external dependencies, keys short enough for manual entry from email, and support for key rotation without breaking existing licenses. Although Ed25519 offers faster verification and a smaller public key, it is absent from System.Security.Cryptography in both .NET 8 and .NET 10, with API approval only targeted for version 11. RSA-2048 produces signatures too long for practical use, resulting in a 571-character Base32 string that users would find cumbersome. ECDSA P-256 with SHA-256 delivers a fixed 64-byte signature that becomes a manageable 202-character key when encoded in Base32, while remaining fully available in the runtime. The article also covers performance measurements, the risks of ECDSA nonce generation, and the deliberate choice of the IEEE P1363 signature format to guarantee fixed-length output.
Pilcrow Publishes Free Comprehensive Guide on Web Authentication
Author Pilcrow has released a detailed, ad-free handbook covering authentication and authorization practices for web applications. The resource draws on personal experience and includes practical examples in JavaScript and Go. It examines password-based methods, email verification, multi-factor authentication, passwordless flows, and passkeys while highlighting associated risks and usability trade-offs. The book also provides in-depth guidance on session management, token security, expiration policies, and email address handling as account identifiers. Recommendations emphasize choosing methods that match application security requirements and user expectations. Additional context is given on OWASP resources and community support channels.
redb 3.4.0 Adds Replay Checkpoints, Shared Runtime Layer and Declarative Secrets Handling for .NET Ecosystem
redb 3.4.0 delivers operational improvements for the .NET integration platform that includes typed storage over Postgres, MSSQL and SQLite, the redb.Route engine modeled after Apache Camel, the Tsak runtime with dashboard and clustering, and redb.Identity for OIDC and OAuth 2.1. The release focuses on post-deployment resilience with replay checkpoints that capture message state at named points inside routes, allowing safe re-execution of downstream steps without duplicating side effects. A shared runtime layer moves framework assemblies into a separate Libs/shared directory so that individual DLLs can be replaced without rebuilding or redeploying the entire Tsak or Identity packages. Secrets are now declared with a [Sensitive] attribute on endpoint options, ensuring URIs containing passwords or keys are sanitized before they reach logs, metrics or health checks. Additional controls include role-based access to management APIs, persistent audit trails and cryptographic signing of dynamically loaded modules. All Pro features remain free on the entire 3.x line with no licensing server required.