Skip to content

Commit

Permalink
Merge pull request sherlock-project#773 from sherlock-project/deal-wi…
Browse files Browse the repository at this point in the history
…th-false-positives

Deal with the false positives
  • Loading branch information
sdushantha authored Sep 23, 2020
2 parents a265590 + 1775737 commit 34ba1ea
Show file tree
Hide file tree
Showing 4 changed files with 211 additions and 177 deletions.
21 changes: 19 additions & 2 deletions removed_sites.json
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,8 @@
"username_claimed": "blue",
"username_unclaimed": "noonewouldeverusethis"
},
"linkedin.com": {
"errorMsg": "This profile is not available",
"Linkedin": {
"errorMsg": "could not be found",
"errorType": "message",
"rank": 0,
"url": "https://www.linkedin.com/in/{}",
Expand Down Expand Up @@ -482,6 +482,23 @@
"urlMain": "https://www.meetme.com/",
"username_claimed": "blue",
"username_unclaimed": "noonewouldeverusethis7"
},
"tracr.co": {
"errorMsg": "No search results",
"errorType": "message",
"regexCheck": "^[A-Za-z0-9]{2,32}$",
"url": "https://tracr.co/users/1/{}",
"urlMain": "https://tracr.co/",
"username_claimed": "blue",
"username_unclaimed": "noonewouldeverusethis7"
},
"Taringa": {
"errorType": "status_code",
"regexCheck": "^[^.]*$",
"url": "https://www.taringa.net/{}",
"urlMain": "https://taringa.net/",
"username_claimed": "blue",
"username_unclaimed": "noonewouldeverusethis7"
}
}

45 changes: 45 additions & 0 deletions removed_sites.md
Original file line number Diff line number Diff line change
Expand Up @@ -954,3 +954,48 @@ As of 2020-09-02, MeetMe returns false positives
"username_unclaimed": "noonewouldeverusethis7"
},
```

## Linkdedin

As of 2020-09-23, Linkedin returns false positives because we are prompted with prompted to login when checking for a user

```
"Linkedin": {
"errorMsg": "could not be found",
"errorType": "message",
"rank": 0,
"url": "https://www.linkedin.com/in/{}",
"urlMain": "https://www.linkedin.com/",
"username_claimed": "alex",
"username_unclaimed": "noonewouldeverusethis7"
},
```

## tracr.co
As of 2020-09-23, tracr.co returns false positives because the site seems to be shut down.
```
"tracr.co": {
"errorMsg": "No search results",
"errorType": "message",
"regexCheck": "^[A-Za-z0-9]{2,32}$",
"url": "https://tracr.co/users/1/{}",
"urlMain": "https://tracr.co/",
"username_claimed": "blue",
"username_unclaimed": "noonewouldeverusethis7"
}
```

## Taringa

As of 2020-09-23, Taringa returns false positives.

```
"Taringa": {
"errorType": "status_code",
"regexCheck": "^[^.]*$",
"url": "https://www.taringa.net/{}",
"urlMain": "https://taringa.net/",
"username_claimed": "blue",
"username_unclaimed": "noonewouldeverusethis7"
},
```
28 changes: 1 addition & 27 deletions sherlock/resources/data.json
Original file line number Diff line number Diff line change
Expand Up @@ -888,15 +888,6 @@
"username_claimed": "blue",
"username_unclaimed": "noonewouldeverusethis7"
},
"Linkedin": {
"errorMsg": "could not be found",
"errorType": "message",
"rank": 0,
"url": "https://www.linkedin.com/in/{}",
"urlMain": "https://www.linkedin.com/",
"username_claimed": "alex",
"username_unclaimed": "noonewouldeverusethis7"
},
"LiveJournal": {
"errorType": "status_code",
"regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$",
Expand Down Expand Up @@ -1518,14 +1509,6 @@
"username_claimed": "blue",
"username_unclaimed": "noonewouldeverusethis"
},
"Taringa": {
"errorType": "status_code",
"regexCheck": "^[^.]*$",
"url": "https://www.taringa.net/{}",
"urlMain": "https://taringa.net/",
"username_claimed": "blue",
"username_unclaimed": "noonewouldeverusethis7"
},
"Telegram": {
"errorMsg": "<meta property=\"og:description\" content=\"\">",
"errorType": "message",
Expand Down Expand Up @@ -2256,20 +2239,11 @@
"username_claimed": "adam",
"username_unclaimed": "noonewouldeverusethis7"
},
"tracr.co": {
"errorMsg": "No search results",
"errorType": "message",
"regexCheck": "^[A-Za-z0-9]{2,32}$",
"url": "https://tracr.co/users/1/{}",
"urlMain": "https://tracr.co/",
"username_claimed": "blue",
"username_unclaimed": "noonewouldeverusethis7"
},
"uid": {
"errorType": "status_code",
"url": "http://uid.me/{}",
"urlMain": "https://uid.me/",
"username_claimed": "blue",
"username_unclaimed": "noonewouldeverusethis7"
}
}
}
Loading

0 comments on commit 34ba1ea

Please sign in to comment.