Skip to content

Instantly share code, notes, and snippets.

@github-shakti
Created August 24, 2015 22:15
Show Gist options
  • Save github-shakti/2b078af3e68922fdbee9 to your computer and use it in GitHub Desktop.
Save github-shakti/2b078af3e68922fdbee9 to your computer and use it in GitHub Desktop.
Code : Captcha Bypass Script (Grease Monkey Version)
// ==UserScript==
// @name PNR Captcha Bypass
// @namespace http://www.indianrail.gov.in/pnr_Enq.html
// @description Autofill Captcha on Indian Railways Website for PNR Enquiry
// @include http://www.indianrail.gov.in/pnr_Enq.html
// @version 1
// @grant none
// ==/UserScript==
window.addEventListener('load', function() {
document.getElementById("txtInput").value=document.getElementById("txtCaptcha").value;
}, false);
var e = document.getElementById("btnrefresh");
e.addEventListener("click", modifyText, false);
function modifyText() {
document.getElementById("txtInput").value=document.getElementById("txtCaptcha").value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment