Skip to content

Instantly share code, notes, and snippets.

@epshteinmatthew
Created June 2, 2022 22:47
Show Gist options
  • Select an option

  • Save epshteinmatthew/50e1d2f2ae72b5e387675316165d2edf to your computer and use it in GitHub Desktop.

Select an option

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
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