Add Lobsters (lobste.rs) and Codepen username availability module - #452
Draft
SpiliosDimakopoulos wants to merge 2 commits into
Draft
Add Lobsters (lobste.rs) and Codepen username availability module#452SpiliosDimakopoulos wants to merge 2 commits into
SpiliosDimakopoulos wants to merge 2 commits into
Conversation
kaifcodec
reviewed
Jul 24, 2026
| show_url = url | ||
|
|
||
| def process(response): | ||
| if response.status_code == 404: |
Owner
There was a problem hiding this comment.
@SpiliosDimakopoulos Could you check if the response payload contains any other explicit strings like "user doesn't exist" or "profile not found"? We could use a targeted check like:
if response.status_code == 404 and "profile not found" in response.text:this removes the risk of any false negatives in future.
Owner
|
@SpiliosDimakopoulos Another issue I noticed is that the CodePen module is returning a 403 status code on my machine. This could be due to WAF restrictions that require custom headers, cookies, or updated request handling. Could you re-test this module on your end and verify if it requires updated headers? |
kaifcodec
marked this pull request as draft
July 28, 2026 05:16
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.
Adds a username availability check for Lobsters (lobste.rs), a tech/OSINT community site currently missing from user_scan/community/.
Tested locally against a known existing username and a random non-existent one; both paths resolve correctly.