Skip to content

Commit 00c88ca

Browse files
committed
Updates incorrect arch values in modules
1 parent a9a8ac7 commit 00c88ca

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

modules/exploits/linux/http/suitecrm_log_file_rce.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def initialize(info = {})
3737
['URL', 'http://web.archive.org/web/20211209044023/https://theyhack.me/SuiteCRM-RCE-2/'] # This exploit
3838
],
3939
'Platform' => %w[linux unix],
40-
'Arch' => %w[ARCH_X64 ARCH_CMD ARCH_X86],
40+
'Arch' => [ARCH_X64, ARCH_CMD, ARCH_X86],
4141
'Targets' => [
4242
[
4343
'Linux (x64)', {

modules/exploits/multi/http/spip_bigup_unauth_rce.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def initialize(info = {})
4141
['URL', 'https://blog.spip.net/Mise-a-jour-critique-de-securite-sortie-de-SPIP-4-3-2-SPIP-4-2-16-SPIP-4-1-18.html']
4242
],
4343
'Platform' => %w[php unix linux win],
44-
'Arch' => %w[ARCH_PHP ARCH_CMD],
44+
'Arch' => [ARCH_PHP, ARCH_CMD],
4545
'Targets' => [
4646
[
4747
'PHP In-Memory', {

modules/exploits/unix/webapp/byob_unauth_rce.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def initialize(info = {})
3535
['URL', 'https://blog.chebuya.com/posts/unauthenticated-remote-command-execution-on-byob/']
3636
],
3737
'Platform' => %w[unix linux],
38-
'Arch' => %w[ARCH_CMD],
38+
'Arch' => [ARCH_CMD],
3939
'Targets' => [
4040
[
4141
'Unix/Linux Command Shell', {

modules/exploits/unix/webapp/vicidial_agent_authenticated_rce.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def initialize(info = {})
3232
],
3333
'DisclosureDate' => '2024-09-10',
3434
'Platform' => %w[unix linux],
35-
'Arch' => %w[ARCH_CMD],
35+
'Arch' => [ARCH_CMD],
3636
'Targets' => [
3737
[
3838
'Unix/Linux Command Shell', {

0 commit comments

Comments
 (0)