<?xml version="1.0" encoding="UTF-8"?>
<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>tech-stuff &#187; games</title>
	<atom:link href="http://www.uselessco.de/tag/games/feed" rel="self" type="application/rss+xml" />
	<link>http://www.uselessco.de</link>
	<description>snipplets and more</description>
	<lastBuildDate>Mon, 22 Feb 2010 10:57:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Update: iphone&#8217;s iMobsters &amp; co in Browser</title>
		<link>http://www.uselessco.de/2009/stuff/update-iphones-imobsters-co-in-browser</link>
		<comments>http://www.uselessco.de/2009/stuff/update-iphones-imobsters-co-in-browser#comments</comments>
		<pubDate>Wed, 18 Nov 2009 16:49:12 +0000</pubDate>
		<dc:creator>ralf</dc:creator>
				<category><![CDATA[stuff]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[iMobsters]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[Vampires Live]]></category>

		<guid isPermaLink="false">http://www.uselessco.de/?p=151</guid>
		<description><![CDATA[After a while if have found some time to write an update on this article. Storm8 must have changed some things, because the original way in the first article does not work anymore. I found another way, which follows the same principle. You still have to grab the http-requests from the iPhone with wireshark or [...]]]></description>
			<content:encoded><![CDATA[<p>After a while if have found some time to write an <a href="http://www.uselessco.de/2009/stuff/how-to-play-iphones-imobsters-co-in-firefox">update on this article</a>.</p>
<p>Storm8 must have changed some things, because the original way in the first article does not work anymore.</p>
<p>I found another way, which follows the same principle.<br />
<span id="more-151"></span></p>
<p>You still have to grab the http-requests from the iPhone with wireshark or ngrep.<br />
You will receive something like this:</p>
<blockquote><p>http://im.storm8.com/index.php?version=1.72&#038;udid=234575309t7n5nvzg7zv5gnv34g&#038;pf=485utnv37ghg73vhgm7vm6834h5g78345hg&#038;model=iPhone&#038;sv=3.1.2</p></blockquote>
<p>You don&#8217;t have to write down or copy any of the parameters shown in this url, you just have to call it in a browser.</p>
<p>The url will change, after the game-page has been loaded. You will now see something like:</p>
<blockquote>
<p>http://im.storm8.com/home.php?appEntry=true&#038;promote=&#038;bonusCash=0&#038;formNonce=358t3897ggn3hg75h3g50v350v&#038;h=3485ugv309jh7v0gm70jh6gm03#&#038;setTab0Badge=&#038;changeApplicationBadge=0&#038;setTab4Badge=</p></blockquote>
<p>Now the cookie has been set to your browser, and you can call the game simply by attaching the h-Parameter to the basic game-url:</p>
<blockquote>
<p>http://im.storm8.com/home.php?h=3485ugv309jh7v0gm70jh6gm03#</p>
</blockquote>
<p>Thats all.</p>
<p>I wrote a little php-script, which takes the h-parameter in line 3 and also puts the main-navigation on the top of the window. Due to copyright-restrictions I will not give away the image-files included in the source-code. Search google for screenshots and get create your own navigation. <img src='http://www.uselessco.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Here comes the code:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
&nbsp;
	<span style="color: #000088;">$h</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;3485ugv309jh7v0gm70jh6gm03#&quot;</span><span style="color: #339933;">;</span>	
&nbsp;
	<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'nav'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #009900;">&#41;</span>
	<span style="color: #009900;">&#123;</span>
		<span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'nav'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;home&quot;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
&nbsp;
	<span style="color: #000088;">$url</span>  	 <span style="color: #339933;">=</span> <span style="color: #0000ff;">'http://im.storm8.com/'</span><span style="color: #339933;">.</span><span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'nav'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'.php?h='</span><span style="color: #339933;">.</span><span style="color: #000088;">$h</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$url</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;html&gt;
	&lt;body bgcolor=&quot;#000000&quot;&gt;
		&lt;table border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;
			&lt;tr&gt;
				&lt;td&gt;&lt;a href=&quot;imob.php?nav=home&quot;&gt;&lt;img src=&quot;imob_01.jpg&quot; border=&quot;none&quot;&gt;&lt;/a&gt;&lt;/td&gt;
				&lt;td&gt;&lt;a href=&quot;imob.php?nav=missions&quot;&gt;&lt;img src=&quot;imob_02.jpg&quot; border=&quot;none&quot;&gt;&lt;/td&gt;
				&lt;td&gt;&lt;a href=&quot;imob.php?nav=attack&quot;&gt;&lt;img src=&quot;imob_03.jpg&quot; border=&quot;none&quot;&gt;&lt;/td&gt;
				&lt;td&gt;&lt;a href=&quot;imob.php?nav=equipment&quot;&gt;&lt;img src=&quot;imob_04.jpg&quot; border=&quot;none&quot;&gt;&lt;/td&gt;
				&lt;td&gt;&lt;a href=&quot;imob.php?nav=recruit&quot;&gt;&lt;img src=&quot;imob_05.jpg&quot; border=&quot;none&quot;&gt;&lt;/td&gt;
			&lt;/tr&gt;
		&lt;/table&gt;
		&lt;iframe frameborder=&quot;0&quot; width=&quot;340px&quot; height=&quot;600px&quot; src=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$url</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot;&gt;&lt;/iframe&gt;
	&lt;/body&gt;
&lt;/html&gt;</pre></div></div>

<p><img src="http://www.uselessco.de/wp-content/uploads/2009/11/imobscreen-138x300.jpg" alt="imobscreen" title="imobscreen" width="138" height="300" class="alignright size-medium wp-image-162" /><br />
The result of this script looks like this in the chrome-browser. Please be aware, that it will only work as long as the cookie you set with the first url is valid.</p>
<p>Have fun.</p>
<p>P.S. I just noticed that all functions with popups (as selling equipment or item-information) will not work in the browser.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.uselessco.de/2009/stuff/update-iphones-imobsters-co-in-browser/feed</wfw:commentRss>
		<slash:comments>27</slash:comments>
		</item>
		<item>
		<title>How to play iphone&#8217;s imobsters &amp; co in firefox</title>
		<link>http://www.uselessco.de/2009/stuff/how-to-play-iphones-imobsters-co-in-firefox</link>
		<comments>http://www.uselessco.de/2009/stuff/how-to-play-iphones-imobsters-co-in-firefox#comments</comments>
		<pubDate>Wed, 17 Jun 2009 17:53:28 +0000</pubDate>
		<dc:creator>ralf</dc:creator>
				<category><![CDATA[stuff]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[iMobsters]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[Vampires Live]]></category>

		<guid isPermaLink="false">http://www.uselessco.de/?p=82</guid>
		<description><![CDATA[See an update of this article here. The games iMobsters, Vampires Live and Kingdoms Live are widespread MMORPGs für the iPhone. The games are completly based on html but embedded into an app. The user-authentication is made via a guid in combination with the cellphone-number. So the first task is to get the complete url [...]]]></description>
			<content:encoded><![CDATA[<p><strong>See an update of this article <a href="http://www.uselessco.de/2009/stuff/update-iphones-imobsters-co-in-browser">here</a>.</strong></p>
<p>The games iMobsters, Vampires Live and Kingdoms Live are widespread MMORPGs für the iPhone. The games are completly based on html but embedded into an app.</p>
<p>The user-authentication is made via a guid in combination with the cellphone-number.</p>
<p>So the first task is to get the complete url with parameters for your iPhone.</p>
<p>Therefore you have to install a package-dumper like <a href="http://www.wireshark.org">wireshark</a> and a <a href="http://www.analogx.com/contents/download/Network/proxy/Freeware.htm">proxy server</a> on your machine. If your internet-gateway is a linux-box skip this and simply use <a href="http://ngrep.sourceforge.net/">ngrep</a>.</p>
<p><span id="more-82"></span></p>
<p>Connect your iPhone with your WLAN and set your machine as proxy-server. Start the package-dump open e.g. iMobsters on your iPhone. Look for http-packages in the dump. You will find a request to a url looking like that (this is an example for iMobsters):</p>
<pre>http://im.storm8.com/index.php?version=F1.4&#038;udid=437236572346572465782964&#038;
pf=4524556723678730575968&#038;pnum=+49&#038;20171&#038;2012345678&#038;model=iPhone</pre>
<p>This url is a little messed up by the encoding, so you should replace the &#8220;+&#8221; from the international prefix with &#8220;00&#8243; and remove all encoded whitespaces &#8220;%20&#8243;.</p>
<pre>http://im.storm8.com/index.php?version=F1.4&#038;udid=437236572346572465782964&#038;
pf=4524556723678730575968&#038;pnum=004917112345678&#038;model=iPhone</pre>
<p>Take this url an put it into firefox. You will see a blank page, because the website detects, that your client is not an iPhone. What we have to do next, is to change firefox&#8217;s browser signature.</p>
<p>Open firefox and enter &#8220;<strong>about:config</strong>&#8221; into the address-field. A whole bunch of settings come up. Right-click into the window and click &#8220;<strong>New</strong>&#8221; -> &#8220;<strong>String</strong>&#8220;. </p>
<p>Enter
<pre>general.useragent.override</pre>
<p> in the first window popping up and
<pre>Mozilla/5.0 (iPhone; U; CPU iPhone OS 2_2_1 like Mac OS X; de-de)
AppleWebKit/525.18.1 (KHTML, like Gecko) Mobile/5H11</pre>
<p> into the second one.</p>
<p>Now try the above game-url again. </p>
<p>Hint: If you use this, it would be wise not to play the game via your Iphone (using UMTS / GPRS) and your computer at the same time. The ip-addresses will be different at the same time. This could drag the game-provider&#8217;s attention on your account.</p>
<p>Hint²: If you update your iPhone, maybe your safari-browser-signature will also change. You should always keep the signature of your phone and your fake-signature in sync.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.uselessco.de/2009/stuff/how-to-play-iphones-imobsters-co-in-firefox/feed</wfw:commentRss>
		<slash:comments>55</slash:comments>
		</item>
	</channel>
</rss>
