Labels
No labels
bug
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: shekhar/windows-iso-downloader#9
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Bug
Clicking "Get Download Links" on Windows 8.1 (product/52) and
Windows 8.1 Single Language (product/48) returns:
Root cause
The backend validates
sku_idwithstrconv.Atoi, requiring it to bea plain integer. Older Windows products return non-integer SKU IDs from
Microsoft's API (e.g. locale strings or GUIDs).
Fix
Replace the
strconv.Atoicheck with a permissive allowlist regex^[a-zA-Z0-9_\-]+$that accepts integers, GUIDs, and locale stringswhile still blocking dangerous characters.