Skip to content

Commit 883a0f8

Browse files
Update modules/exploits/linux/local/gameoverlay_privesc.rb
Co-authored-by: Brendan <[email protected]>
1 parent 51194ad commit 883a0f8

File tree

1 file changed

+23
-4
lines changed

1 file changed

+23
-4
lines changed

modules/exploits/linux/local/gameoverlay_privesc.rb

Lines changed: 23 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,29 @@ def initialize(info = {})
4040
['CVE', '2023-32629'],
4141
['CVE', '2023-2640']
4242
],
43-
'Targets' => [ [ 'Linux', {} ] ],
44-
'Arch' => [ ARCH_X86, ARCH_X64 ],
45-
'DefaultOptions' => {
46-
'PrependSetuid' => true,
43+
'Targets' => [
44+
[
45+
'Linux_Binary',
46+
{
47+
'Arch' => [ ARCH_X86, ARCH_X64 ],
48+
'PrependSetuid' => true
49+
}
50+
],
51+
[
52+
'Linux_Command',
53+
{
54+
'Arch' => ARCH_CMD,
55+
'Payload' =>
56+
{
57+
'BadChars' => "\x93\x94"
58+
}
59+
}
60+
]
61+
],
62+
'Notes' => {
63+
'Stability' => [CRASH_SAFE],
64+
'Reliability' => [REPEATABLE_SESSION],
65+
'SideEffects' => [ARTIFACTS_ON_DISK]
4766
}
4867
)
4968
)

0 commit comments

Comments
 (0)