Created
August 22, 2016 11:26
-
-
Save f4th4n/7513bb36eb1fce46edb63939bd5ee920 to your computer and use it in GitHub Desktop.
Captcha Filler on Seoreviewtools.com
This file contains 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
// 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