Skip to content

Instantly share code, notes, and snippets.

@f4th4n
Created August 22, 2016 11:26
Show Gist options
  • Save f4th4n/7513bb36eb1fce46edb63939bd5ee920 to your computer and use it in GitHub Desktop.
Save f4th4n/7513bb36eb1fce46edb63939bd5ee920 to your computer and use it in GitHub Desktop.
Captcha Filler on Seoreviewtools.com
// auto fill captcha
// open http://www.seoreviewtools.com/bulk-seomoz-authority-checker/
// open console
// paste this code
var questionText = $('.captcha').text()
var questionNumber = questionText.substring(0, questionText.indexOf('='));
questionNumber = questionNumber.substring(8)
var answer = eval(questionNumber)
$('#captcha').val(answer)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment