www.kyivstar.net bypassing captcha

By vYa Last update Aug 28, 2006 — Installed 540 times.
// ==UserScript==
// @name          www.kyivstar.net bypassing captcha
// @namespace     http://userscripts.org/
// @description   Bypassing CAPTCHA for sending sms on kyivstar.net sites
// @include       http://kyivstar.net/_sms.html*
// @include       http://*.kyivstar.net/_sms.html*
// ==/UserScript==

function antiSpam() {
    var items = document.evaluate( "//input[@id='antispam']", 
    document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null ); 
    items.snapshotItem( 0 ).value = this.getCookie( "code" );
}
window.addEventListener( 'load', antiSpam, true );