<?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>Ichimusai's Place &#187; Hacking</title>
	<atom:link href="http://www.ichimusai.org/tag/hacking/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ichimusai.org</link>
	<description>Photos and other rants</description>
	<lastBuildDate>Sun, 12 Feb 2012 19:56:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Using your Android for network monitoring</title>
		<link>http://www.ichimusai.org/2009/12/01/netmonitor/</link>
		<comments>http://www.ichimusai.org/2009/12/01/netmonitor/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 16:10:57 +0000</pubDate>
		<dc:creator>Ichimusai</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[awk]]></category>
		<category><![CDATA[cell info]]></category>
		<category><![CDATA[dBm]]></category>
		<category><![CDATA[GMS]]></category>
		<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[logger]]></category>
		<category><![CDATA[netmonitor]]></category>
		<category><![CDATA[signal strength]]></category>
		<category><![CDATA[TEMS]]></category>
		<category><![CDATA[umts]]></category>
		<category><![CDATA[visualization]]></category>

		<guid isPermaLink="false">http://www.ichimusai.org/?p=3065</guid>
		<description><![CDATA[Using a small software called RF Signal Tracker it is possible to create a log file detailing the coverage parameters your phone has at every point a long a route. This is something that other software like TEMS charge you thousands of € in order to facilitate and now you can do it for free [...]]]></description>
			<content:encoded><![CDATA[<p>Using a small software called RF Signal Tracker it is possible to create a log file detailing the coverage parameters your phone has at every point a long a route. This is something that other software like TEMS charge you thousands of € in order to facilitate and now you can do it for free using nothing but a bit of computer skills and an Android phone.</p>
<p>The RF Signal Tracker is a little buggy so in order to use it properly you should turn of auto-rotation of your screen and avoid running too many other applications at the time. When the phone is in idle mode you will get less accurate readings but usually good enough in order to make well reasoned assumptions about the network.</p>
<p>Starting the RF Signal Tracker software you have an option to record your data. It will use the built-in GPS receiver in the phone to find out where you are and then log together with the signal strength (in dBm) and other parameters such as the base station Cell ID, the LAC and many other important parameters as well as the base station position (if it is known).</p>
<p>This can then be exported to the Micro SD-card in the phone as a CSV file which is the easiest format to use. Once you have it as a CSV file you may tether the phone to your computer and transfer this file to your working directory.</p>
<p>If you are running some flavour of Linux, BSD or other Unix you are set but if you are running Windows you need to install a package called Cygwin. Standard settings should do, you need a command line that works and a tool called &#8220;awk&#8221; which is awesome. Tutorial for AWK can be found here.</p>
<p>Open a shell, navigate to your working directory and find the CSV file. Then issue a command like this:</p>
<p><span style="font-size: 10pt; font-family: &quot;Courier New&quot;;" lang="EN-GB"><span>awk</span> &lt;export_091130170020.csv ’BEGIN {FS=”,”}; {print $3/1000000 “,” $2/1000000 “,” 130+$4}’ &gt;coord.txt</span></p>
<p>This should export a file called &#8220;coord.txt&#8221; in your working directory with coordinates in WGS84 decimal format (ddd.ddddd, dd.ddddd) with the easting/westing and the northing/southing in that order.</p>
<p>The next step is to take the following KML file and open it in a text editor, just copy it straight to the editor of your choice.</p>
<pre style="border: 1px solid #bbbbbb; margin: 1em 0px 0px; padding: 0.99em; overflow: auto; font-family: monospace; color: #007000; font-size: 9pt; background-color: #fafafa; line-height: 15px; word-wrap: break-word; width: 626px;">&lt;?xml version="1.0" encoding="UTF-8"?&gt;
&lt;kml xmlns="http://www.opengis.net/kml/2.2"&gt;
  &lt;Document&gt;
    &lt;name&gt;Paths&lt;/name&gt;
    &lt;description&gt;Examples of paths. Note that the tessellate tag is by default
      set to 0. If you want to create tessellated lines, they must be authored
      (or edited) directly in KML.&lt;/description&gt;
    &lt;Style id="yellowLineGreenPoly"&gt;
      &lt;LineStyle&gt;
        &lt;color&gt;7f00ffff&lt;/color&gt;
        &lt;width&gt;4&lt;/width&gt;
      &lt;/LineStyle&gt;
      &lt;PolyStyle&gt;
        &lt;color&gt;7f00ff00&lt;/color&gt;
      &lt;/PolyStyle&gt;
    &lt;/Style&gt;
    &lt;Placemark&gt;
      &lt;name&gt;Signal Strength Test Run&lt;/name&gt;
      &lt;description&gt;Some description here&lt;/description&gt;
      &lt;styleUrl&gt;#yellowLineGreenPoly&lt;/styleUrl&gt;
      &lt;LineString&gt;
        <strong>&lt;extrude&gt;1&lt;/extrude&gt;
        &lt;tessellate&gt;1&lt;/tessellate&gt;</strong>
        &lt;altitudeMode&gt;relativeToGround&lt;/altitudeMode&gt;
        &lt;coordinates&gt;
&lt;!-- YOUR COORDINATES GOES HERE --&gt;
        &lt;/coordinates&gt;
      &lt;/LineString&gt;
    &lt;/Placemark&gt;
  &lt;/Document&gt;
&lt;/kml&gt;</pre>
<p>Find the section that says&lt;coordinates&gt; &lt;/coordinates&gt;  in the above and then cut and paste the coordinates from the coordinates.txt file in between the two tags.</p>
<p>If you have google earth you can now double-click on the KML file you created and view the result. The height over ground is the signal strength calculated such as that a strength of -130 dBm is flat on the ground and for every dBm above the measurement point is placed 1 m/dBm above ground. This means that a signal strength of -90 dBm will place the point at 130-90 = 40 m above ground.</p>
<p>Happy hacking!</p>
<a href='http://twitter.com/share?url=http%3A%2F%2Fwww.ichimusai.org%2F%3Fp%3D3065&count=horizontal&related=ichimusai1972&text=Using%20your%20Android%20for%20network%20monitoring' class='twitter-share-button' data-text='Using your Android for network monitoring' data-url='http://www.ichimusai.org/?p=3065' data-counturl='http://www.ichimusai.org/2009/12/01/netmonitor/' data-count='horizontal' data-via='ichimusai1972' data-related='ichimusai1972'></a>]]></content:encoded>
			<wfw:commentRss>http://www.ichimusai.org/2009/12/01/netmonitor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Brazilians hacks satellites for personal communications</title>
		<link>http://www.ichimusai.org/2009/04/22/fltsat-hack/</link>
		<comments>http://www.ichimusai.org/2009/04/22/fltsat-hack/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 22:02:41 +0000</pubDate>
		<dc:creator>Ichimusai</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[amateur radio]]></category>
		<category><![CDATA[antennas]]></category>
		<category><![CDATA[bolinha]]></category>
		<category><![CDATA[brazil]]></category>
		<category><![CDATA[criminal]]></category>
		<category><![CDATA[FLTSAT]]></category>
		<category><![CDATA[FLTSATCOM]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[HAM radio]]></category>
		<category><![CDATA[illegal]]></category>
		<category><![CDATA[illicit]]></category>
		<category><![CDATA[operation satellite]]></category>
		<category><![CDATA[radio]]></category>
		<category><![CDATA[satellite]]></category>
		<category><![CDATA[transponder]]></category>
		<category><![CDATA[wired]]></category>

		<guid isPermaLink="false">http://www.ichimusai.org/?p=2235</guid>
		<description><![CDATA[Apparently resurceful people in Brazil have learned how they can use modified HAM radio equipment and satellite dishes to hijack military transponder satellites to use as a country-wide radio network. It all started with a radio station that realized they could use the transponders to broadcast a radio signal and today many people from truckers [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.wired.com/politics/security/news/2009/04/fleetcom"><img class="alignright" src="http://www.fas.org/spp/military/program/com/10062104.jpg" alt="Satellite" width="307" height="230" /></a></p>
<p>Apparently resurceful people in Brazil have learned how they can use modified HAM radio equipment and satellite dishes to hijack military transponder satellites to use as a country-wide radio network.</p>
<p>It all started with a radio station that realized they could use the transponders to broadcast a radio signal and today many people from truckers to drug runners are using the satellites to broadcast warning information or just chatter about the latest football score.</p>
<p>Quite impressive! Using the US Navy&#8217;s Fleet Satellite Communications System like this is excellent stuff! <img src='http://www.ichimusai.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://www.wired.com/politics/security/news/2009/04/fleetcom">Here is the story in Wired</a></p>
<a href='http://twitter.com/share?url=http%3A%2F%2Fwww.ichimusai.org%2F%3Fp%3D2235&count=horizontal&related=ichimusai1972&text=Brazilians%20hacks%20satellites%20for%20personal%20communications' class='twitter-share-button' data-text='Brazilians hacks satellites for personal communications' data-url='http://www.ichimusai.org/?p=2235' data-counturl='http://www.ichimusai.org/2009/04/22/fltsat-hack/' data-count='horizontal' data-via='ichimusai1972' data-related='ichimusai1972'></a>]]></content:encoded>
			<wfw:commentRss>http://www.ichimusai.org/2009/04/22/fltsat-hack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hackers Stole Joint Strike Fighter Plans</title>
		<link>http://www.ichimusai.org/2009/04/21/hacked-jsf/</link>
		<comments>http://www.ichimusai.org/2009/04/21/hacked-jsf/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 20:35:33 +0000</pubDate>
		<dc:creator>Ichimusai</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[air strike]]></category>
		<category><![CDATA[aircraft]]></category>
		<category><![CDATA[aviation]]></category>
		<category><![CDATA[china]]></category>
		<category><![CDATA[datarunner]]></category>
		<category><![CDATA[defense]]></category>
		<category><![CDATA[electronic warfare]]></category>
		<category><![CDATA[espionage]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Joint Strike Fighter]]></category>
		<category><![CDATA[JSF]]></category>
		<category><![CDATA[lockheed]]></category>
		<category><![CDATA[military]]></category>
		<category><![CDATA[pentagon]]></category>
		<category><![CDATA[spies]]></category>
		<category><![CDATA[stolen data]]></category>
		<category><![CDATA[turkey]]></category>
		<category><![CDATA[usa]]></category>

		<guid isPermaLink="false">http://www.ichimusai.org/?p=2228</guid>
		<description><![CDATA[Hackare piratkopierade Joint Strike Fighter &#8211; Ny Teknik. Hackers stole plans for Joint Strike Fighter II. The Swedish paper &#8220;Ny Teknik&#8221; (mainly an engineering and technology news paper) reports today that what seems to be Chinese hackers have broken into the most secret parts of Pentagon and stolen the secret plans of the Joint Strike [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><a href="http://www.nyteknik.se/nyheter/it_telekom/internet/article560822.ece">Hackare piratkopierade Joint Strike Fighter &#8211; Ny Teknik</a>.</p>
<div id="attachment_2230" class="wp-caption aligncenter" style="width: 423px"><a href="/wp-content/uploads/2009/04/china_jsf_hacking.jpg"><img class="size-full wp-image-2230" title="china_jsf_hacking" src="/wp-content/uploads/2009/04/china_jsf_hacking.jpg" alt="China vs. Pentagon" width="413" height="310" /></a><p class="wp-caption-text">China vs. Pentagon</p></div>
<p style="text-align: left;">Hackers stole plans for Joint Strike Fighter II. The Swedish paper &#8220;Ny Teknik&#8221; (mainly an engineering and technology news paper) reports today that what seems to be Chinese hackers have broken into the most secret parts of Pentagon and stolen the secret plans of the Joint Strike Fighter aircraft. </p>
<p style="text-align: left;">The Wall Street Journal cites that the hacks were performed during 2007 and 2008 and several terbytes of data where stolen.  The attacks came through a supplier in Turkey via the Lockheed facility there.</p>
<p style="text-align: left;">The american defense forces are now taking measures to increase their IT security. </p>
<p style="text-align: left;">The cost of developing the JSF is one of the most prestigious and expensive projects undertaken and the stolen data could possibly be used by someone to analyze the JSF for its weaknesses and develop an effective defense against it.</p>
<a href='http://twitter.com/share?url=http%3A%2F%2Fwww.ichimusai.org%2F%3Fp%3D2228&count=horizontal&related=ichimusai1972&text=Hackers%20Stole%20Joint%20Strike%20Fighter%20Plans' class='twitter-share-button' data-text='Hackers Stole Joint Strike Fighter Plans' data-url='http://www.ichimusai.org/?p=2228' data-counturl='http://www.ichimusai.org/2009/04/21/hacked-jsf/' data-count='horizontal' data-via='ichimusai1972' data-related='ichimusai1972'></a>]]></content:encoded>
			<wfw:commentRss>http://www.ichimusai.org/2009/04/21/hacked-jsf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sorting Algorithms</title>
		<link>http://www.ichimusai.org/2009/04/15/sorting-algorithms/</link>
		<comments>http://www.ichimusai.org/2009/04/15/sorting-algorithms/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 19:58:56 +0000</pubDate>
		<dc:creator>Ichimusai</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[algorithms]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[explanation]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[pseudo code]]></category>
		<category><![CDATA[sorting]]></category>
		<category><![CDATA[visualizations]]></category>

		<guid isPermaLink="false">http://www.ichimusai.org/?p=2142</guid>
		<description><![CDATA[Here is a wonderful page with great explanations and pseudocode of sorting algorithms. Use this to find out which algorithm is right for your sorting needs! It contains information on the following types of sorting algorithms: Insertion Selection Bubble Shell Merge Heap Quick Quick3 Great visualisation!]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.sorting-algorithms.com/">Here is a wonderful page</a> with great explanations and pseudocode of sorting algorithms. Use this to find out which algorithm is right for your sorting needs!</p>
<p>It contains information on the following types of sorting algorithms:</p>
<ul>
<li>Insertion</li>
<li>Selection</li>
<li>Bubble</li>
<li>Shell</li>
<li>Merge</li>
<li>Heap</li>
<li>Quick</li>
<li>Quick3</li>
</ul>
<p>Great visualisation!</p>
<a href='http://twitter.com/share?url=http%3A%2F%2Fwww.ichimusai.org%2F%3Fp%3D2142&count=horizontal&related=ichimusai1972&text=Sorting%20Algorithms' class='twitter-share-button' data-text='Sorting Algorithms' data-url='http://www.ichimusai.org/?p=2142' data-counturl='http://www.ichimusai.org/2009/04/15/sorting-algorithms/' data-count='horizontal' data-via='ichimusai1972' data-related='ichimusai1972'></a>]]></content:encoded>
			<wfw:commentRss>http://www.ichimusai.org/2009/04/15/sorting-algorithms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Retro-Hacking: Commodore 64 Portable</title>
		<link>http://www.ichimusai.org/2009/04/10/retro-hacking-commodore-64-portable/</link>
		<comments>http://www.ichimusai.org/2009/04/10/retro-hacking-commodore-64-portable/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 15:29:44 +0000</pubDate>
		<dc:creator>Ichimusai</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[brilliant hack]]></category>
		<category><![CDATA[C64]]></category>
		<category><![CDATA[C64 Portable]]></category>
		<category><![CDATA[C64P]]></category>
		<category><![CDATA[commodore]]></category>
		<category><![CDATA[Hacking]]></category>

		<guid isPermaLink="false">http://www.ichimusai.org/?p=2133</guid>
		<description><![CDATA[Recently on one of the mailinglists I read there was a link posted to this guy who has made a portable C64 laptop. I was amazed at the level of attention to details this guy has and how well his design rhymes with the design of the times used when the C64 was originally designed. [...]]]></description>
			<content:encoded><![CDATA[<p>Recently on one of the mailinglists I read there was a link posted to this guy who has made a portable C64 laptop. I was amazed at the level of attention to details this guy has and how well his design rhymes with the design of the times used when the C64 was originally designed.</p>
<p>That designed was called the &#8220;bread box&#8221; here in Sweden with that typical beige gray sort of colour for the Commodore computers. Way before the redesigned almost Volvo-looking C128 and C128D and the futuristic sort of looking Amiga 500.</p>
<div id="attachment_2132" class="wp-caption aligncenter" style="width: 510px"><a href="http://benheck.com/04-05-2009/commodore-64-original-hardware-laptop"><img class="size-full wp-image-2132" title="c64p-hack" src="/wp-content/uploads/2009/04/c64p-hack.jpg" alt="The C64 Portable - Brilliant retro hack!" width="500" height="539" /></a><p class="wp-caption-text">The C64 Portable - Brilliant retro hack!</p></div>
<p>Click the image to read the full article.</p>
<a href='http://twitter.com/share?url=http%3A%2F%2Fwww.ichimusai.org%2F%3Fp%3D2133&count=horizontal&related=ichimusai1972&text=Retro-Hacking%3A%20Commodore%2064%20Portable' class='twitter-share-button' data-text='Retro-Hacking: Commodore 64 Portable' data-url='http://www.ichimusai.org/?p=2133' data-counturl='http://www.ichimusai.org/2009/04/10/retro-hacking-commodore-64-portable/' data-count='horizontal' data-via='ichimusai1972' data-related='ichimusai1972'></a>]]></content:encoded>
			<wfw:commentRss>http://www.ichimusai.org/2009/04/10/retro-hacking-commodore-64-portable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Ultimate Commodore 64 Talk</title>
		<link>http://www.ichimusai.org/2008/12/16/the-ultimate-commodore-64-talk/</link>
		<comments>http://www.ichimusai.org/2008/12/16/the-ultimate-commodore-64-talk/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 20:25:46 +0000</pubDate>
		<dc:creator>Ichimusai</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[assembler]]></category>
		<category><![CDATA[C64]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[commodore]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[pagetable.com]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[Retro]]></category>

		<guid isPermaLink="false">http://www.ichimusai.org/?p=1222</guid>
		<description><![CDATA[The Ultimate Commodore 64 Talk @25C3. I can&#8217;t help myself now. This just brought back too many memories from when we used to sit around and hack the C64. Opening borders, doing colour bars, trying to extend sprites in the border, doing real time animations&#8230; Good article for those who missed out on the eighties&#8230;]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.pagetable.com/?p=53">The Ultimate Commodore 64 Talk @25C3</a>.</p>
<p>I can&#8217;t help myself now. This just brought back too many memories from when we used to sit around and hack the C64.</p>
<p>Opening borders, doing colour bars, trying to extend sprites in the border, doing real time animations&#8230;</p>
<p>Good article for those who missed out on the eighties&#8230;</p>
<a href='http://twitter.com/share?url=http%3A%2F%2Fwww.ichimusai.org%2F%3Fp%3D1222&count=horizontal&related=ichimusai1972&text=The%20Ultimate%20Commodore%2064%20Talk' class='twitter-share-button' data-text='The Ultimate Commodore 64 Talk' data-url='http://www.ichimusai.org/?p=1222' data-counturl='http://www.ichimusai.org/2008/12/16/the-ultimate-commodore-64-talk/' data-count='horizontal' data-via='ichimusai1972' data-related='ichimusai1972'></a>]]></content:encoded>
			<wfw:commentRss>http://www.ichimusai.org/2008/12/16/the-ultimate-commodore-64-talk/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

