<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Yet another Glastonbury ticket fiasco</title>
	<atom:link href="http://bitplane.net/2012/10/glastonbury-registration-2013/feed/" rel="self" type="application/rss+xml" />
	<link>http://bitplane.net/2012/10/glastonbury-registration-2013/</link>
	<description>Rants, ramblings, free software</description>
	<lastBuildDate>Thu, 11 Apr 2013 00:02:38 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Gaz Davidson</title>
		<link>http://bitplane.net/2012/10/glastonbury-registration-2013/comment-page-1/#comment-514</link>
		<dc:creator>Gaz Davidson</dc:creator>
		<pubDate>Thu, 11 Apr 2013 00:02:38 +0000</pubDate>
		<guid isPermaLink="false">http://bitplane.net/?p=865#comment-514</guid>
		<description><![CDATA[Hi Eddie

1. Your DNS cache is part of your PC&#039;s networking software. Your web browser will ask the TCP networking library (WinSock in Windows, Berkeley Sockets if you use Linux or a Mac) to &quot;Open up a (TCP socket) connection to glastonbury.seetickets.com which will be listening on port 80&quot;, and as far as it knows it&#039;s got a connection to the website that it can read stuff from and write stuff to. Behind the scenes what will actually happen is WinSock will look in the DNS cache for glastonbury.seetickets.com and if it isn&#039;t listed, or the listing is out of date, it will send a packet of information (a special IP packet on UDP port 53) to one of your internet service provider&#039;s DNS servers (well, usually your router&#039;s DNS server, which will ask your ISP&#039;s DNS servers). This request will go from parent to child, from .com to ask for seetickets, to seetickets to ask for glastonbury, and eventually a DNS response packet will be relayed back to your machine. This response contains the location of the server on the network (its IP address) and the amount of time the address is valid for (the TTL; time to live), and this is saved to your DNS cache so you don&#039;t have to ask for it again next time.

Internet Protocol (IP) is basic delivery service that routes individual parcels of data (packets) between computers. It doesn&#039;t have any concept of which packet is supposed to come first or which program wanted it, packets aren&#039;t even guaranteed to arrive because they could get lost. This is where Transmission Control Protocol (TCP) comes in. TCP sockets are like a two-way conversation that&#039;s built on top of this delivery network, inside the packets we have information like &quot;this is the 5th packet of information&quot;, &quot;this is a delivery receipt for everything up to packet 58&quot;, &quot;hello? are you still there?&quot;, but to a program like a web browser it looks like a solid pipe that can send and receive information.

So to download a web page your browser has to open a TCP socket. This starts off with a &quot;handshake&quot; where the connector says &quot;let&#039;s talk&quot; (SYN), the listener replies with &quot;hey, I&#039;m listening, did you really ask me to talk?&quot; (ACK) and the connector says &quot;yep that was me&quot; (SYN-ACK).

Okay, that&#039;s enough background so you&#039;ll understand my answer to your second question...

2. They told seetickets.com&#039;s DNS servers to return the correct IP address for glastonbury.seetickets.com randomly, to lucky winners, so most people were given the wrong directions. The address they&#039;re given is a special address which isn&#039;t on the public Internet, it&#039;s on your own home network so your SYN &quot;let&#039;s talk&quot; packets don&#039;t even get a chance to clog up their pipes! So WinSock is sat around waiting for an ACKnowledgement and your browser is sat there waiting to connect until it gets bored and decides nobody&#039;s home, the SYN packet never arrived because it was sent to the wrong place.

Because they set the expiry time to 60 seconds plus each time you move forward a page your browser makes a fresh connection to the site, if 60 seconds have passed you will request a new IP address and probably be given the wrong one. So unless you&#039;re a quick typist you&#039;d have to &quot;win&quot; the right IP address multiple times to get through.

The whole reason for this is because they have two weedy computers on a crummy network and wanted to serve hundreds of thousands of people, so they had to do some dirty trick to make sure everyone didn&#039;t flood them, but they made a bad decision.

3. Finding the proper IP is pretty simple, the clever part is figuring out that they gave you a bad address in the first place. Much to my shame I didn&#039;t actually figure it out myself because I was in buying frenzy mode. To figure it out you&#039;d need to record the network with a tool like Wireshark, to read the trace and realise that the IP address is wrong. You&#039;d need a keen eye to spot that. Comparing a connection that fails with one that works will give you the correct IP address too, much easier.

When the first server had crashed I found the second server by doing some Internet sleuthing, there are websites which record the IP addresses that have been used with different domain names and See had leaked this information (LOL). I was also extra cheeky towards the end, I guessed that their &quot;www&quot; server would be running the same software and put its IP address in my hosts file and managed to get to the booking page, but tickets had run out by then.

If you&#039;re really interested in this stuff I recommend reading up on the OSI Network Model and the Internet Protocol Suite, have a mess around with Wireshark and do a bit of network programming if you&#039;re into that sort of thing. Also learn the basic command line tools and where your network settings are and what they all mean.]]></description>
		<content:encoded><![CDATA[<p>Hi Eddie</p>
<p>1. Your DNS cache is part of your PC&#8217;s networking software. Your web browser will ask the TCP networking library (WinSock in Windows, Berkeley Sockets if you use Linux or a Mac) to &#8220;Open up a (TCP socket) connection to glastonbury.seetickets.com which will be listening on port 80&#8243;, and as far as it knows it&#8217;s got a connection to the website that it can read stuff from and write stuff to. Behind the scenes what will actually happen is WinSock will look in the DNS cache for glastonbury.seetickets.com and if it isn&#8217;t listed, or the listing is out of date, it will send a packet of information (a special IP packet on UDP port 53) to one of your internet service provider&#8217;s DNS servers (well, usually your router&#8217;s DNS server, which will ask your ISP&#8217;s DNS servers). This request will go from parent to child, from .com to ask for seetickets, to seetickets to ask for glastonbury, and eventually a DNS response packet will be relayed back to your machine. This response contains the location of the server on the network (its IP address) and the amount of time the address is valid for (the TTL; time to live), and this is saved to your DNS cache so you don&#8217;t have to ask for it again next time.</p>
<p>Internet Protocol (IP) is basic delivery service that routes individual parcels of data (packets) between computers. It doesn&#8217;t have any concept of which packet is supposed to come first or which program wanted it, packets aren&#8217;t even guaranteed to arrive because they could get lost. This is where Transmission Control Protocol (TCP) comes in. TCP sockets are like a two-way conversation that&#8217;s built on top of this delivery network, inside the packets we have information like &#8220;this is the 5th packet of information&#8221;, &#8220;this is a delivery receipt for everything up to packet 58&#8243;, &#8220;hello? are you still there?&#8221;, but to a program like a web browser it looks like a solid pipe that can send and receive information.</p>
<p>So to download a web page your browser has to open a TCP socket. This starts off with a &#8220;handshake&#8221; where the connector says &#8220;let&#8217;s talk&#8221; (SYN), the listener replies with &#8220;hey, I&#8217;m listening, did you really ask me to talk?&#8221; (ACK) and the connector says &#8220;yep that was me&#8221; (SYN-ACK).</p>
<p>Okay, that&#8217;s enough background so you&#8217;ll understand my answer to your second question&#8230;</p>
<p>2. They told seetickets.com&#8217;s DNS servers to return the correct IP address for glastonbury.seetickets.com randomly, to lucky winners, so most people were given the wrong directions. The address they&#8217;re given is a special address which isn&#8217;t on the public Internet, it&#8217;s on your own home network so your SYN &#8220;let&#8217;s talk&#8221; packets don&#8217;t even get a chance to clog up their pipes! So WinSock is sat around waiting for an ACKnowledgement and your browser is sat there waiting to connect until it gets bored and decides nobody&#8217;s home, the SYN packet never arrived because it was sent to the wrong place.</p>
<p>Because they set the expiry time to 60 seconds plus each time you move forward a page your browser makes a fresh connection to the site, if 60 seconds have passed you will request a new IP address and probably be given the wrong one. So unless you&#8217;re a quick typist you&#8217;d have to &#8220;win&#8221; the right IP address multiple times to get through.</p>
<p>The whole reason for this is because they have two weedy computers on a crummy network and wanted to serve hundreds of thousands of people, so they had to do some dirty trick to make sure everyone didn&#8217;t flood them, but they made a bad decision.</p>
<p>3. Finding the proper IP is pretty simple, the clever part is figuring out that they gave you a bad address in the first place. Much to my shame I didn&#8217;t actually figure it out myself because I was in buying frenzy mode. To figure it out you&#8217;d need to record the network with a tool like Wireshark, to read the trace and realise that the IP address is wrong. You&#8217;d need a keen eye to spot that. Comparing a connection that fails with one that works will give you the correct IP address too, much easier.</p>
<p>When the first server had crashed I found the second server by doing some Internet sleuthing, there are websites which record the IP addresses that have been used with different domain names and See had leaked this information (LOL). I was also extra cheeky towards the end, I guessed that their &#8220;www&#8221; server would be running the same software and put its IP address in my hosts file and managed to get to the booking page, but tickets had run out by then.</p>
<p>If you&#8217;re really interested in this stuff I recommend reading up on the OSI Network Model and the Internet Protocol Suite, have a mess around with Wireshark and do a bit of network programming if you&#8217;re into that sort of thing. Also learn the basic command line tools and where your network settings are and what they all mean.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eddie</title>
		<link>http://bitplane.net/2012/10/glastonbury-registration-2013/comment-page-1/#comment-512</link>
		<dc:creator>eddie</dc:creator>
		<pubDate>Tue, 02 Apr 2013 00:00:07 +0000</pubDate>
		<guid isPermaLink="false">http://bitplane.net/?p=865#comment-512</guid>
		<description><![CDATA[okay, so the seetickets dns servers were replying with a local machine ip in 2010, which gets stored in the cache, effectively leaving you banned as it says. I have a few questions:
1. is this cache browser or machine specific?
2. could you please explain in more detail the method they used in 2012? they reduced the TTL to 60 seconds, so does that mean they set their DNS servers to return a &#039;faked&#039; ip a certain number of times until you got lucky and got the right ip? If the ttl of the dns was 60 secs and people were trying all day but didnt get in, that must mean See&#039;s DNS dervers were returning the wrong ip all day? i thought the DNS servers were meant to give out the right ip to obviously connect you to the site? 
3. how did eFestivals, or whoever found this trick out first, find out the real ip was in fact 194.168.202.201/202 and not 192.168.201/202? i.e what method would you use to find out the real ip to add to your hosts file? did they just guess randoms ip&#039;s in their hosts file until they got connected?! 
I&#039;m a 15 year old boy who is interested in stuff like this and i just want to gain knowledge considering there&#039;s noone to answer all these questions i have :( thanks, a reply would be fantastic !
eddie

[WORDPRESS HASHCASH] The poster sent us &#039;0 which is not a hashcash value.]]></description>
		<content:encoded><![CDATA[<p>okay, so the seetickets dns servers were replying with a local machine ip in 2010, which gets stored in the cache, effectively leaving you banned as it says. I have a few questions:<br />
1. is this cache browser or machine specific?<br />
2. could you please explain in more detail the method they used in 2012? they reduced the TTL to 60 seconds, so does that mean they set their DNS servers to return a &#8216;faked&#8217; ip a certain number of times until you got lucky and got the right ip? If the ttl of the dns was 60 secs and people were trying all day but didnt get in, that must mean See&#8217;s DNS dervers were returning the wrong ip all day? i thought the DNS servers were meant to give out the right ip to obviously connect you to the site?<br />
3. how did eFestivals, or whoever found this trick out first, find out the real ip was in fact 194.168.202.201/202 and not 192.168.201/202? i.e what method would you use to find out the real ip to add to your hosts file? did they just guess randoms ip&#8217;s in their hosts file until they got connected?!<br />
I&#8217;m a 15 year old boy who is interested in stuff like this and i just want to gain knowledge considering there&#8217;s noone to answer all these questions i have <img src='http://bitplane.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  thanks, a reply would be fantastic !<br />
eddie</p>
<p>[WORDPRESS HASHCASH] The poster sent us &#8217;0 which is not a hashcash value.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gaz Davidson</title>
		<link>http://bitplane.net/2012/10/glastonbury-registration-2013/comment-page-1/#comment-495</link>
		<dc:creator>Gaz Davidson</dc:creator>
		<pubDate>Tue, 09 Oct 2012 08:53:50 +0000</pubDate>
		<guid isPermaLink="false">http://bitplane.net/?p=865#comment-495</guid>
		<description><![CDATA[Those reverse lookup sites are out of date, those same IP addresses were used for the registrations website.
Also the host file hack worked perfectly until everyone started doing it and the server died, at which time I switched IPs and continued to buy tickets.

Glastonbury announced that they&#039;d sold half the tickets, then 20 minutes later (after the host-file change went public) they sold out. By my reckoning that&#039;s somewhere between 60,000 and 70,000 tickets in 20 minutes.]]></description>
		<content:encoded><![CDATA[<p>Those reverse lookup sites are out of date, those same IP addresses were used for the registrations website.<br />
Also the host file hack worked perfectly until everyone started doing it and the server died, at which time I switched IPs and continued to buy tickets.</p>
<p>Glastonbury announced that they&#8217;d sold half the tickets, then 20 minutes later (after the host-file change went public) they sold out. By my reckoning that&#8217;s somewhere between 60,000 and 70,000 tickets in 20 minutes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gaz Davidson</title>
		<link>http://bitplane.net/2012/10/glastonbury-registration-2013/comment-page-1/#comment-494</link>
		<dc:creator>Gaz Davidson</dc:creator>
		<pubDate>Tue, 09 Oct 2012 08:41:17 +0000</pubDate>
		<guid isPermaLink="false">http://bitplane.net/?p=865#comment-494</guid>
		<description><![CDATA[You may be right, 2 million was 2010/2011 figures from memory.]]></description>
		<content:encoded><![CDATA[<p>You may be right, 2 million was 2010/2011 figures from memory.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://bitplane.net/2012/10/glastonbury-registration-2013/comment-page-1/#comment-493</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Mon, 08 Oct 2012 18:52:12 +0000</pubDate>
		<guid isPermaLink="false">http://bitplane.net/?p=865#comment-493</guid>
		<description><![CDATA[&#039;Ang on - 2 million users? I&#039;d heard estimates of a quarter of that . But if two million folk are going for less than 200,000 tickets, then *of course* 90% of them will be disappointed....]]></description>
		<content:encoded><![CDATA[<p>&#8216;Ang on &#8211; 2 million users? I&#8217;d heard estimates of a quarter of that . But if two million folk are going for less than 200,000 tickets, then *of course* 90% of them will be disappointed&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://bitplane.net/2012/10/glastonbury-registration-2013/comment-page-1/#comment-492</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Mon, 08 Oct 2012 18:49:30 +0000</pubDate>
		<guid isPermaLink="false">http://bitplane.net/?p=865#comment-492</guid>
		<description><![CDATA[Except that the 194.168.202.192-255 addresses belonged to a junior school in Luton, and not Seetickets. Which makes it look as if any DNS monkey-business was something else entirely. In any case, there&#039;s no real evidence (other than anecdotal) that changing the hosts file did any more than not. Of course, it&#039;s comforting to think (if you didn&#039;t get a ticket) that those who did had some secret advantage, but the numbers don&#039;t really bear it out - the tickets didn&#039;t even sell out any faster than after the last gap year back in 2006-7.]]></description>
		<content:encoded><![CDATA[<p>Except that the 194.168.202.192-255 addresses belonged to a junior school in Luton, and not Seetickets. Which makes it look as if any DNS monkey-business was something else entirely. In any case, there&#8217;s no real evidence (other than anecdotal) that changing the hosts file did any more than not. Of course, it&#8217;s comforting to think (if you didn&#8217;t get a ticket) that those who did had some secret advantage, but the numbers don&#8217;t really bear it out &#8211; the tickets didn&#8217;t even sell out any faster than after the last gap year back in 2006-7.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rocker</title>
		<link>http://bitplane.net/2012/10/glastonbury-registration-2013/comment-page-1/#comment-491</link>
		<dc:creator>Rocker</dc:creator>
		<pubDate>Mon, 08 Oct 2012 11:29:41 +0000</pubDate>
		<guid isPermaLink="false">http://bitplane.net/?p=865#comment-491</guid>
		<description><![CDATA[Interesting read, thanks. So are you suggesting (&quot;There were complaints in 2010 that the system wasn’t fair&quot;) that the same thing happened in 2010 (albeit without a 60 second TTL) ?]]></description>
		<content:encoded><![CDATA[<p>Interesting read, thanks. So are you suggesting (&#8220;There were complaints in 2010 that the system wasn’t fair&#8221;) that the same thing happened in 2010 (albeit without a 60 second TTL) ?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
