<?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: The Messiah v2.0</title>
	<atom:link href="http://java-phones.com/freeware/the-messiah-v20/feed" rel="self" type="application/rss+xml" />
	<link>http://java-phones.com/freeware/the-messiah-v20</link>
	<description>Java Games And Application For Cell phone</description>
	<lastBuildDate>Sat, 17 Dec 2011 02:18:25 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Aviator</title>
		<link>http://java-phones.com/freeware/the-messiah-v20/comment-page-1#comment-25712</link>
		<dc:creator>Aviator</dc:creator>
		<pubDate>Sat, 28 Nov 2009 06:40:26 +0000</pubDate>
		<guid isPermaLink="false">http://java-phones.com/freeware/the-messiah-v20#comment-25712</guid>
		<description>Hey,thanks.........but I am currently having problem with recovering those files and it&#039;s eating up my phone&#039;s memory,how can I recover the files?The procedure described there is not working,e.g. original name of my folder was NEW,if I rename it back to NEW nothing happens,if I change its name to say NEWS and then make a folder named NEW(which is deleteable) still nothing,can u describe the full procedure please or any other freeware that I can get or way to change its first byte again so that my phone can detect it,I am using D750i

Thanks</description>
		<content:encoded><![CDATA[<p>Hey,thanks&#8230;&#8230;&#8230;but I am currently having problem with recovering those files and it&#8217;s eating up my phone&#8217;s memory,how can I recover the files?The procedure described there is not working,e.g. original name of my folder was NEW,if I rename it back to NEW nothing happens,if I change its name to say NEWS and then make a folder named NEW(which is deleteable) still nothing,can u describe the full procedure please or any other freeware that I can get or way to change its first byte again so that my phone can detect it,I am using D750i</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stk</title>
		<link>http://java-phones.com/freeware/the-messiah-v20/comment-page-1#comment-22602</link>
		<dc:creator>Stk</dc:creator>
		<pubDate>Sat, 04 Jul 2009 19:20:29 +0000</pubDate>
		<guid isPermaLink="false">http://java-phones.com/freeware/the-messiah-v20#comment-22602</guid>
		<description>Hi all,

I&#039;ve decompiled the &quot;Messiah v2.0&quot; jar and now I can say that this application doesn&#039;t secure your images..

Here you are the code snippet wich should secure the file :

    try
    {
      FileConnection localFileConnection1;
      Enumeration localEnumeration = (localFileConnection1 = (FileConnection)Connector.open(&quot;file://&quot; + this.b)).list(&quot;*&quot;, true);
      while (localEnumeration.hasMoreElements())
      {
        String str = (String)localEnumeration.nextElement();
        FileConnection localFileConnection2 = (FileConnection)Connector.open(&quot;file://&quot; + this.b + str);
        if ((str.charAt(str.length() - 1) != &#039;/&#039;) &amp;&amp; (str.charAt(str.length() - 1) != &#039;~&#039;))
        {
          byte[] arrayOfByte = new byte[1];
          DataInputStream localDataInputStream = null;
          DataOutputStream localDataOutputStream = null;
          (localDataInputStream = localFileConnection2.openDataInputStream()).read(arrayOfByte, 0, 1);
          arrayOfByte[0] = (byte)(arrayOfByte[0] ^ 0x6);
          localDataInputStream.close();
          (localDataOutputStream = localFileConnection2.openDataOutputStream()).write(arrayOfByte, 0, 1);
          localDataOutputStream.close();
          localFileConnection2.rename(str.substring(0, str.length()) + &quot;~&quot;);
          localFileConnection2.close();
        }
      }
      localFileConnection1.close();
      Display.getDisplay(this).setCurrent(this.k);
      return;
    }
    catch (IOException localIOException)
    {
      Display.getDisplay(this).setCurrent(this.j);
    }

It only change the first Byte of the file .....! 

How you can see no encryption has been done.. so everyone with a Hexadecimal Editor might recover the pictures that you consider secured.

Thanks for your attention..

bye!</description>
		<content:encoded><![CDATA[<p>Hi all,</p>
<p>I&#8217;ve decompiled the &#8220;Messiah v2.0&#8243; jar and now I can say that this application doesn&#8217;t secure your images..</p>
<p>Here you are the code snippet wich should secure the file :</p>
<p>    try<br />
    {<br />
      FileConnection localFileConnection1;<br />
      Enumeration localEnumeration = (localFileConnection1 = (FileConnection)Connector.open(&#8220;file://&#8221; + this.b)).list(&#8220;*&#8221;, true);<br />
      while (localEnumeration.hasMoreElements())<br />
      {<br />
        String str = (String)localEnumeration.nextElement();<br />
        FileConnection localFileConnection2 = (FileConnection)Connector.open(&#8220;file://&#8221; + this.b + str);<br />
        if ((str.charAt(str.length() &#8211; 1) != &#8216;/&#8217;) &amp;&amp; (str.charAt(str.length() &#8211; 1) != &#8216;~&#8217;))<br />
        {<br />
          byte[] arrayOfByte = new byte[1];<br />
          DataInputStream localDataInputStream = null;<br />
          DataOutputStream localDataOutputStream = null;<br />
          (localDataInputStream = localFileConnection2.openDataInputStream()).read(arrayOfByte, 0, 1);<br />
          arrayOfByte[0] = (byte)(arrayOfByte[0] ^ 0&#215;6);<br />
          localDataInputStream.close();<br />
          (localDataOutputStream = localFileConnection2.openDataOutputStream()).write(arrayOfByte, 0, 1);<br />
          localDataOutputStream.close();<br />
          localFileConnection2.rename(str.substring(0, str.length()) + &#8220;~&#8221;);<br />
          localFileConnection2.close();<br />
        }<br />
      }<br />
      localFileConnection1.close();<br />
      Display.getDisplay(this).setCurrent(this.k);<br />
      return;<br />
    }<br />
    catch (IOException localIOException)<br />
    {<br />
      Display.getDisplay(this).setCurrent(this.j);<br />
    }</p>
<p>It only change the first Byte of the file &#8230;..! </p>
<p>How you can see no encryption has been done.. so everyone with a Hexadecimal Editor might recover the pictures that you consider secured.</p>
<p>Thanks for your attention..</p>
<p>bye!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

