<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/rss-style.xsl" type="text/xsl"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	    xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	     xmlns:dc="http://purl.org/dc/elements/1.1/"
	   xmlns:atom="http://www.w3.org/2005/Atom"
	     xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	  xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>
<channel>
	<title>three &#8211; Terence Eden’s Blog</title>
	<atom:link href="https://shkspr.mobi/blog/tag/three/feed/" rel="self" type="application/rss+xml" />
	<link>https://shkspr.mobi/blog</link>
	<description>Regular nonsense about tech and its effects 🙃</description>
	<lastBuildDate>Wed, 20 Aug 2025 07:26:15 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://shkspr.mobi/blog/wp-content/uploads/2023/07/cropped-avatar-32x32.jpeg</url>
	<title>three &#8211; Terence Eden’s Blog</title>
	<link>https://shkspr.mobi/blog</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title><![CDATA[Responsible Disclosure: SVG injection in Three.co.uk]]></title>
		<link>https://shkspr.mobi/blog/2019/11/responsible-disclosure-svg-injection-in-three-co-uk/</link>
					<comments>https://shkspr.mobi/blog/2019/11/responsible-disclosure-svg-injection-in-three-co-uk/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Sat, 23 Nov 2019 12:25:37 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[Bug Bounty]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[NaBloPoMo]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[three]]></category>
		<category><![CDATA[xss]]></category>
		<guid isPermaLink="false">https://shkspr.mobi/blog/?p=32644</guid>

					<description><![CDATA[Here&#039;s a quick write-up of a minor XSS (Cross Site Scripting) vulnerability on the website of Three.co.uk - one of the UK&#039;s mobile providers.  A brief recap... Most websites have a search function.  If you search for something which cannot be found, the site will often say &#34;No results found for XYZ.&#34;    If we can convince the search engine to spit out HTML, we can inject malicious content into…]]></description>
										<content:encoded><![CDATA[<p>Here's a quick write-up of a minor XSS (<a href="https://www.owasp.org/index.php/Cross-site_Scripting_(XSS)">Cross Site Scripting</a>) vulnerability on the website of Three.co.uk - one of the UK's mobile providers.</p>

<p>A brief recap... Most websites have a search function.  If you search for something which cannot be found, the site will often say "No results found for XYZ."</p>

<img src="https://shkspr.mobi/blog/wp-content/uploads/2019/11/Bug-Bounty.png" alt="The website says " no="" results="" found="" for:="" bug="" bounty.""="" width="624" height="429" class="aligncenter size-full wp-image-32654">

<p>If we can convince the search engine to spit out HTML, we can inject malicious content into the page.</p>

<p>This is usually done by searching for something like <code>&lt;script&gt;alert("h4X0r");&lt;/script&gt;</code><br>
Three's website detects <code>script</code> elements as hostile and refuses to serve them back.</p>

<img src="https://shkspr.mobi/blog/wp-content/uploads/2019/11/Access-Denied.png" alt="Access Denied message." width="569" height="198" class="aligncenter size-full wp-image-32655">

<p>But, curiously, it does allow <em>some</em> HTML elements through. The <code>&lt;u&gt;</code> underline element, for example.</p>

<img src="https://shkspr.mobi/blog/wp-content/uploads/2019/11/Underline.png" alt="Some text on the website has been underlined." width="1178" height="315" class="aligncenter size-full wp-image-32656">

<p>It wouldn't allow <code>&lt;img&gt;</code> or <code>&lt;video&gt;</code> or most other troublesome content. But I was surprised to see it let through SVG (Scalable Vector Graphics).  This means some minor naughtiness can be had!</p>

<p>Doing a search for</p>

<pre><code class="language-_">&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128" width="128px"&gt;&lt;circle cx="64" cy="64" fill="#006add" r="64"/&gt;
</code></pre>

<p>Results in a big blue circle being drawn on the page.
<img src="https://shkspr.mobi/blog/wp-content/uploads/2019/11/Three-XSS-fs8.png" alt="The website has a circle drawn on it." width="865" height="469" class="aligncenter size-full wp-image-32650">
...and that's when I stopped and tried to find someone to report it to!</p>

<h2 id="why-is-this-a-problem"><a href="https://shkspr.mobi/blog/2019/11/responsible-disclosure-svg-injection-in-three-co-uk/#why-is-this-a-problem">Why is this a problem?</a></h2>

<p>Drawing a circle is not malicious. But SVGs are complex. They can store intricate graphics.</p>

<p>Because the search parameter is sent in the URL - <code>http://www.three.co.uk/Search/?q=&lt;svg...</code> - it would be easy for a spammer to send a message saying "Click here for great deals on Three!!!" and then use the SVG to draw a graphic encouraging the hapless user to visit a malicious site.</p>

<p>Or they could create a form to phish users' details. Or... Well, use your imagination.</p>

<h2 id="reporting-it-to-three"><a href="https://shkspr.mobi/blog/2019/11/responsible-disclosure-svg-injection-in-three-co-uk/#reporting-it-to-three">Reporting it to Three</a></h2>

<p><em>*sigh*</em> Three don't publish any security contact details. Nor do they participate in any bug bounties that I could find.</p>

<p>I reached out to my friends in the mobile industry - because I didn't have much faith in reporting it via Twitter...</p>

<blockquote class="social-embed" id="social-embed-1085560856702844928" lang="en" itemscope="" itemtype="https://schema.org/SocialMediaPosting"><blockquote class="social-embed" id="social-embed-1085554510343430144" lang="en" itemscope="" itemtype="https://schema.org/SocialMediaPosting"><header class="social-embed-header" itemprop="author" itemscope="" itemtype="https://schema.org/Person"><a href="https://twitter.com/REALSgtBrdStk" class="social-embed-user" itemprop="url"><img class="social-embed-avatar social-embed-avatar-circle" src="data:image/webp;base64,UklGRuwBAABXRUJQVlA4IOABAAAQCwCdASowADAAPrVMn0snJCKhqrVdUOAWiWMApd+JyHCtVMtjtnXVNOvhqNhvh1SI3REggQ49DeLP5LuEPW5AnxjKRV/vJdNCXbZ2gXD95OuRjujU8QIhaJS7+b3jzS6QAP7KtOj7nldmsLS4JkyewH+5u6DOuO+LKIyFd/JYitkXgzD2mmZR12ZpkuZgN7uq9RBgZglyJguHbILKcjUeIwrHWEQvTVCdVkpVL7bNeivVXx0eIPdbxPsQhwmd00D84fd643IfcaPgiQmdaUoqHsOllU8QOzqYv2XsNm76ODQm/zdBWw7Mq552hfd+7QaWTRYNxglhK7a0Sps1JalE8nL9+H2WtZOz4hWm+MeO7m/iCvndKobhYkKWIPz5druh70BzoR5AbZ+PgPaHcoQFC/q4DFTHSzbmjKvxBHrrr2ArwZCdirahmJdUanDiuOmjaLqKk2cPQXf5sck0eRab59hJoTEMSutn9GZ0i6uecQvycn+8o8QyaJXW+50tpDfEthimiO6iJ9z1WhKIWSbAPuuLWWSiiTKJdu/S9mfNYV2pmTMSwWllpoqsnr6P0VBo10rDtYql76k51UGNEJnhAQ7AVPZV5Mqvr3cTNXanxtcnX3uD0rooX+zSU/egAAA=" alt="" itemprop="image"><div class="social-embed-user-names"><p class="social-embed-user-names-name" itemprop="name">Kieran</p>@REALSgtBrdStk</div></a><img class="social-embed-logo" alt="Twitter" src="data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%0Aaria-label%3D%22Twitter%22%20role%3D%22img%22%0AviewBox%3D%220%200%20512%20512%22%3E%3Cpath%0Ad%3D%22m0%200H512V512H0%22%0Afill%3D%22%23fff%22%2F%3E%3Cpath%20fill%3D%22%231d9bf0%22%20d%3D%22m458%20140q-23%2010-45%2012%2025-15%2034-43-24%2014-50%2019a79%2079%200%2000-135%2072q-101-7-163-83a80%2080%200%200024%20106q-17%200-36-10s-3%2062%2064%2079q-19%205-36%201s15%2053%2074%2055q-50%2040-117%2033a224%20224%200%2000346-200q23-16%2040-41%22%2F%3E%3C%2Fsvg%3E"></header><section class="social-embed-text" itemprop="articleBody"><small class="social-embed-reply"><a href="https://twitter.com/ThreeUKSupport">Replying to @ThreeUKSupport</a></small><a href="https://twitter.com/ThreeUKSupport">@ThreeUKSupport</a> your site "<a href="https://www.three.co.uk">three.co.uk</a>" is showing up as 'Not Secure' and there's no valid SSL Certificate for the site. So it will appear as this. <a href="https://twitter.com/REALSgtBrdStk/status/1085554510343430144/photo/1">pic.x.com/0trepindah</a><div class="social-embed-media-grid"><a href="https://pbs.twimg.com/media/DxCqEZiWkAAp9ds.jpg" class="social-embed-media-link"><img class="social-embed-media" alt="" src="data:image/webp;base64,UklGRpQDAABXRUJQVlA4IIgDAADwFQCdASrQACcAPrVUo0snJSOhqrdqwOAWiWUA0713vAorBuAOgdShvg+9pOEy2/1Wmjxif5nwBo+PPuzhvRnsEfzL+tdYD9mfYl/Zw3IAsUAlsmP7L+CdDbxWZTSrUbjhV78I9kCu6FKLp+hC/Yppd3bNOkAG9z6tepL9hmEAjPZVd62mitKv+9hd/rvt5I52JwUAvfIqhXbp6FY1jqdHnpMc2vHlf59xGbie937mHJzB0VnuTMsgAP78ESIVbQdcz79aROfPwAIJnsd5oW4xWpGXzNXhuoRZAITvjyPQkpDa8K2KjVs6lwMNYGAiZ1ye/aUSODgBgQYfY23xqZ17FdohxgxWgJ6D8+SeAC03xJPXUUwDhDg8QvuMis2Qh8FlS8MSaxO06A52ySvpeKFryJ8jgA73PQKY/Qtd4VZQoj6lL495MewkFDtd4QV894T9QXVZlfsxB5nye09PsY/qJNcFWZ/FaE9IBGj0Wpg4xh+0LgeyHvcoFar2BbHb/bNFaqFKEZOd5B7RqxLV4wzKtNr2Jx+6vG4A66p5tayj659A0QpRXoKO3DB9cKT7COytXyU5+w507BXMv04kZmrersa2vmsVo7swsqqv2fyEUKjppSE+XwbIW0r/BDHW7vl/na9vYAi2zfQw2R2MdvGBlOXis6HSgirT1t3PeqouQNCPndcSkpf9TjkBPEPDRT00pmC2BX40/DjpK7hF8T5f2qwga+y7qUUbAEr+CGBtTcz+M6TDS4vnnRdzVB+T3U9MaOQey7W5qTpOfU+RBgtpSq6D8PcDkhZJxX+Ca79G9ZM+KGzawZcC1VesyDEmiDKRcaVaMRgbZYzOCRHQunUw7N/WdLIugtiKGZ1iarRKrLdaxzJDWA/PYZ3GA2QB014CrbviZfRpu7bN+IoVa5vZ/wQTy2r46kR48On1gw/zSMDWy09V39i38hzkMyfSF3R0FI6UvpmlFeE+e6Nx/hy3S7/2Rp996GJZ24p752vJaeMxGmaXk/qhYpn7SryCQ8s/XFljj7Y6pu5+fLPmRMdSpylRu58t4U9BxcBH1zwQ/DkQliC6httsHrBc/QwB/EbSvA2uRCACFSDkduBInUuzkxsAbuqZgOfgbSdj0aYPzZksgxbfEt64/7GQZwFKnEGUbGfvwVpXhSnRf+Y8psLt+SpjCIYYWf4GL2lM7n7SRNdwAAAAAAAA"></a></div></section><hr class="social-embed-hr"><footer class="social-embed-footer"><a href="https://twitter.com/REALSgtBrdStk/status/1085554510343430144"><span aria-label="1 likes" class="social-embed-meta">❤️ 1</span><span aria-label="0 replies" class="social-embed-meta">💬 0</span><span aria-label="0 reposts" class="social-embed-meta">🔁 0</span><time datetime="2019-01-16T15:08:58.000Z" itemprop="datePublished">15:08 - Wed 16 January 2019</time></a></footer></blockquote><header class="social-embed-header" itemprop="author" itemscope="" itemtype="https://schema.org/Person"><a href="https://twitter.com/ThreeUKSupport" class="social-embed-user" itemprop="url"><img class="social-embed-avatar social-embed-avatar-circle" src="data:image/webp;base64,UklGRrwBAABXRUJQVlA4ILABAACwBwCdASowADAAPrVYpU8nJKMzo4gCcBaJQBB06v1cDLA0gUzDxx26g7DcbFV9fgwC2kjW36YORYWNy4dMdl2LlssLHuEAAP7tvp7EN/qXdRl/9r1HS9RwckT/9arI0DFP//56Z/rb7LeNQSZ1hUH1nA9jFMBRK/PIM39Gm+50ffpcXBlSW/AE5vx26S4iMI/h6rWw4eKEYjmW+oFa8FX2rUXaQM98VIwAUDn6ZgWybitUInYMmnTr128gD0Sx7nz5eojf0kulj4CUaEuzud4TmfoVYER1Ct4eM+N6ugXCA+YRNQ6K3/dbcn3AqvKGzO+0nz26kPwgSZUqyIMJXQ8yd//mkTYLZtcMswCiP1TOvMLPQHgiTpDH9JAhYLM0CNzTnwdYAUYPtrCcve1kT/Hu9OkJ2/rM5O1kbAmzGGRaoGrz4ND/XUiNqp37mATkO/6XeJkbRL2sdYSg7ycXqjdxrL8XHW+SBBPGf0J3DKXf4/gyFlT36Dm88Yv8yX/g1LAv+eaVZqJnTj7m9Dx4WfhCBhmw4S7klaXQfHSSuHOWmzEpXLODEOoQVzkEd2IAAAA=" alt="" itemprop="image"><div class="social-embed-user-names"><p class="social-embed-user-names-name" itemprop="name">ThreeUKSupport</p>@ThreeUKSupport</div></a><img class="social-embed-logo" alt="Twitter" src="data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%0Aaria-label%3D%22Twitter%22%20role%3D%22img%22%0AviewBox%3D%220%200%20512%20512%22%3E%3Cpath%0Ad%3D%22m0%200H512V512H0%22%0Afill%3D%22%23fff%22%2F%3E%3Cpath%20fill%3D%22%231d9bf0%22%20d%3D%22m458%20140q-23%2010-45%2012%2025-15%2034-43-24%2014-50%2019a79%2079%200%2000-135%2072q-101-7-163-83a80%2080%200%200024%20106q-17%200-36-10s-3%2062%2064%2079q-19%205-36%201s15%2053%2074%2055q-50%2040-117%2033a224%20224%200%2000346-200q23-16%2040-41%22%2F%3E%3C%2Fsvg%3E"></header><section class="social-embed-text" itemprop="articleBody"><small class="social-embed-reply"><a href="https://twitter.com/REALSgtBrdStk/status/1085554510343430144">Replying to @REALSgtBrdStk</a></small><a href="https://twitter.com/REALSgtBrdStk">@REALSgtBrdStk</a> don't worry, if you go to any pages where you need to enter any personal details or sensitive info the webpage will be https secure ☺🔐 &gt;KH</section><hr class="social-embed-hr"><footer class="social-embed-footer"><a href="https://twitter.com/ThreeUKSupport/status/1085560856702844928"><span aria-label="0 likes" class="social-embed-meta">❤️ 0</span><span aria-label="0 replies" class="social-embed-meta">💬 0</span><span aria-label="0 reposts" class="social-embed-meta">🔁 0</span><time datetime="2019-01-16T15:34:11.000Z" itemprop="datePublished">15:34 - Wed 16 January 2019</time></a></footer></blockquote>

<p>Eventually a friend of a friend sent me a security email address which Three do not publicise. I fired off a quick disclosure and was pleasantly surprised at how seriously they took the issue.</p>

<h2 id="timeline"><a href="https://shkspr.mobi/blog/2019/11/responsible-disclosure-svg-injection-in-three-co-uk/#timeline">Timeline</a></h2>

<ul>
<li>2019-08-22 - Discovered and disclosed. Got a reply in under an hour that it was being looked at and that a 90 day disclosure was fine.</li>
<li>2019-09-20 - Three informed me the issue was fixed, which I verified. They offered to send me a token of their appreciation in lieu of a formal bug bounty.</li>
<li>2019-09-22 - Bug Bounty delivered! <img src="https://shkspr.mobi/blog/wp-content/uploads/2019/11/chocolates.jpeg" alt="A lovely box of chocolates." width="678" height="680" class="aligncenter size-full wp-image-32760">
Big ol' box of chocolates!</li>
</ul>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=32644&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2019/11/responsible-disclosure-svg-injection-in-three-co-uk/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[The Usability of Unboxing]]></title>
		<link>https://shkspr.mobi/blog/2019/08/the-usability-of-unboxing/</link>
					<comments>https://shkspr.mobi/blog/2019/08/the-usability-of-unboxing/#respond</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Tue, 20 Aug 2019 11:14:13 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[femtocell]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[three]]></category>
		<category><![CDATA[usability]]></category>
		<guid isPermaLink="false">https://shkspr.mobi/blog/?p=32600</guid>

					<description><![CDATA[I review a lot of tech kit. It is amazing just how bad the consumer experience is when you have a brand-new box in your hands. It can be as simple as difficult to open packaging, to the existential horror of a poorly translated manual.  The first time a customer holds your product in their hands should be a moment of joy. Something to reinforce the notion that they have been wise with their…]]></description>
										<content:encoded><![CDATA[<p>I review a lot of tech kit. It is <em>amazing</em> just how bad the consumer experience is when you have a brand-new box in your hands. It can be as simple as difficult to open packaging, to the existential horror of a poorly translated manual.</p>

<p>The first time a customer holds your product in their hands should be a moment of joy. Something to reinforce the notion that they have been wise with their investment.</p>

<p>I'm going to walk through an example of a poor unboxing usability, in the hope that it will show you what <em>not</em> to do.</p>

<p>This is the <a href="https://web.archive.org/web/20190715200126/http://www.three.co.uk/Support/Devices/Phones/Home/Signal_Black">Three Home Signal Box</a> - it is a femtocell to improve reception at home.</p>

<p>It arrived in a fairly anonymous postal sack, and has an easy to open box.
<img src="https://shkspr.mobi/blog/wp-content/uploads/2019/08/Home-Signal-Box.jpg" alt="Home Signal Box." width="1177" height="677" class="aligncenter size-full wp-image-32601"></p>

<p>Knowing that the audience aren't likely to be technical, it comes with some reassuring messages on it. Good!
<img src="https://shkspr.mobi/blog/wp-content/uploads/2019/08/Easy-to-use-and-ready-to-install.jpg" alt="Easy to use and ready to install." width="924" height="567" class="aligncenter size-full wp-image-32602"></p>

<p>This is, of course, a lie.</p>

<p>The instruction card is a little boring, but does the job.
<img src="https://shkspr.mobi/blog/wp-content/uploads/2019/08/Instruction-card.jpg" alt="Instruction card." width="822" height="463" class="aligncenter size-full wp-image-32603"></p>

<p>Just plug in the cables! Easy. There's even a picture guide.
<img src="https://shkspr.mobi/blog/wp-content/uploads/2019/08/Getting-Started-guide.jpg" alt="Getting Started guide." width="1116" height="802" class="aligncenter size-full wp-image-32605">
So, I followed the instructions, plugged in the cables, but nothing worked.
<img src="https://shkspr.mobi/blog/wp-content/uploads/2019/08/Warning-sticker.jpg" alt="&quot;This Home Signal box can only be used at your registered address." width="665" height="633" class="aligncenter size-full wp-image-32606"></p>

<p>I checked the packaging. There was a warning sticker on there - obviously added after the box was printed. Revisions to packaging in response to customer feedback is sometimes necessary. A slightly ugly hack, but better than nothing.</p>

<p>I checked the flashing lights on the unit. Then re-read the instructions. The <em>very last</em> troubleshooting tip is check that the SIM card is inserted.</p>

<p>What SIM card? This was all that was in the box.</p>

<img src="https://shkspr.mobi/blog/wp-content/uploads/2019/08/Cables-in-the-box.jpg" alt="Cables in the box. An ethernet and power plug." width="1280" height="960" class="aligncenter size-full wp-image-32607">

<p>I retrieving the postal sack from the bin.  This is what I found inside:</p>

<img src="https://shkspr.mobi/blog/wp-content/uploads/2019/08/SIM-Cards.jpg" alt="A pair of SIM cards." width="1170" height="656" class="aligncenter size-full wp-image-32608">

<p>I've no idea why there's a spare PAYG SIM there - or how many people get confused and put the wrong SIM in. But I do know that this is a <em>crappy</em> way to bundle necessary equipment.</p>

<p>Ideally, this is what Three should do:</p>

<ol>
<li>Pre-install the SIM.</li>
<li>If they can't, put the SIM in the same box as the device.</li>
<li>Make sure the instructions tell people to plug in the SIM before they attach the cables.</li>
<li>Stick some instructions on the back of the box, perhaps.
<img src="https://shkspr.mobi/blog/wp-content/uploads/2019/08/Cable-ports.jpg" alt="Some anonymous ports on the back of a black plastic device." width="1280" height="820" class="aligncenter size-full wp-image-32609"></li>
</ol>

<p>To be fair, once I'd found the SIM, it did tell me what to do with it.
<img src="https://shkspr.mobi/blog/wp-content/uploads/2019/08/Smart-Card-back.jpg" alt="Instructions telling people to use this card." width="1084" height="903" class="aligncenter size-full wp-image-32610">
Well, I say that. It didn't tell me that I had snap the SIM from the holder.  But the instructions on the card's packaging say "For more instructions, see the getting started guide." The same guide that doesn't mention you need to install the SIM!</p>

<p>There is, of course, <a href="https://web.archive.org/web/20191210120338/http://support.three.co.uk/SRVS/CGI-BIN/WEBISAPI.dll/,/?New,Kb=Mobile,Ts=Mobile,T=Device,varset_pid=7648,varset_cid=7649,Case=EXT(EM99445)">nothing on the Three website</a> relating to this problem.</p>

<p>Usability testing isn't finished until the user has the product in their hands and have successfully set it up.  I've no idea how may dejected customer service agents are giving an exasperated sigh of "and have you put the little green card in the box?"</p>

<p>Make it easy. Make it right.</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=32600&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2019/08/the-usability-of-unboxing/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
