{"id":1139,"date":"2013-09-18T01:08:51","date_gmt":"2013-09-17T13:08:51","guid":{"rendered":"http:\/\/www.c2s.co.nz\/blog\/?p=1139"},"modified":"2013-09-18T01:08:51","modified_gmt":"2013-09-17T13:08:51","slug":"hacking-ultra-strikes-in-ingress-without-a-motorola-phone","status":"publish","type":"post","link":"http:\/\/www.c2s.co.nz\/blog\/hacking-ultra-strikes-in-ingress-without-a-motorola-phone\/","title":{"rendered":"Hacking Ultra Strikes in Ingress without a Motorola phone"},"content":{"rendered":"<div class=\"8781ca4f97038dd0d58a1ad8af045721\" data-index=\"3\" style=\"float: none; margin:10px 0 10px 0; text-align:center;\">\n<script type=\"text\/javascript\"><!--\r\ngoogle_ad_client = \"ca-pub-6411751809866006\";\r\n\/* BlogHorizontalSlim *\/\r\ngoogle_ad_slot = \"6442664612\";\r\ngoogle_ad_width = 468;\r\ngoogle_ad_height = 60;\r\n\/\/-->\r\n<\/script>\r\n<script type=\"text\/javascript\"\r\nsrc=\"http:\/\/pagead2.googlesyndication.com\/pagead\/show_ads.js\">\r\n<\/script>\n<\/div>\n<p>So the Ultra Strikes have been out and about for a bit. They&#8217;re not really &#8220;game-changers&#8221; like an ADA or Jarvis Virus is. It&#8217;s more of a kind of concentrated XMP Burster, so when you hack one, think of it kind of like hacking a couple of that same level XMP.<\/p>\n<p>Modifying your phone so that you can get the initial equipment drop of 125 items is easy, and then if you leave your phone reporting that way then you will continue to be able to hack them. They have roughly the same drop rate as a Power Cube.<\/p>\n<p>It&#8217;s easy to do, it takes just a couple of minutes, but it requires your phone is already rooted. If you&#8217;ve already got that sorted, then here&#8217;s how to get Ultra Strikes.<\/p>\n<p><!--more--><\/p>\n<h2>Modifying your phone via ADB with a PC<\/h2>\n<p><strong>NOTE:<\/strong> For Linux or OSX, you may need to change into the directory with adb in it and prefix any line that starts with &#8220;adb&#8221; with &#8220;.\/&#8221; to give you &#8220;.\/adb&#8221;<\/p>\n<p>This step assumes you&#8217;ve got your phone setup to work with your PC through ADB. It&#8217;s the quickest and easiest method:<\/p>\n<p>First of all, fire up a command prompt \/ terminal and run:<\/p>\n<pre>adb devices<\/pre>\n<p>This should come back and show you that you have one device. If it doesn&#8217;t, go and enable USB Debugging on your phone and start again.<\/p>\n<p>Then you&#8217;re going to copy off the build.prop file (Which contains information about your phones make \/ model \/ build):<\/p>\n<pre>adb pull \/system\/build.prop<\/pre>\n<p>You&#8217;ll want to make a copy of this file as a backup for later.<\/p>\n<p>Edit this file which is now on your PC with the following details:<br \/>\nNOTE: If you&#8217;re running Windows, open it in Wordpad, not Notepad. This way it keeps the line breaks<\/p>\n<pre>Find:\r\nro.product.model=***\r\nro.product.manufacturer=***\r\nro.product.brand=***\r\nro.product.name=***\r\nro.product.device=***\r\n\r\nChange parametrs to:\r\nro.product.model=XT1080\r\nro.product.manufacturer=motorola\r\nro.product.brand=motorola\r\nro.product.name=obake_verizon\r\nro.product.device=obake<\/pre>\n<p>Now that you&#8217;ve modified and saved that file, we&#8217;re going to push it back on to the phone.<\/p>\n<p>For Jellybean:<\/p>\n<pre>adb push build.prop \/sdcard\/0\/build.prop<\/pre>\n<p>However if you have Ice Cream Sandwich or older, you&#8217;ll want to run:<\/p>\n<pre>adb push build.prop \/sdcard\/build.prop<\/pre>\n<p>This moves the file on to the SD Card \/ internal storage of your phone. \u00a0We do this because it&#8217;s the only place we have &#8220;permission&#8221; to place it right now.<\/p>\n<p>Next, we&#8217;re going to run a few commands to move the file to the correct location:<\/p>\n<pre>adb shell\r\nsu<\/pre>\n<p>This means anything we now do in the Terminal, we now do as root. It may or may not prompt you on-screen on your device after running &#8220;su&#8221;, so check. If it does, you want to allow it.<\/p>\n<p>Next, we make the certain part of the system where the build.prop lives writeable:<\/p>\n<pre>mount -o rw,remount \/system<\/pre>\n<p>Then if you&#8217;re on Jellybean you&#8217;ll want to run:<\/p>\n<pre>cat \/sdcard\/0\/build.prop &gt; \/system\/build.prop<\/pre>\n<p>Otherwise if you&#8217;re on Ice Cream Sandwich or earlier run:<\/p>\n<pre>cat \/sdcard\/build.prop &gt; \/system\/build.prop<\/pre>\n<p>This has now moved the file to the correct location on your system. We will just tidy it up now and make it read-only again:<\/p>\n<pre>mount -o ro,remount \/system<\/pre>\n<p>Finally, you want to reboot your phone for the changes to take effect:<\/p>\n<pre>exit\r\nexit\r\nadb reboot<\/pre>\n<p>Once your phone reboots, fire up Ingress and you should be greeted with the following items:<\/p>\n<pre>50x XMP Bursters\r\n10x Shields (Very Rare?)\r\n50x Resonators\r\n10x Power Cubes\r\n5x Ultra strikes<\/pre>\n<p>From there, you can either leave your phone as-is to continue hacking, or you can revert back to the original build.prop to return your phone to normal.<\/p>\n<p>&nbsp;<\/p>\n<h2>Modifying on your phone using Root Explorer<\/h2>\n<p>If you have Root Explorer it&#8217;s not too difficult to do on your phone.<\/p>\n<p>Simply fire up the terminal and run:<\/p>\n<pre>mount -o rw,remount \/system<\/pre>\n<p>Then load up Root Explorer and edit \/system\/build.prop, changing the values mentioned earlier.<\/p>\n<p>Afterwards, run:<\/p>\n<pre>mount -o ro,remount \/system<\/pre>\n<p>And you&#8217;re done. Reboot and fire up Ingress!<\/p>\n<p>&nbsp;<\/p>\n<h2>Modifying on your PC without using ADB<\/h2>\n<p>This can be done using the Terminal app on your phone.<\/p>\n<p>Simply fire it up and run:<\/p>\n<pre>cp \/system\/build.prop \/sdcard\/0\/<\/pre>\n<p>Plug it in to your PC as a USB drive and copy the file off.<\/p>\n<p>Modify the build.prop accordingly, copy it back, then from the Terminal on your phone, type in:<\/p>\n<pre>su\r\nmount -o rw,remount \/system\r\ncat \/sdcard\/0\/build.prop &gt; \/system\/build.prop\r\nmount -o ro,remount \/system<\/pre>\n<p>After you&#8217;ve done that, reboot, load up Ingress and you&#8217;re done!<\/p>\n\n<div style=\"font-size: 0px; height: 0px; line-height: 0px; margin: 0; padding: 0; clear: both;\"><\/div>","protected":false},"excerpt":{"rendered":"<p>So the Ultra Strikes have been out and about for a bit. They&#8217;re not really &#8220;game-changers&#8221; like an ADA or Jarvis Virus is. It&#8217;s more of a kind of concentrated XMP Burster, so when you hack one, think of it kind of like hacking a couple of that same level XMP. Modifying your phone so [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2},"jetpack_post_was_ever_published":false},"categories":[4],"tags":[410,14,474,476,475],"class_list":["post-1139","post","type-post","status-publish","format-standard","hentry","category-how-tos-guides-tech-info","tag-adb","tag-android","tag-ingress","tag-root","tag-ultra-strike"],"jetpack_publicize_connections":[],"jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/pWi3e-in","jetpack_featured_media_url":"","_links":{"self":[{"href":"http:\/\/www.c2s.co.nz\/blog\/wp-json\/wp\/v2\/posts\/1139","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/www.c2s.co.nz\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/www.c2s.co.nz\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/www.c2s.co.nz\/blog\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"http:\/\/www.c2s.co.nz\/blog\/wp-json\/wp\/v2\/comments?post=1139"}],"version-history":[{"count":1,"href":"http:\/\/www.c2s.co.nz\/blog\/wp-json\/wp\/v2\/posts\/1139\/revisions"}],"predecessor-version":[{"id":1140,"href":"http:\/\/www.c2s.co.nz\/blog\/wp-json\/wp\/v2\/posts\/1139\/revisions\/1140"}],"wp:attachment":[{"href":"http:\/\/www.c2s.co.nz\/blog\/wp-json\/wp\/v2\/media?parent=1139"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/www.c2s.co.nz\/blog\/wp-json\/wp\/v2\/categories?post=1139"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/www.c2s.co.nz\/blog\/wp-json\/wp\/v2\/tags?post=1139"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}