From dc869852bc5674f158db79bb2b4a3ad42b879f0e Mon Sep 17 00:00:00 2001 From: dollaransh17 Date: Sat, 4 Oct 2025 17:22:50 +0530 Subject: [PATCH] fix(sites): Fix Threads false positive detection MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Threads was showing false positives for non-existent users because the error message detection was incorrect. Updated errorMsg: - Old: "Threads" (generic, matches valid pages too) - New: "Threads • Log in" (specific to non-existent users) When a user doesn't exist, Threads redirects to a login page with the title "Threads • Log in". Valid user profiles have titles like "Username (@username) • Threads, Say more". Tested with: - Invalid user (impossibleuser12345): Correctly not found - Valid user (zuck): Correctly found This fixes the false positive issue where non-existent Threads profiles were being reported as found. --- sherlock_project/resources/data.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sherlock_project/resources/data.json b/sherlock_project/resources/data.json index b30ec929..1f6b3d9e 100644 --- a/sherlock_project/resources/data.json +++ b/sherlock_project/resources/data.json @@ -2820,7 +2820,7 @@ "username_claimed": "green" }, "threads": { - "errorMsg": "Threads", + "errorMsg": "Threads • Log in", "errorType": "message", "headers": { "Sec-Fetch-Mode": "navigate"