From 7114c55960a8c4a2bad6f379af88451923d252df Mon Sep 17 00:00:00 2001 From: balestek <157660869+balestek@users.noreply.github.com> Date: Thu, 13 Jun 2024 11:54:08 +0200 Subject: [PATCH 1/4] Discogs fix Use discogs official api to avoid the 403 redirection caused by javascript loading when checking the profile url. Official api has a rate limit of 25 requests per minute for unregistered user. It should be ok. Changed known accounts because they were not working (username changed by user) --- wmn-data.json | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/wmn-data.json b/wmn-data.json index 223b739a..699d3759 100644 --- a/wmn-data.json +++ b/wmn-data.json @@ -1378,14 +1378,15 @@ "known" : ["JeffG1", "Maxatoria"], "cat" : "social" }, - { + { "name" : "Discogs", - "uri_check" : "https://www.discogs.com/user/{account}", + "uri_check" : "https://api.discogs.com/users/{account}", + "pretty_uri" : "https://www.discogs.com/user/{account}", "e_code" : 200, - "e_string" : "Joined on", + "e_string" : "\"id\"", "m_code" : 404, - "m_string" : "We couldn't find that page.", - "known" : ["7jlong", "venetian-guy"], + "m_string" : "User does not exist", + "known" : ["damiano84", "bernadette69"], "cat" : "music" }, { From e7b9e5587ead79a7fcbd6e2f98ae24b954d96b40 Mon Sep 17 00:00:00 2001 From: balestek <157660869+balestek@users.noreply.github.com> Date: Thu, 13 Jun 2024 11:55:43 +0200 Subject: [PATCH 2/4] Discogs fix Use discogs official api to avoid the 403 redirection caused by javascript loading when checking the profile url. Official api has a rate limit of 25 requests per minute for unregistered user. It should be ok. Changed known accounts because they were not working (username changed by user) --- wmn-data.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wmn-data.json b/wmn-data.json index 699d3759..2352be49 100644 --- a/wmn-data.json +++ b/wmn-data.json @@ -1378,7 +1378,7 @@ "known" : ["JeffG1", "Maxatoria"], "cat" : "social" }, - { + { "name" : "Discogs", "uri_check" : "https://api.discogs.com/users/{account}", "pretty_uri" : "https://www.discogs.com/user/{account}", From acde75a4dd6c0d2ec341e538aeba0b5e1abc6260 Mon Sep 17 00:00:00 2001 From: balestek <157660869+balestek@users.noreply.github.com> Date: Thu, 13 Jun 2024 13:28:23 +0200 Subject: [PATCH 3/4] VirusTotal fix Uses an undocumented endpoint. headers are required, values can be dummy data, even for "X-VT-Anti-Abuse-Header" (works as well with "1"). But near expected values is more stealth. The I in the key "Accept-Ianguage" is on purpose, planted by VirusTotal. --- wmn-data.json | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/wmn-data.json b/wmn-data.json index 2352be49..6c19fa23 100644 --- a/wmn-data.json +++ b/wmn-data.json @@ -5942,11 +5942,18 @@ }, { "name" : "Virustotal", - "uri_check" : "https://www.virustotal.com/gui/user/{account}", + "uri_check" : "https://www.virustotal.com/ui/users/{account}", + "pretty_uri" : "https://www.virustotal.com/gui/user/{account}", + "headers" : { + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0", + "X-Tool": "vt-ui-main", + "Accept-Ianguage": "en-US,en;q=0.9,es;q=0.8", + "X-VT-Anti-Abuse-Header": "MTAxOTFwMDcxOTEtWkc5dWRDQmlaU0JsZG2scy5xNzE4Mjc1NDI0LjUzMw==" + }, "e_code" : 200, - "e_string" :"USER PROFILE", - "m_string" : "User not found", - "m_code" : 200, + "e_string" :"data", + "m_string" : "NotFoundError", + "m_code" : 404, "known" : ["cyber", "cybersecstu"], "cat" : "misc" }, From 9e5d4ea31b5fdfe8c32f94c2fa4166d7a38a82b6 Mon Sep 17 00:00:00 2001 From: balestek <157660869+balestek@users.noreply.github.com> Date: Thu, 13 Jun 2024 13:50:10 +0200 Subject: [PATCH 4/4] Wetransfer fix e_string and m_code changed --- wmn-data.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wmn-data.json b/wmn-data.json index 6c19fa23..aa59ae68 100644 --- a/wmn-data.json +++ b/wmn-data.json @@ -6111,9 +6111,9 @@ "uri_check" : "https://{account}.wetransfer.com", "strip_bad_char" : ".", "e_code" : 200, - "e_string" : "default_recipient_email", + "e_string" : "workspaceName", "m_string" : "", - "m_code" : 302, + "m_code" : 307, "known" : ["mark", "joe"], "cat" : "misc" },