feat: add faproulette.co email and username scan modules#419
Merged
Conversation
Add email-based check via the api/userCheckEmail endpoint (email_scan/adult)
and a username profile check via the /@{user} page (user_scan/adult). The
username module confirms hits with an attribute-order-independent canonical
match; the email module maps the endpoint's success/error JSON to a result.
Owner
|
@brunolm The email_scan modules you added are perfect. For the username scans, however, we also use the extra parameter of the Result class to capture the available metadata that platforms expose within their response payloads. Could you review the username modules across your open PRs to see where we can extract these additional details? Let me know if you still need any clarification on this! |
Capture name, join date and roulette upload count via Result.taken(extra=...) when a profile is found, matching the user_scan deep-data-extraction guidance.
brunolm
force-pushed
the
feat/add-faproulette-module
branch
from
July 19, 2026 12:30
0c0451f to
4d9007e
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Adds faproulette.co to both scan modes — an email module and a username module.
Email module (
email_scan/adult/faproulette.py)Uses the site's own signup-form endpoint
POST /api/userCheckEmail(email + timeoutID; no CSRF/Turnstile needed for the check):{"success":1,...}{"success":0,"error":"Email address is already in use."}success:0/ non-200 / 429Username module (
user_scan/adult/faproulette.py)Checks the public profile page
GET /@{user}viageneric_validate:<link rel="canonical">echoing/@{user}Canonical extraction isolates the
<link rel="canonical">tag before pullinghref, so it is independent of HTML attribute order.Notes
userCheckEmailcleanly reveals email existence.email_scanomitsurl=on errors;user_scan/adultincludes it).Testing
brunolm7@gmail.com→ Registered andbrunolm→ Found; throwaway email/username → Not Registered / Not Found; case-insensitive username match confirmed.pytest tests/: all pass except 2 pre-existing Windowschmod(0)no-op tests, unrelated to this change.