GHSA-j6gc-4893-qwmp: Race Condition
Summary Authenticated users can repeatedly call PUT /api/user/self with language or sidebarmodules while relay requests are consuming quota. The settings path reads a full User snapshot and writes it back through User.Update(), which refreshes Redis with RedisHSetObj and overwrites the Quota field. This can erase concurrent HINCRBY quota deductions and keep cached balance artificially high, allowing calls far beyond the paid quota.
Impact A low-privileged authenticated user may bypass quota enforcement and cause financial loss to operators. Authentication and pre-consumption use cached quota, while DB/log usage can continue increasing.
Affected Components - controller/user.go: UpdateSelf language/sidebarmodules branches - model/user.go: User.Update / UpdateWithTx full snapshot update - model/usercache.go: updateUserCache RedisHSetObj full hash write - model/user.go: GetUserQuota reads Redis cache first
Root Cause Normal billing uses Redis HINCRBY on user:<id>.Quota, while settings updates use a stale full user snapshot to HSET the entire cache hash, including Quota. These two writers race on the same Redis field.
Patches This issue is fixed in v1.0.0-rc.16. The fix makes user setting updates field-scoped, prevents stale user snapshots from overwriting accounting fields, and keeps generic user cache refreshes from modifying Quota. Quota cache updates are reserved for atomic quota delta paths or explicit quota synchronization paths.
Workarounds If upgrading immediately is not possible, operators should temporarily restrict or rate-limit PUT /api/user/self and avoid allowing frequent user setting updates while Redis-backed quota cache is enabled. This is only a mitigation; upgrading is recommended.
Remediation Upgrade to v1.0.0-rc.16 or later. Deployments with Redis enabled should restart application instances after upgrading so stale in-process code paths are removed.
Affected Software
Remediation
Recommended actions to resolve this vulnerability, in priority order.
- Upgrade
Upgrade
go/github.com/QuantumNous/new-apito a version that resolves this vulnerability.Fixed in 1.0.0-rc.16 - Upgrade
Upgrade
controller/user.go / model/user.go / model/user_cache.goto a version that resolves this vulnerability.Fixed in v1.0.0-rc.16Patch This is only a mitigation; upgrading is recommended. - Compensating control
If upgrading immediately is not possible, temporarily restrict or rate-limit PUT /api/user/self and avoid allowing frequent user setting updates while Redis-backed quota cache is enabled.
- Operational
For deployments with Redis enabled, restart application instances after upgrading so stale in-process code paths are removed.
Event History
Frequently Asked Questions
What is the severity of GHSA-j6gc-4893-qwmp?
The severity of GHSA-j6gc-4893-qwmp is rated as 52.
How do I fix GHSA-j6gc-4893-qwmp?
To fix GHSA-j6gc-4893-qwmp, ensure that your application properly handles concurrency and race conditions when calling the PUT /api/user/self endpoint.
What systems are affected by GHSA-j6gc-4893-qwmp?
GHSA-j6gc-4893-qwmp affects the QuantumNous new-api software on GitHub.
What type of vulnerability is GHSA-j6gc-4893-qwmp classified as?
GHSA-j6gc-4893-qwmp is classified as a Race Condition vulnerability.
When was GHSA-j6gc-4893-qwmp published?
GHSA-j6gc-4893-qwmp was published on August 17, 2026.