-
-
Notifications
You must be signed in to change notification settings - Fork 8.6k
Fix Issue #2782 - GeeksForGeeks False Positives #2784
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix Issue #2782 - GeeksForGeeks False Positives #2784
Conversation
Automatic validation of changes
Failures were detected on at least one updated target. Commits containing accuracy failures will often not be merged (unless a rationale is provided, such as false negatives due to regional differences). |
Automatic validation of changes
Failures were detected on at least one updated target. Commits containing accuracy failures will often not be merged (unless a rationale is provided, such as false negatives due to regional differences). |
Automatic validation of changes
Failures were detected on at least one updated target. Commits containing accuracy failures will often not be merged (unless a rationale is provided, such as false negatives due to regional differences). |
Automatic validation of changes
Failures were detected on at least one updated target. Commits containing accuracy failures will often not be merged (unless a rationale is provided, such as false negatives due to regional differences). |
Automatic validation of changes
Failures were detected on at least one updated target. Commits containing accuracy failures will often not be merged (unless a rationale is provided, such as false negatives due to regional differences). |
This PR corrects the false positive issue for the GeeksForGeeks site as stated in: #2782. This was due to the fact that there is no longer a reliable way to check valid vs. invalid usernames for the GeeksForGeeks site, which used to leveraged the
status_codemethodology when it was working.Known Valid Username Behavior -->
adam:curl -Ls -o /dev/null -w '%{http_code} %{url_effective}\n' \ 'https://auth.geeksforgeeks.org/user/adam'-->200 https://www.geeksforgeeks.org/profile/adamKnown Invalid Username Behavior -->
thisisatotallyfakeusername123456:curl -Ls -o /dev/null -w '%{http_code} %{url_effective}\n' \ 'https://auth.geeksforgeeks.org/user/thisisatotallyfakeusername123456'-->200 https://www.geeksforgeeks.org/profile/thisisatotallyfakeusername123456Closes #2782.