Rework the timers.

bug/bundler_fix
Joe Vennix 2014-09-08 00:40:00 -05:00
parent 5c9c8edfcf
commit 8407d45c9c
No known key found for this signature in database
GPG Key ID: 127B05FB3E85A2B0
1 changed files with 3 additions and 3 deletions

View File

@ -127,12 +127,12 @@ class Metasploit3 < Msf::Auxiliary
}, 50);
var clear2 = setInterval(function(){
try {
if (w.location.toString()) return;
if (w.document) return;
if (w.location.href.toString()) return;
} catch(e) {}
clearInterval(clear2);
clear2 = setInterval(exploit, 300);
},100);
clear2 = setInterval(exploit, 50);
},20);
} else {
exploit();
}