Removing OnlyFans support

Recently, @ThePornHelper raised an issue related to OnlyFans false negative. After going through the issue, I tried checking for some popular onlyfans creators on sherlock and as per the issue raised all of them were giving false negative.

So, I checked with the current method of checking the username availability. It the following API url:

`https://onlyfans.com/api2/v2/users/grandmasterchefjojo`

It returns a 400 error code and doesn't work at all.

Why it's happening? It requires a token be passed in the headers to for it to work.

After this, I tried using BurpSuite to find any other way to check availability and unfortunately there aren't any.

Even the wrong onlyfans.com/thisusernamedoesntexist777 URL also returns 200 in HTTP response.

So, it's better to remove OnlyFans from supported sites list and add it to removed_sites.json

Thanks.
pull/1775/head
Abhishek Verma 1 year ago committed by GitHub
parent dc2b3ed20d
commit c23f4b5a7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1474,14 +1474,6 @@
"urlMain": "https://ok.ru/",
"username_claimed": "ok"
},
"OnlyFans": {
"errorType": "status_code",
"isNSFW": true,
"url": "https://onlyfans.com/{}",
"urlMain": "https://onlyfans.com/",
"urlProbe": "https://onlyfans.com/api2/v2/users/{}",
"username_claimed": "theemilylynne"
},
"OpenStreetMap": {
"errorType": "status_code",
"url": "https://www.openstreetmap.org/user/{}",

Loading…
Cancel
Save