Created
June 2, 2022 22:47
-
-
Save epshteinmatthew/50e1d2f2ae72b5e387675316165d2edf to your computer and use it in GitHub Desktop.
Captcha that uses navigator cpu info to detect prescence of a real system vs pupeteer instance or something like that. May be updated later
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
| function captcha() { | |
| let thing = navigator.oscpu | |
| if (thing == undefined){ | |
| captchafail(); | |
| } | |
| } | |
| captcha() | |
| function captchafail(){ | |
| //redirect or send to actual captcha | |
| alert("in the video game") | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment