Merge pull request #1958 from sherlock-project/fix-false-positive

Deal with false positives
pull/1952/head^2
Siddharth Dushantha 5 months ago committed by GitHub
commit cac34e90a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -837,5 +837,37 @@
"url": "https://forums.gunsandammo.com/profile/{}",
"urlMain": "https://gunsandammo.com/",
"username_claimed": "adam"
},
"TikTok": {
"errorType": "status_code",
"url": "https://tiktok.com/@{}",
"urlMain": "https://tiktok.com/",
"username_claimed": "red"
},
"Lolchess": {
"errorMsg": "No search results",
"errorType": "message",
"url": "https://lolchess.gg/profile/na/{}",
"urlMain": "https://lolchess.gg/",
"username_claimed": "blue"
},
"Virgool": {
"errorMsg": "\u06f4\u06f0\u06f4",
"errorType": "message",
"url": "https://virgool.io/@{}",
"urlMain": "https://virgool.io/",
"username_claimed": "blue"
},
"Whonix Forum": {
"errorType": "status_code",
"url": "https://forums.whonix.org/u/{}/summary",
"urlMain": "https://forums.whonix.org/",
"username_claimed": "red"
},
"ebio.gg": {
"errorType": "status_code",
"url": "https://ebio.gg/{}",
"urlMain": "https:/ebio.gg",
"username_claimed": "dev"
}
}

@ -1824,4 +1824,62 @@ As of 2023.08.29, GunsAndAmmo responds with 404 from time to time
"urlMain": "https://gunsandammo.com/",
"username_claimed": "adam"
}
```
## TikTok
As of 2023.12.21, TikTok returns false positives. This is because the webpage returns a somewhat blank page. This prevents us from being able to check for the existance of usernames. Proxitok does not work either.
```json
"TikTok": {
"errorType": "status_code",
"url": "https://tiktok.com/@{}",
"urlMain": "https://tiktok.com/",
"username_claimed": "red"
},
```
## Lolchess
As of 2023.12.21, Lolchess returns false positives.
```json
"Lolchess": {
"errorMsg": "No search results",
"errorType": "message",
"url": "https://lolchess.gg/profile/na/{}",
"urlMain": "https://lolchess.gg/",
"username_claimed": "blue"
},
```
## Virgool
As of 2023.12.21, Lolchess returns false positives.
```json
"Virgool": {
"errorMsg": "\u06f4\u06f0\u06f4",
"errorType": "message",
"url": "https://virgool.io/@{}",
"urlMain": "https://virgool.io/",
"username_claimed": "blue"
},
```
## Whonix Forum
As of 2023.12.21, Lolchess returns false positives.
```json
"Whonix Forum": {
"errorType": "status_code",
"url": "https://forums.whonix.org/u/{}/summary",
"urlMain": "https://forums.whonix.org/",
"username_claimed": "red"
},
```
## Ebio
As of 2023.12.21, Lolchess returns false positives.
```json
"ebio.gg": {
"errorType": "status_code",
"url": "https://ebio.gg/{}",
"urlMain": "https:/ebio.gg",
"username_claimed": "dev"
},
```

@ -502,7 +502,7 @@
"username_claimed": "blue"
},
"Contently": {
"errorMsg": "We can't find that page!",
"errorMsg": "<title>Leading Content Marketing Platform | Contently</title>",
"errorType": "message",
"regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$",
"url": "https://{}.contently.com/",
@ -1237,13 +1237,6 @@
"urlMain": "https://lobste.rs/",
"username_claimed": "jcs"
},
"Lolchess": {
"errorMsg": "No search results",
"errorType": "message",
"url": "https://lolchess.gg/profile/na/{}",
"urlMain": "https://lolchess.gg/",
"username_claimed": "blue"
},
"LottieFiles": {
"errorType": "status_code",
"url": "https://lottiefiles.com/{}",
@ -1945,12 +1938,6 @@
"urlMain": "https://themeforest.net/",
"username_claimed": "user"
},
"TikTok": {
"errorType": "status_code",
"url": "https://tiktok.com/@{}",
"urlMain": "https://tiktok.com/",
"username_claimed": "red"
},
"TnAFlix": {
"errorType": "status_code",
"isNSFW": true,
@ -2097,13 +2084,6 @@
"urlMain": "https://vimeo.com/",
"username_claimed": "blue"
},
"Virgool": {
"errorMsg": "\u06f4\u06f0\u06f4",
"errorType": "message",
"url": "https://virgool.io/@{}",
"urlMain": "https://virgool.io/",
"username_claimed": "blue"
},
"VirusTotal": {
"errorType": "status_code",
"request_method": "GET",
@ -2152,12 +2132,6 @@
"urlMain": "https://weebly.com/",
"username_claimed": "blue"
},
"Whonix Forum": {
"errorType": "status_code",
"url": "https://forums.whonix.org/u/{}/summary",
"urlMain": "https://forums.whonix.org/",
"username_claimed": "red"
},
"Wikidot": {
"errorMsg": "User does not exist.",
"errorType": "message",
@ -2344,12 +2318,6 @@
"urlMain": "https://egpu.io/",
"username_claimed": "blue"
},
"ebio.gg": {
"errorType": "status_code",
"url": "https://ebio.gg/{}",
"urlMain": "https:/ebio.gg",
"username_claimed": "dev"
},
"eintracht": {
"errorType": "status_code",
"url": "https://community.eintracht.de/fans/{}",

Loading…
Cancel
Save