<?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>udacity &#8211; Terence Eden’s Blog</title>
	<atom:link href="https://shkspr.mobi/blog/tag/udacity/feed/" rel="self" type="application/rss+xml" />
	<link>https://shkspr.mobi/blog</link>
	<description>Regular nonsense about tech and its effects 🙃</description>
	<lastBuildDate>Sun, 13 Apr 2025 08:22:43 +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>udacity &#8211; Terence Eden’s Blog</title>
	<link>https://shkspr.mobi/blog</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title><![CDATA[Udacity Bug Bounty - or, please stop tracking every link in your emails]]></title>
		<link>https://shkspr.mobi/blog/2018/04/udacity-bug-bounty-or-stop-tracking-every-link-in-your-emails/</link>
					<comments>https://shkspr.mobi/blog/2018/04/udacity-bug-bounty-or-stop-tracking-every-link-in-your-emails/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Fri, 13 Apr 2018 10:50:15 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[Bug Bounty]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[udacity]]></category>
		<guid isPermaLink="false">https://shkspr.mobi/blog/?p=29175</guid>

					<description><![CDATA[Look, I know your company wants metrics. I know your boss wants to see the exact percentages of people who click on links in your emails. Your sales team are desperate to track conversions. Someone wants to optimise your funnel for reasons which are unclear to you, a lowly engineer.  So you make the mistake of adding tracking to every email you send out.  Including sensitive ones.  I recently…]]></description>
										<content:encoded><![CDATA[<p>Look, I know your company wants metrics. I know your boss wants to see the exact percentages of people who click on links in your emails. Your sales team are desperate to track conversions. Someone wants to optimise your funnel for reasons which are unclear to you, a lowly engineer.</p>

<p>So you make the mistake of adding tracking to <em>every</em> email you send out.  Including sensitive ones.</p>

<p>I recently signed up to <a href="https://udacity.com/">online learning platform Udacity</a>.  As part of registration, they want me to confirm my email address.  Pretty normal behaviour.
<img src="https://shkspr.mobi/blog/wp-content/uploads/2018/03/Udacity-Verify-email-fs8.png" alt="An email from Udacity asking me to verify my email address. Theer's a big button to press, or a smaller URL to click." width="540" height="670" class="aligncenter size-full wp-image-29177"></p>

<p>Because I'm a paranoid fellow, I wanted to see where the big VERIFY EMAIL link went.</p>

<img src="https://shkspr.mobi/blog/wp-content/uploads/2018/03/Link-going-to-an-insecure-location-1-fs8.png" alt="Clicking on the button shows an insecure web address." width="540" height="406" class="aligncenter size-full wp-image-29178">

<p>Ah! An insecure <code>http</code> link to their email tracking platform.</p>

<p>Never mind, thought I, there's a plain link underneath that one.  Hmmm.... I wonder where that goes.</p>

<img src="https://shkspr.mobi/blog/wp-content/uploads/2018/03/Link-going-to-an-insecure-location-2-fs8.png" alt="The plain URL is also insecure." width="540" height="392" class="aligncenter size-full wp-image-29179">

<p>Oh, right. That's also insecurely tracked.  To be clear, the <em>text</em> of the URl is <code>https</code> but the <em>link</em> it points to is <code>http</code>.</p>

<h2 id="whats-the-problem"><a href="https://shkspr.mobi/blog/2018/04/udacity-bug-bounty-or-stop-tracking-every-link-in-your-emails/#whats-the-problem">What's the problem?</a></h2>

<p>Links to <code>http</code> sites are not secure.  That means your visit to that URl can be seen by your ISP and anyone else between you and your destination.  Your ISP can change the contents of that page and a malicious entity could - potentially - hijack your credentials.</p>

<p>In this case, all the links go via <a href="https://sendgrid.com/">SendGrid</a>.  You have no protection if they get hacked, or decide to harvest your credentials.</p>

<h2 id="how-to-solve-it"><a href="https://shkspr.mobi/blog/2018/04/udacity-bug-bounty-or-stop-tracking-every-link-in-your-emails/#how-to-solve-it">How to solve it?</a></h2>

<p><strong>STOP TRACKING EVERY LINK IN YOUR EMAILS!</strong></p>

<p>Or, if you <em>really</em> have to - make sure your tracking server supports <code>https</code>.</p>

<h2 id="disclosure-timeline"><a href="https://shkspr.mobi/blog/2018/04/udacity-bug-bounty-or-stop-tracking-every-link-in-your-emails/#disclosure-timeline">Disclosure timeline</a></h2>

<p>There's no dedicated security contact for Udacity.  I went through their <a href="https://udacity.com/contact">regular contact page</a></p>

<ul>
<li>2018-03-11 Asked to make responsible disclosure</li>
<li>2018-03-12 Udacity asked for more information.  I sent details &amp; screenshots.</li>
<li>2018-03-13 Report accepted and bug bounty issued.</li>
<li>2018-04-13 Publication.</li>
</ul>

<h2 id="reward"><a href="https://shkspr.mobi/blog/2018/04/udacity-bug-bounty-or-stop-tracking-every-link-in-your-emails/#reward">Reward</a></h2>

<p>Obviously, for a vulnerability of this magnitude, I was expecting a bug bounty of several million dollars. Nevertheless, I'm rather pleased with my free Udacity T-Shirt, sticker, pen, and notebook 😊</p>

<img src="https://shkspr.mobi/blog/wp-content/uploads/2018/04/Udacity-T-Shirt-notebook-pen-and-sticker.jpg" alt="Photo of a Udacity T-Shirt, notebook, pen, and sticker" width="800" height="600" class="aligncenter size-full wp-image-29197">
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=29175&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2018/04/udacity-bug-bounty-or-stop-tracking-every-link-in-your-emails/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
	</channel>
</rss>
