Glean is a self-hosted RSS reader and personal knowledge management tool. Prior to 0.2.6, POST /api/feeds/discover passes an attacker-supplied feedurl to discoverfeed(feedurl), creates a subscription through FeedService.createsubscription(), and enqueues fetchfeedtask. The background path calls fetchfeed(feed.url) and parsefeed(), which assigns each RSS item link to ParsedEntry.url. The task then passes ParsedEntry.url to fetchandextractfulltext(parsedentry.url) without network-level validation in backend/packages/rss/gleanrss/extractor.py and backend/apps/worker/gleanworker/tasks/feedfetcher.py. A malicious feed can therefore make the server request private, loopback, link-local, or cloud-metadata resources. The fetched response is stored in Entry.content and can be retrieved through GET /api/entries/{id}, producing non-blind server-side request forgery with full response disclosure. This can bypass network perimeters, probe internal services and ports, expose internal configuration or web content, and potentially disclose cloud metadata access tokens. This issue is fixed in version 0.2.6.