Skip to content

Commit 58fbb0b

Browse files
committed
Use [] for References
1 parent cc3285f commit 58fbb0b

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

modules/exploits/unix/webapp/php_wordpress_foxypress.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ def initialize(info = {})
2929
'License' => MSF_LICENSE,
3030
'References' =>
3131
[
32-
%w(EDB 18991),
33-
%w(OSVDB 82652),
34-
%w(BID 53805)
32+
['EDB', '18991'],
33+
['OSVDB' '82652'],
34+
['BID', '53805']
3535
],
3636
'Privileged' => false,
3737
'Platform' => 'php',

modules/exploits/unix/webapp/wp_property_upload_exec.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def initialize(info = {})
1616
info,
1717
'Name' => 'WordPress WP-Property PHP File Upload Vulnerability',
1818
'Description' => %q(
19-
This module exploits a vulnerability found in WP-Property <= 1.35.0 WordPress
19+
This module exploits a vulnerability found in WP-Property <= 1.35.0 WordPress
2020
plugin. By abusing the uploadify.php file, a malicious user can upload a file to a
2121
temp directory without authentication, which results in arbitrary code execution.
2222
),
@@ -28,9 +28,9 @@ def initialize(info = {})
2828
'License' => MSF_LICENSE,
2929
'References' =>
3030
[
31-
%w(OSVDB 82656),
32-
%w(BID 53787),
33-
%w(EDB 18987),
31+
['OSVDB', '82656'],
32+
['BID', '53787'],
33+
['EDB', '18987'],
3434
['URL', 'http://www.opensyscom.fr/Actualites/wordpress-plugins-wp-property-shell-upload-vulnerability.html']
3535
],
3636
'Platform' => 'php',

0 commit comments

Comments
 (0)