<?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"
	>

<channel>
	<title>apo</title>
	<atom:link href="http://afxal.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://afxal.com</link>
	<description>Life in 1's and 0's</description>
	<pubDate>Thu, 06 Nov 2008 12:26:19 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<item>
		<title>Wataniya.mv vulnerabilities and exploits</title>
		<link>http://afxal.com/2008/11/06/wataniyamv-vulnerabilities-and-exploits/</link>
		<comments>http://afxal.com/2008/11/06/wataniyamv-vulnerabilities-and-exploits/#comments</comments>
		<pubDate>Thu, 06 Nov 2008 01:48:59 +0000</pubDate>
		<dc:creator>afu</dc:creator>
		
		<category><![CDATA[Internet]]></category>

		<category><![CDATA[Maldives]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Vulnerabilities]]></category>

		<category><![CDATA[Wataniya]]></category>

		<guid isPermaLink="false">http://afxal.com/?p=32</guid>
		<description><![CDATA[ROL isn’t bothering me at all now I’ve got 4mb internet connection. Few months back I was checking www.wataniya.mv, I don’t know why but I started browsing all the pages they had. HTML and simple UI, nothing much to offer as we seen in Dhiraagu. Nothing to blame, as I’ve noticed these guys were more [...]]]></description>
			<content:encoded><![CDATA[<p>ROL isn’t bothering me at all now I’ve got 4mb internet connection. Few months back I was checking <a title="Wataniya" href="http://wataniya.mv/" target="_blank">www.wataniya.mv</a>, I don’t know why but I started browsing all the pages they had. HTML and simple UI, nothing much to offer as we seen in <a title="Dhiraagu" href="http://www.dhiraagu.com.mv" target="_blank">Dhiraagu</a>. Nothing to blame, as I’ve noticed these guys were more secure than Dhiraagu. Security isn’t much of a concern to Wataniya.</p>
<p>Simply I browsed the <a title="Media Page" href="http://wataniya.mv/media/pressroom.html" target="_blank">media page</a> and then to pressroom <a title="Press Room Archive" href="http://wataniya.mv/media/pressroom_archive.html" target="_blank">archive</a>. While I was Hovering each and every link the from <strong>1st june 2008</strong> onwards they had given direct links to the <strong>PDF</strong> files(the press releases). The days behind <strong>28th may 2008</strong> were given a PHP file “<a href="http://wataniya.mv/download_sis.php" target="_blank">download_sis.php</a>” and a variable <strong>SIS</strong> to download the <strong>PDF</strong> i.e “<a href="http://wataniya.mv/download_sis.php?sis=media/pressrelease-21may2008-talkchoice.pdf" target="_blank">download_sis.php?sis=media/pressrelease-21may2008-talkchoice.pdf</a>” and so on. This isn’t something huge but yes vulnerability is there to Wataniya. This file download_sis.php can be used to download any files in the server. Ok now you do have a question. Why the hell do I need to download some static HTML’s? According to my php knowledge this was indeed vulnerability in the site. A normal user can call for files in the server.</p>
<p>Alright let me tell you why this is not safe. “<a href="http://wataniya.mv/download_sis.php?sis=download_sis.php" target="_blank">download_sis.php?sis=download_sis.php</a>” got my point. PHP pages are server side scripts. If you try to save them there&#8217;s no way to get the original code thus you get the out from the server which is the HTML.</p>
<blockquote><p><em>&lt;?php<br />
$filename = $_GET['sis'];<br />
if( ! is_file($filename) || $filename[0] == &#8216;.&#8217; || $filename[0] == &#8216;/&#8217; )<br />
die(&#8221;Bad access attempt.\n&#8221;);<br />
$file = explode(&#8217;.', $filename);<br />
//if($file[1] != &#8217;sis&#8217;) die(&#8217;Could not download selected file.&#8217;);<br />
header(&#8221;Pragma: public&#8221;);<br />
header(&#8221;Expires: 0&#8243;);<br />
header(&#8221;Cache-Control: must-revalidate, post-check=0, pre-check=0&#8243;);<br />
header(&#8221;Content-Type: application/force-download&#8221;);<br />
header(&#8221;Content-Type: application/octet-stream&#8221;);<br />
header(&#8221;Content-Type: application/download&#8221;);<br />
header(&#8221;Content-Disposition: attachment; filename=&#8221;.basename($filename).&#8221;;&#8221;);<br />
header(&#8221;Content-Transfer-Encoding: binary&#8221;);<br />
header(&#8221;Content-Length: &#8220;.filesize($filename));<br />
readfile(&#8221;$filename&#8221;);<br />
exit();<br />
?&gt;</em></p></blockquote>
<p>That’s the code I’ve downloaded from the <a href="http://wataniya.mv/download_sis.php">download_sis.php</a> file. Basically it checks for whether the typed file exists or not. If the file exists it send the browser the request to download it, else it gives an error message saying “Bad access attempt”. Well the mistake here is they should have mentioned that only PDF files can be downloaded in the coding, as validation or other PHP validations could have been applied.</p>
<p>Still feels it’s not a security measure we can leave, well think again. Linux shadow password file is what you should be looking for “/etc/passwd” Just keep in mind if u get to that file you probably can do some damage.</p>
<p>You have probably got an image here. As I said I was browsing the whole site. I went to the Contact Us page. I tried submitting an enquiry. Filled all the fields they had and tried to send a prank one. As you all know sending an email requires server side support. So I tried submitting my “prank” message. The form was submitted to a file “<a href="http://wataniya.mv/download_sis.php?sis=contactus/mail.php" target="_blank">mail.php</a>”.</p>
<p>A php warning came along:</p>
<blockquote><p><em>Warning: fsockopen(): php_hostconnect: connect failed in <strong>/var/www/html/wataniya/</strong>contactus/class.smtp.php on line 105</em></p>
<p><em>Warning: fsockopen(): unable to connect to 10.10.9.2:25 in <strong>/var/www/html/wataniya/</strong>contactus/class.smtp.php on line 105<br />
Message could not be sent.<br />
Mailer Error: Language string failed to load: connect_host</em></p></blockquote>
<p>We can download the mail.php file too. But the important thing here is about the error. An error can give us lots of information. As we can see above, the structure of the site is clearly showed in the error.</p>
<p>As far as the mail php application is concerned, they have lots of SMTP information in those mail files.<br />
Well after everything we have seen above, this is indeed a huge vulnerability for Wataniya and its online server. This should have been taken cared by the Wataniya administrators. Without the use of easy PHP validations they have come up with this exploit. Making it more easier for any one to get into their private data. A telecommunication company user information should be secured. So just think what if this server is connected to their main frame(just in case), what are the out puts of this whose gonna take responsible for just a simple validation they missed out. Am not an expert but figuring out this puzzle was what piece of cake. Yeah.</p>
<p>Drop me a line if you were able to do anything with my information given above. And one last thing am not even 18 I cant take any responsibilities don’t come and scratch my head with “cyber crime unit”. I’ve got better things to do than this. Please take a note that information given above is only ment to be used as educational purpose only.</p>
<p><strong>UPDATE:</strong><br />
<em>They have removed the file download_sis.php, now that was fast. -_-</em></p>
]]></content:encoded>
			<wfw:commentRss>http://afxal.com/2008/11/06/wataniyamv-vulnerabilities-and-exploits/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Whats up?</title>
		<link>http://afxal.com/2008/11/05/whats-up/</link>
		<comments>http://afxal.com/2008/11/05/whats-up/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 23:40:54 +0000</pubDate>
		<dc:creator>afu</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[life]]></category>

		<category><![CDATA[Me]]></category>

		<guid isPermaLink="false">http://afxal.com/?p=30</guid>
		<description><![CDATA[What’s up. Almost one year. Where the heck was i. I wasn’t checking for any rol cracks (hell no).  After olevels got over, I got a gap of a month to spend around. Well most of my friends were wondering where to go ahead in life. Some decided to stick with the so called “six [...]]]></description>
			<content:encoded><![CDATA[<p>What’s up. Almost one year. Where the heck was i. I wasn’t checking for any rol cracks (hell no).  After olevels got over, I got a gap of a month to spend around. Well most of my friends were wondering where to go ahead in life. Some decided to stick with the so called “six month holiday”, while I was thinking about what to do ahead. I always had this keen interest in programming and designing.</p>
<p>Well my search ended when my cousin inquired about several places. I did a small wiki on the places and then decided to join NIIT for BSC (HONS) in Computing. Java was the main language I chose as multiplatform environment is what im looking for. Any ways I left Male’, shifted to Colombo. Ok not a bad excuse. I’ve been studying for a year now. Well that’s now. What happened in between? Right…</p>
<p>I missed lots of blog posts I should have posted.Wasted some time which I wish I could get back. To be honest lan gamming and the institute stuffs made me so lazy. And yeah some great movies and of cause tv series killed my sleep. Researching on topics for institute projects were some of my work I do in the morning. I totally missed my blog and my readers. <img src='http://afxal.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://afxal.com/2008/11/05/whats-up/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Shame on Maldivian ISP ROL</title>
		<link>http://afxal.com/2007/11/13/shame-on-maldivian-isp-rol/</link>
		<comments>http://afxal.com/2007/11/13/shame-on-maldivian-isp-rol/#comments</comments>
		<pubDate>Tue, 13 Nov 2007 21:27:31 +0000</pubDate>
		<dc:creator>afu</dc:creator>
		
		<category><![CDATA[Internet]]></category>

		<category><![CDATA[focus]]></category>

		<category><![CDATA[raajje online]]></category>

		<category><![CDATA[ROL]]></category>

		<category><![CDATA[rol vista crack]]></category>

		<category><![CDATA[vista]]></category>

		<category><![CDATA[vista crack]]></category>

		<guid isPermaLink="false">http://afxal.com/2007/11/13/shame-on-maldivian-isp-rol/</guid>
		<description><![CDATA[I was checking out ROL website tonight, and found something really interesting. Something another ISP on earth wouldn&#8217;t provide you, best of all its all in Maldives&#8230; :).  Believe me or not they got more in their FTP back yard&#8230; keke&#8230;
So let me come to the point. The most important thing I found tonight [...]]]></description>
			<content:encoded><![CDATA[<p>I was checking out <a title="ROL" href="http://rol.net.mv" target="_blank">ROL</a> website tonight, and found something really interesting. Something another ISP on earth wouldn&#8217;t provide you, best of all its all in Maldives&#8230; :).  Believe me or not they got more in their FTP back yard&#8230; keke&#8230;</p>
<p>So let me come to the point. The most important thing I found tonight in its back yard is <a title="ROL" href="http://rol.net.mv" target="_blank">ROL</a> provides <a title="ROL'S VISTA CRACK" href="http://rol.net.mv/downloads/vista.zip" target="_blank">Vista Crack</a>. Being one of the internet service providers in Maldives, they are currently hosting a <a title="ROL'S VISTA CRACK" href="http://rol.net.mv/downloads/vista.zip" target="_blank">crack</a> for the well known operating system Microsoft Windows Vista in its back yard. So whose taking responsible for this. Am sure <a title="TAM" href="http://www.tam.gov.mv" target="_blank">TAM</a> (Telecom Authority of Maldives) wont even care about these actions by these companies. And about <a title="ROL" href="http://rol.net.mv" target="_blank">ROL</a> am not calling them or emailing them at least this time they wont ask me to disconnect my modem power cable and put it on again. Any how I get the same response from the geeks at ROL&#8217;s phone booth. So when can Maldivians have a genuine internet service provider. All I can see is <a title="Dhiraagu" href="http://www.dhiraagu.com.mv/" target="_blank">Dhiraagu</a> is bluffing their advertisements and ROL doing their backyard business. Perhaps <a title="ROL" href="http://rol.net.mv" target="_blank">ROL</a> is turning out to be some warez geeks to host something like Vista Crack.</p>
<p>Thats not all. ROL site is full of holes more than you could expect from an ISP at least <a title="Dhiraagu" href="http://www.dhiraagu.com.mv/">Dhiraagu</a> has a secure site. But ROL ass is not clean at all. Any one with the knowledge of XSS can do many cool stuffs to ROL&#8217;s web site. Something like <a title="Maumoon" href="http://tinyurl.com/2adb9c" target="_blank">this (Maumoon One)</a> ( Don&#8217;t laugh too much keke ).</p>
<p>Damn it was fun&#8230; haha and regarding vista crack I was laughing to death&#8230; Finally something to do after olevel&#8217;s. Well I got few words for Raajje Online and that is &#8230;</p>
<p>Clean up ur staffs<br />
Stick up the notes<br />
Clean out the holes</p>
<p>PS: Tell all your friends that ROL&#8217;s Vista Crack Really works <img src='http://afxal.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> keke &#8230; <a title="Download Vista Crack" href="http://rol.net.mv/downloads/vista.zip" target="_blank">Click here to Download<br />
</a><em><strong> Shame on you ROL</strong></em></p>
<p><strong>UPDATE:</strong><br />
They have removed the crack plus all the warez. <img src='http://afxal.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Now thats called power of blogging&#8230;<br />
Oh and I didn&#8217;t take a screen shot damn&#8230; but heres one from a friend <img src='http://afxal.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .. <a href="http://afxal.com/wp-content/uploads/2008/10/rol_download_folder.jpg"><img class="alignnone size-medium wp-image-27" title="rol_download_folder" src="http://afxal.com/wp-content/uploads/2008/10/rol_download_folder-300x199.jpg" alt="" width="300" height="199" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://afxal.com/2007/11/13/shame-on-maldivian-isp-rol/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Get your @live.com ID, Yes its out</title>
		<link>http://afxal.com/2007/11/09/get-your-livecom-id-yes-its-out/</link>
		<comments>http://afxal.com/2007/11/09/get-your-livecom-id-yes-its-out/#comments</comments>
		<pubDate>Fri, 09 Nov 2007 18:54:54 +0000</pubDate>
		<dc:creator>afu</dc:creator>
		
		<category><![CDATA[Internet]]></category>

		<category><![CDATA[Live]]></category>

		<category><![CDATA[Microsoft]]></category>

		<category><![CDATA[livemail]]></category>

		<category><![CDATA[windows live mail]]></category>

		<guid isPermaLink="false">http://afxal.com/2007/11/09/get-your-livecom-id-yes-its-out/</guid>
		<description><![CDATA[
After one year running on beta &#8220;@live&#8221; accounts are available. First it was opened for USA &#38; China in 7th of November. Now its available worldwide, but yet its not officially announced by Microsoft.
Live application such as Windows Live Desktop also has dropped from beta. With all new features such as Blogging and sharing pictures [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://afxal.com/wp-content/uploads/2007/11/livecom-is-out-afxalcom.gif" title="@live accounts are out"><img src="http://afxal.com/wp-content/uploads/2007/11/livecom-is-out-afxalcom.thumbnail.gif" alt="@live accounts are out" /></a><br />
After one year running on beta &#8220;@live&#8221; accounts are available. First it was opened for USA &amp; China in 7th of November. Now its available worldwide, but yet its not officially announced by Microsoft.</p>
<p>Live application such as Windows Live Desktop also has dropped from beta. With all new features such as Blogging and sharing pictures arent gonna change your mind for Gmail. But it can combine your Yahoo and Gmail. Yeh and it also includes posting pictures directly  to Flickr. The features are not that bad, but could be improved or worsen. Apparently the online nature of Windows Live Mail is slow and no change has been brought to it yet. New features on Windows Live Mail are expected to be seen with the official launching of @live mail.</p>
<p>Guys its time to start with a fresh mail stop entering numbers before and after your mail, get your mail before some one takes it out ;). Feel fresh Live is out.</p>
<p>But how can I leave Gmail ;).</p>
<p><a href="http://get.live.com/mail/options" target="_blank">Click here to get You@Live.Com</a></p>
<p><a href="http://get.live.com/WL/desktop" title="Live Desktop">Click here to get Windows Live Desktop </a></p>
]]></content:encoded>
			<wfw:commentRss>http://afxal.com/2007/11/09/get-your-livecom-id-yes-its-out/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Tool Behind 29th September Bomb Attack</title>
		<link>http://afxal.com/2007/10/18/the-tool-behind-29th-september-bomb-attack/</link>
		<comments>http://afxal.com/2007/10/18/the-tool-behind-29th-september-bomb-attack/#comments</comments>
		<pubDate>Thu, 18 Oct 2007 05:05:23 +0000</pubDate>
		<dc:creator>afu</dc:creator>
		
		<category><![CDATA[Videos]]></category>

		<guid isPermaLink="false">http://afxal.com/2007/10/18/the-tool-behind-29th-september-bomb-attack/</guid>
		<description><![CDATA[Here is a video from metacafe. Am sure the terrorists used this video as a source and as a tool to make the bomb. Although this shows how to launch fireworks but the same concept was applied in September 29th attacks in Maldives. Check it out ;).
 
]]></description>
			<content:encoded><![CDATA[<p>Here is a video from metacafe. Am sure the terrorists used this video as a source and as a tool to make the bomb. Although this shows how to launch fireworks but the same concept was applied in September 29th attacks in Maldives. Check it out ;).</p>
<p><embed src="http://www.metacafe.com/fplayer/692380/make_a_firework_launcher.swf" width="400" height="345" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"> </embed></p>
]]></content:encoded>
			<wfw:commentRss>http://afxal.com/2007/10/18/the-tool-behind-29th-september-bomb-attack/feed/</wfw:commentRss>
		</item>
		<item>
		<title>MvBlogs Application For FaceBook !!!</title>
		<link>http://afxal.com/2007/10/17/mvblogs-application-for-facebook/</link>
		<comments>http://afxal.com/2007/10/17/mvblogs-application-for-facebook/#comments</comments>
		<pubDate>Wed, 17 Oct 2007 07:29:03 +0000</pubDate>
		<dc:creator>afu</dc:creator>
		
		<category><![CDATA[Facebook]]></category>

		<guid isPermaLink="false">http://afxal.com/2007/10/17/mvblogs-application-for-facebook/</guid>
		<description><![CDATA[First of all sorry for not updating my blog&#8230; Im just too bxy with my studies&#8230; Any how some thing else caught my eyes these days.. Yeh its Facebook where I get to meet every one I knw and knw what they are doing..bla bla&#8230;
Face book has its own concept which makes it different from [...]]]></description>
			<content:encoded><![CDATA[<p>First of all sorry for not updating my blog&#8230; Im just too bxy with my studies&#8230; Any how some thing else caught my eyes these days.. Yeh its Facebook where I get to meet every one I knw and knw what they are doing..bla bla&#8230;</p>
<p>Face book has its own concept which makes it different from other social networks such as Hi5 and myspace. Nevertheless they have their own platform of developing what we call FaceBook apps. I have tested face book application concept few weeks back which was very easy. And started my work last night, basically the application would read all the latest blog posts in Mv Blogs(through RSS) and display them in facebook. I nearly spend 4hrs on this.</p>
<p><strong>How can this app help you:</strong><br />
You may display the latest feeds on your profile.<br />
Share the blog posts with your friends.</p>
<p>And one more thing. MvBlogs RSS feeds does not have flickr links, so flickr guys sorry <img src='http://afxal.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> (but keep them flicking the pics are awsome) ;). So I guess you still have to use mvblogs.org for flickr pix :).</p>
<p>Thats all my application would enable you to enjoy FaceBooking while blogging at the same time.</p>
<p>Ok lemme make this short <img src='http://afxal.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><span style="text-decoration: line-through;"><a title="FaceBook App For MVBLOGS" href="http://apps.facebook.com/mvblogs/" target="_blank">http://apps.facebook.com/mvblogs/</a></span></p>
<p>Requirements:<br />
Eyes &amp; Head  <img src='http://afxal.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://afxal.com/2007/10/17/mvblogs-application-for-facebook/feed/</wfw:commentRss>
		</item>
		<item>
		<title>One line of CSS and HTML can crash IE 6</title>
		<link>http://afxal.com/2007/08/07/one-line-of-css-and-html-can-crash-ie-6/</link>
		<comments>http://afxal.com/2007/08/07/one-line-of-css-and-html-can-crash-ie-6/#comments</comments>
		<pubDate>Tue, 07 Aug 2007 11:27:22 +0000</pubDate>
		<dc:creator>afu</dc:creator>
		
		<category><![CDATA[CSS]]></category>

		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://afxal.com/2007/08/07/one-line-of-css-and-html-can-crash-ie-6/</guid>
		<description><![CDATA[Internet Explorer 6 is one of the worst browsers out there. Most of the Maldivians use it, thus they doesn&#8217;t realize how painful browser IE is. IE it self is full of bugs, each and every day they have security patches and this is the most targeted browser by hackers. Addons, toolbars and so on [...]]]></description>
			<content:encoded><![CDATA[<p>Internet Explorer 6 is one of the worst browsers out there. Most of the Maldivians use it, thus they doesn&#8217;t realize how painful browser IE is. IE it self is full of bugs, each and every day they have security patches and this is the most targeted browser by hackers. Addons, toolbars and so on will create high impact on the computer. It would slow your pc.</p>
<p>Recently a Japanese Blogger named <a href="http://d.hatena.ne.jp/Hamachiya2/20070804/browser_crasher" title="HAMACHITA2" target="_blank">Hamachiya2</a> has discovered that IE6 can easily be crashed by one line of css and html. With this  code &#8221; &lt;style&gt;*{position:relative}&lt;/style&gt;&lt;table&gt;&lt;input&gt;&lt;/table&gt; &#8221; IE6 will crash immediately. I would highly recommend all of you to use FIREFOX, although the new IE 7 is also kinda ok.</p>
<p>Here is a preview check it out in IE 6 <a href="http://www.afxal.com/ie6flow.html" title="IE 6 FLOW">Click Here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://afxal.com/2007/08/07/one-line-of-css-and-html-can-crash-ie-6/feed/</wfw:commentRss>
		</item>
		<item>
		<title>&#8220;iPhone&#8221;, a piece of crap?</title>
		<link>http://afxal.com/2007/06/28/iphone-a-piece-of-crap/</link>
		<comments>http://afxal.com/2007/06/28/iphone-a-piece-of-crap/#comments</comments>
		<pubDate>Thu, 28 Jun 2007 10:04:15 +0000</pubDate>
		<dc:creator>afu</dc:creator>
		
		<category><![CDATA[Mobile]]></category>

		<guid isPermaLink="false">http://afxal.com/2007/06/28/iphone-a-piece-of-crap/</guid>
		<description><![CDATA[First of all I am using Nokia n95. Above all it’s the best in the market for now. And features multiple powers a mobile can have. Small in size, sexy in hand n95 has the best camera quality. With dvd quality video and tv output its known to be the “Perfect Mobile”. A perfect music [...]]]></description>
			<content:encoded><![CDATA[<p>First of all I am using Nokia n95. Above all it’s the best in the market for now. And features multiple powers a mobile can have. Small in size, sexy in hand n95 has the best camera quality. With dvd quality video and tv output its known to be the “Perfect Mobile”. A perfect music player and VOIP what else can I get. Moreover the first Nokia’s GPS phone which supports lots of areas around the world but unfortunately it doesn’t support <st1:country-region w:st="on">Maldives</st1:country-region>, and no maps of <st1:place w:st="on"><st1:country-region w:st="on">Maldives</st1:country-region></st1:place> are included in its GPS system.</p>
<p class="MsoNormal">Apple’s “iPhone” is dated to be released tomorrow. It’s a phone every one is talking about. But it’s not worth to buy one. iPhone has a 2 mega pixel camera which doesn’t include any specialty such as “Carl Zeiss” or “Cyber shot” features. In the other hand nokia n95 provides you the best image quality optimized with Carl Zeiss. Moreover the unbeatable VOIP technology in nokia n95 is just one touch away from you. The word “MMS” is not found in iPhone it self.</p>
<p class="MsoNormal">Compared to n95, iPhone enables you to watch YOUTUBE videos, and it includes an improved music player and its having graphical interface you will fall in love with ;).</p>
<p class="MsoNormal">But in general iPhone its self needs the word “improvement”, improvement before it reaches the customers. I think it needs to enable users to interact with their daily life. And it needs quality in phone it self.</p>
<p class="MsoNormal"><a href="http://afxal.com/wp-content/uploads/2007/06/iphone.jpg" title="iPhone"><img src="http://afxal.com/wp-content/uploads/2007/06/iphone.jpg" alt="iPhone" /></a></p>
<p class="MsoNormal"><o:p>^Image taken from <a href="http://n95blog.com/" title="http://n95blog.com/" target="_blank">http://n95blog.com/</a><br />
</o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
]]></content:encoded>
			<wfw:commentRss>http://afxal.com/2007/06/28/iphone-a-piece-of-crap/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Is ROL trying to fool us again?</title>
		<link>http://afxal.com/2007/06/16/is-rol-trying-to-fool-us-again/</link>
		<comments>http://afxal.com/2007/06/16/is-rol-trying-to-fool-us-again/#comments</comments>
		<pubDate>Sat, 16 Jun 2007 18:44:49 +0000</pubDate>
		<dc:creator>afu</dc:creator>
		
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://afxal.com/2007/06/16/is-rol-trying-to-fool-us-again/</guid>
		<description><![CDATA[It seems Raaje Online (ROL) is going to introduce a new internet package named to be ROL MEGA PIPE. According to their ads in Haveeru Online it seems that finally ROL feels that their customers are unsatisfied.

&#8220;We will let you enjoy broadband internet the way it meant to be&#8221;

So the question arises whether it’s the [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal">It seems Raaje Online (ROL) is going to introduce a new internet package named to be ROL MEGA PIPE. According to their ads in Haveeru Online it seems that finally ROL feels that their customers are unsatisfied.</p>
<p class="MsoNormal">
<p class="MsoNormal">&#8220;We will let you enjoy broadband internet the way it meant to be&#8221;</p>
<p class="MsoNormal">
<p class="MsoNormal">So the question arises whether it’s the best time to introduce the new package or is it just the competition against Dhiraagu. Dhiraagu has also introduced a new package but in limited terms as bandwidth is only 3 GB. Yeh we all know ROL doesn’t have bandwidth issues but yes the difference arises in speed and the services given by both of these companies. So my question is this the time? Well NO. Furthermore the quotes on the ads also indirectly tell us that they haven’t been giving good service to the users.</p>
<p>They have already fooled us the customers previously. After the submarine cable came we all thought the speed would make a difference. But no, a week after they have installed the upgrades the speed was like heaven for a normal customer like me. I’ve received around 60-80 kbps. And again they had failed to protect their promise and after few weeks the speed went down to 30 kbps. So this means finally the SUBMARINE CABLE drama is still on show. <img src='http://afxal.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Ok so what’s next? What’s with this new package mega pipe? Is it an upgrade for the 650/- package users or is it a new package where the price is double. I’ve also given a ring to them today to get more info but unfortunately was unable to get any info on the new package. So my question remains are they attempting<span style="font-size: 12pt; font-family: 'Times New Roman';"> </span> to fool us again.</p>
<p class="MsoNormal">Oh yeh the ad is edited below <img src='http://afxal.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> \/</p>
]]></content:encoded>
			<wfw:commentRss>http://afxal.com/2007/06/16/is-rol-trying-to-fool-us-again/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Gmail Theater: Why Use Gmail?</title>
		<link>http://afxal.com/2007/05/24/gmail-theater-why-use-gmail/</link>
		<comments>http://afxal.com/2007/05/24/gmail-theater-why-use-gmail/#comments</comments>
		<pubDate>Thu, 24 May 2007 14:43:12 +0000</pubDate>
		<dc:creator>afu</dc:creator>
		
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://afxal.com/?p=5</guid>
		<description><![CDATA[This is an awesome ad by Google theater. This shows their enthusiasm in providing good facility for users with the best technology. Check it out &#8230; and yeh the first scene is kwl &#8230; you will laugh to death  . And oh yeh they have increased the 20mb attachment too&#8230; so no worries attach [...]]]></description>
			<content:encoded><![CDATA[<p>This is an awesome ad by Google theater. This shows their enthusiasm in providing good facility for users with the best technology. Check it out &#8230; and yeh the first scene is kwl &#8230; you will laugh to death <img src='http://afxal.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> . And oh yeh they have increased the 20mb attachment too&#8230; so no worries attach your songs too kwl huh <img src='http://afxal.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> . Hehe and by the way I am an satisfied google customer and I have the following video by gmail theater check it out.</p>
<p><a href="http://www.youtube.com/watch?v=uBbmiQhuAhU" title="Chck it out">Click here (YOUTUBE)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://afxal.com/2007/05/24/gmail-theater-why-use-gmail/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
