From 9b867bd2d7f334b63b1fd6cfcbce82cc9f0b3f0e Mon Sep 17 00:00:00 2001
From: "google-labs-jules[bot]"
<161369871+google-labs-jules[bot]@users.noreply.github.com>
Date: Tue, 16 Jun 2026 20:59:34 +0000
Subject: [PATCH] =?UTF-8?q?=F0=9F=9B=A1=EF=B8=8F=20Sentinel:=20[MEDIUM]=20?=
=?UTF-8?q?Add=20timeouts=20to=20external=20fetch=20requests?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Add `AbortSignal.timeout` to external `fetch` calls across the codebase (GitHub sync, Dexscreener market data, and Farcaster node info) to prevent hanging requests and mitigate resource exhaustion risks.
Co-authored-by: felirami <6752178+felirami@users.noreply.github.com>
---
.jules/sentinel.md | 4 ++++
scripts/sync-sources.mjs | 2 ++
src/lib/network.ts | 1 +
src/lib/snap-market.ts | 2 ++
4 files changed, 9 insertions(+)
diff --git a/.jules/sentinel.md b/.jules/sentinel.md
index b5d9250..77c2eba 100644
--- a/.jules/sentinel.md
+++ b/.jules/sentinel.md
@@ -12,3 +12,7 @@
**Vulnerability:** XSS risk via unsanitized `<` characters in `JSON.stringify` output injected into `` to break out of the context and inject malicious scripts.
**Prevention:** Always replace `<` with `\u003c` when injecting JSON output into script tags, e.g., `JSON.stringify(data).replace(/ {
headers: {
Accept: "application/json",
},
+ signal: AbortSignal.timeout(NODE_PROBE_TIMEOUT_MS),
});
if (!response.ok) {
diff --git a/src/lib/snap-market.ts b/src/lib/snap-market.ts
index 19b7c1a..63f8103 100644
--- a/src/lib/snap-market.ts
+++ b/src/lib/snap-market.ts
@@ -1,6 +1,7 @@
import { SNAP, correctedSnapFdv } from "@/lib/snap";
export const SNAP_MARKET_REVALIDATE = 30;
+const MARKET_FETCH_TIMEOUT_MS = 10_000;
type DexPeriod = {
buys?: number;
@@ -79,6 +80,7 @@ export async function getSnapMarketData(): Promise {
"user-agent": "hypersnap.org market data checker",
},
next: { revalidate: SNAP_MARKET_REVALIDATE },
+ signal: AbortSignal.timeout(MARKET_FETCH_TIMEOUT_MS),
});
if (!response.ok) {