Skip to content

Commit 005d349

Browse files
author
Brent Cook
committed
update architecture
1 parent e52d67c commit 005d349

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

modules/exploits/linux/http/empire_skywalker.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def initialize(info = {})
4242
[
4343
[ 'Python', { 'Arch' => ARCH_PYTHON, 'Platform' => 'python' } ],
4444
[ 'Linux x86', { 'Arch' => ARCH_X86, 'Platform' => 'linux' } ],
45-
[ 'Linux x64', { 'Arch' => ARCH_X86_64, 'Platform' => 'linux' } ]
45+
[ 'Linux x64', { 'Arch' => ARCH_X64, 'Platform' => 'linux' } ]
4646
],
4747
'DefaultOptions' => { 'WfsDelay' => 75 },
4848
'DefaultTarget' => 0,
@@ -222,7 +222,7 @@ def exploit
222222
cron_command = "python #{payload_path}"
223223
payload_data = payload.raw
224224

225-
when ARCH_X86, ARCH_X86_64
225+
when ARCH_X86, ARCH_X64
226226
cron_command = "chmod +x #{payload_path} && #{payload_path}"
227227
payload_data = payload.encoded_exe
228228

modules/exploits/linux/local/bpf_priv_esc.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def initialize(info={})
2727
'h00die <[email protected]>' # metasploit module
2828
],
2929
'Platform' => [ 'linux' ],
30-
'Arch' => [ ARCH_X86, ARCH_X86_64 ],
30+
'Arch' => [ ARCH_X86, ARCH_X64 ],
3131
'SessionTypes' => [ 'shell', 'meterpreter' ],
3232
'References' =>
3333
[
@@ -39,7 +39,7 @@ def initialize(info={})
3939
'Targets' =>
4040
[
4141
[ 'Linux x86', { 'Arch' => ARCH_X86 } ],
42-
[ 'Linux x64', { 'Arch' => ARCH_X86_64 } ]
42+
[ 'Linux x64', { 'Arch' => ARCH_X64 } ]
4343
],
4444
'DefaultOptions' =>
4545
{

modules/exploits/linux/local/overlayfs_priv_esc.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def initialize(info = {})
3737
],
3838
'DisclosureDate' => 'Jun 16 2015',
3939
'Platform' => [ 'linux'],
40-
'Arch' => [ ARCH_X86, ARCH_X86_64 ],
40+
'Arch' => [ ARCH_X86, ARCH_X64 ],
4141
'SessionTypes' => [ 'shell', 'meterpreter' ],
4242
'Targets' =>
4343
[

modules/exploits/linux/misc/opennms_java_serialize.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def initialize(info = {})
3131
'Targets' =>
3232
[
3333
[ 'OpenNMS / Linux x86', { 'Arch' => ARCH_X86, 'Platform' => 'linux' } ],
34-
[ 'OpenNMS / Linux x86_64', { 'Arch' => ARCH_X86_64, 'Platform' => 'linux' } ]
34+
[ 'OpenNMS / Linux x86_64', { 'Arch' => ARCH_X64, 'Platform' => 'linux' } ]
3535
],
3636
'DefaultTarget' => 0,
3737
'DisclosureDate' => 'Nov 19 2014'

modules/exploits/multi/http/bassmaster_js_injection.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def initialize(info = {})
3030
],
3131
'License' => MSF_LICENSE,
3232
'Platform' => ['linux', 'bsd'], # binary > native JavaScript
33-
'Arch' => [ARCH_X86, ARCH_X86_64],
33+
'Arch' => [ARCH_X86, ARCH_X64],
3434
'Privileged' => false,
3535
'Targets' =>
3636
[

modules/exploits/windows/fileformat/office_ole_multiple_dll_hijack.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def initialize(info = {})
5757
},
5858
'Payload' => { 'Space' => 2048, },
5959
'Platform' => 'win',
60-
'Arch' => [ ARCH_X86, ARCH_X86_64 ],
60+
'Arch' => [ ARCH_X86, ARCH_X64 ],
6161
'Targets' =>
6262
[
6363
[ 'All', {} ],

modules/exploits/windows/local/panda_psevents.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def initialize(info={})
3535
'SessionTypes' => [ 'meterpreter' ],
3636
'Targets' => [
3737
[ 'Windows x86', { 'Arch' => ARCH_X86 } ],
38-
[ 'Windows x64', { 'Arch' => ARCH_X86_64 } ]
38+
[ 'Windows x64', { 'Arch' => ARCH_X64 } ]
3939
],
4040
'DefaultTarget' => 0,
4141
'DefaultOptions' => {

modules/exploits/windows/misc/hta_server.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def initialize(info = {})
2828
'Targets' =>
2929
[
3030
[ 'Powershell x86', { 'Platform' => 'win', 'Arch' => ARCH_X86 } ],
31-
[ 'Powershell x64', { 'Platform' => 'win', 'Arch' => ARCH_X86_64 } ]
31+
[ 'Powershell x64', { 'Platform' => 'win', 'Arch' => ARCH_X64 } ]
3232
],
3333
'DefaultTarget' => 0,
3434
'DisclosureDate' => 'Oct 06 2016'

0 commit comments

Comments
 (0)