<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="en">
<title>Mark Wilcox&#039;s Forum Nokia Blog</title> 
<subtitle type="html">&lt;p&gt;Random musings on mobile software development...&lt;/p&gt;
</subtitle>
 
<updated>2008-08-07T11:45:16+03:00</updated> 
<id>http://www.lifetype.net,1.2/</id>
<link rel="alternate" type="text/html"  hreflang="en" href="http://blogs.forum.nokia.com/blog/mark-wilcoxs-forum-nokia-blog" />
 
<rights>Copyright (c) Sorcery-ltd</rights>
<generator uri="http://www.lifetype.net/" version="1.2">LifeType at Forum Nokia</generator> 
 
<entry> 
<title>S60 Under-engineered?</title>
<link rel="alternate" type="text/html" href="http://blogs.forum.nokia.com/blog/mark-wilcoxs-forum-nokia-blog/2008/08/07/s60-under-engineered" /> 
<id>tag:blogs.forum.nokia.com,2008-08-07:1677</id>
 
<updated>2008-08-07T11:45:16+03:00</updated> 
<published>2008-08-07T11:45:16+03:00</published> 
<summary type="html"> 
Having quoted a Nokia employee in my  recent blog post , saying that open sourcing S60 was like spreading manure out on a field, I thought I&#039;d share my latest insight with you.&amp;nbsp; I&#039;m ...</summary> 
<author> 
 
<name>Sorcery-ltd</name> 
<uri>http://blogs.forum.nokia.com/blog/mark-wilcoxs-forum-nokia-blog</uri> 
</author> 
<dc:subject>
General 
S60 
Symbian C++ 
Testing 
</dc:subject> 
<content type="text/html" xml:lang="en" xml:base="http://blogs.forum.nokia.com/blog/mark-wilcoxs-forum-nokia-blog"> 
&lt;p&gt;
Having quoted a Nokia employee in my &lt;a href=&quot;http://blogs.forum.nokia.com/blog/mark-wilcoxs-forum-nokia-blog/general/2008/07/18/symbian-foundation-implications&quot; target=&quot;_blank&quot;&gt;recent blog post&lt;/a&gt;, saying that open sourcing S60 was like spreading manure out on a field, I thought I&#039;d share my latest insight with you.&amp;nbsp; I&#039;m reading &lt;a href=&quot;http://www.industriallogic.com/xp/refactoring/&quot; target=&quot;_blank&quot;&gt;&amp;quot;Refactoring to Patterns&amp;quot; by Joshua Kerievsky&lt;/a&gt;; so far, it&#039;s excellent.&amp;nbsp; While I was reading his description of an under-engineered system, S60 immediately sprang to mind - see if you agree:
&lt;/p&gt;
&lt;blockquote&gt;
	&lt;p&gt;
	&amp;quot;...While systems you&#039;ve worked on may not be so gruesome, it&#039;s likely you&#039;ve done some under-engineering.&amp;nbsp; I know I have.&amp;nbsp; There&#039;s simply an overwhelming urge to get code working quickly, and it&#039;s often coupled with powerful forces that impede our ability to improve the design of our existing code.&amp;nbsp; In some cases, we consciously don&#039;t improve code because we know (or think we know) it won&#039;t have a long shelf life.&amp;nbsp; Other times, we&#039;re compelled to not improve our code because well-meaning managers explain that our organization will be more competitive and successful if we &amp;quot;don&#039;t fix what ain&#039;t broke.&amp;quot;
	&lt;/p&gt;
	&lt;p&gt;
	Continuous under-engineering leads to the &#039;fast, slow, slower&#039; rhythm of software development, which goes something like this:
	&lt;/p&gt;
	&lt;p&gt;
	1. You quickly deliver release 1.0 of a system with junky code.
	&lt;/p&gt;
	&lt;p&gt;
	2. You deliver release 2.0 of the system, and the junky code slows you down.
	&lt;/p&gt;
	&lt;p&gt;
	3. As you attempt to deliver future releases, you go slower and slower as the junky code multiplies, until people lose faith in the system, the programmers, and even the process that got everyone into this position.
	&lt;/p&gt;
	&lt;p&gt;
	4. Somewhere during or after release 4.0, you realize you can&#039;t win.&amp;nbsp; You begin exploring the option of a total rewrite.&amp;quot;
	&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
So, first S60 phone released mid-2003 following fast and successful development project.&amp;nbsp; S60 2.0 (2nd Edition) ships in the 4th quarter of 2004, a bit less than 18 months later.&amp;nbsp; S60 3.0 (3rd Edition) ships at the end of the first quarter in 2006, more than 2 years later following a major struggle to add platform security and move to a new Symbian kernel.&amp;nbsp; Will we get the next major release (5th Edition as 4th is skipped, supposedly because 4 is an unlucky number in some cultures) in our hands before 2009?&amp;nbsp; And during this development Nokia are planning to completely switch the development model to open source and are clearly considering starting again, although they don&#039;t have time to write a new framework from scratch so they bought Qt!&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
Is this a fair representation of what&#039;s happened?&amp;nbsp; Comments welcome!
&lt;/p&gt;
&lt;p&gt;
Everyone is making a big fuss of the iPhone but it&#039;s at step 1 (the 3G version really doesn&#039;t add enough to be considered step 2 in my opinion), while S60 is at step 4.&amp;nbsp; Are Apple going to do better, only time will tell. 
&lt;/p&gt;
&lt;p&gt;
Of course Joshua Kerievsky suggests a solution to this under-engineering problem - Test-Driven Development (TDD) and continuous refactoring.&amp;nbsp; There are plenty of teams in Nokia and Symbian who are already using these practices.&amp;nbsp; However, there&#039;s another issue that prevents major re-design that is specific to open systems - binary and source compatibility guarantees.&amp;nbsp; The developers of the code can&#039;t refactor everything they&#039;d like to because they don&#039;t actually know who else is using the interfaces and how; they&#039;ve just promised not to change it.&amp;nbsp; What&#039;s the solution to this?&amp;nbsp; It seems the one we&#039;re most likely to get is parallel interfaces.&amp;nbsp; Leave the old ones as they are and add new ones alongside them.&amp;nbsp; Only add new features to the new interfaces so that developers eventually have to migrate anyway.&amp;nbsp; This means we end up with an increasingly bloated code-base, carrying the remnants of old releases around almost forever (a bit like Windows really).&amp;nbsp; Is there a better way?&amp;nbsp; Or are all successful systems doomed to follow this course?
&lt;/p&gt;
&lt;p&gt;
I&#039;d love to know your thoughts on this.
&lt;/p&gt;
&lt;p&gt;
Mark
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt; 
</content> 
</entry> 
 
<entry> 
<title>Symbian Signed - a proposal</title>
<link rel="alternate" type="text/html" href="http://blogs.forum.nokia.com/blog/mark-wilcoxs-forum-nokia-blog/2008/05/29/symbian-signed-a-proposal" /> 
<id>tag:blogs.forum.nokia.com,2008-05-29:1557</id>
 
<updated>2008-05-29T22:20:19+03:00</updated> 
<published>2008-05-29T22:20:19+03:00</published> 
<summary type="html"> 
OK, so it&#039;s easy to criticise Symbian Signed but they have been improving things.&amp;nbsp; I still think there&#039;s further to go so here&#039;s my simple proposal for the next step.
 
 
I&#039;ll call it ...</summary> 
<author> 
 
<name>Sorcery-ltd</name> 
<uri>http://blogs.forum.nokia.com/blog/mark-wilcoxs-forum-nokia-blog</uri> 
</author> 
<dc:subject>
General 
S60 
Symbian C++ 
Testing 
</dc:subject> 
<content type="text/html" xml:lang="en" xml:base="http://blogs.forum.nokia.com/blog/mark-wilcoxs-forum-nokia-blog"> 
&lt;p&gt;
OK, so it&#039;s easy to criticise Symbian Signed but they have been improving things.&amp;nbsp; I still think there&#039;s further to go so here&#039;s my simple proposal for the next step.
&lt;/p&gt;
&lt;p&gt;
I&#039;ll call it Free Signed.
&lt;/p&gt;
&lt;p&gt;
Free Signed is just like Express Signed except that it&#039;s free and there&#039;re no test criteria.
&lt;/p&gt;
&lt;p&gt;
Here are the compromises I&#039;d suggest:
&lt;/p&gt;
&lt;ol&gt;
	&lt;li&gt;Like Express Signed, you can&#039;t access the most sensitive capabilities with it - there really are good reasons why the developers need to be trusted for those. &lt;/li&gt;
	&lt;li&gt;You still need a publisher ID (or someone with one) to sign your application - without some kind of chain of identity verification there can be no trust, without trust there is no security model.&lt;/li&gt;
	&lt;li&gt;All applications that go through Free Signed have to have a warning box on installation that says they aren&#039;t Symbian Certified, you are installing the application at your own risk and if you have any problems with your device after installation then you should remove the application and/or contact the supplier before contacting your device vendor or network operator.&amp;nbsp; This could be just a text file in the SIS initially but later enforced by the software installer in new device firmware.&amp;nbsp; For the text file option this could be spot checked and anyone omitting it could have their publisher ID blocked. &lt;/li&gt;
	&lt;li&gt;(Implied by 3) Free Signed is identifiable by the certificate such that software distributors can set a policy on the signing methods that they will allow.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;
I think this method could replace a lot of the current usage of Open Signed (although I see no reason to remove that option) and could be very useful for freeware and open source, friendly user and public trials for commercial software and also in future, internal projects in large organisations (for whom mobile will become a growing part of their IT strategy).
&lt;/p&gt;
&lt;p&gt;
To really make this work for freeware and open source though we&#039;d need a network of publisher certifiers.&amp;nbsp; I&#039;d suggest one ideal source of those are people who run popular blogs and websites about mobile applications - being able to supply installable copies of free applications could drive more traffic to their sites.&amp;nbsp; They get sent a copy of the application and test it anyway, if they have no major problems with it they can sign it for wider distribution.&amp;nbsp; There may also be other Forum Nokia Champions who are willing to do this and probably some staff at various companies in the Symbian ecosystem who also have a personal interest in the technology.
&lt;/p&gt;
&lt;p&gt;
The key issues would be zero or extremely limited cost and liability for the publisher certifiers.&amp;nbsp; They could sign something to say they would provide their best effort to help track down the originator of any malware or cracked application that they inadvertently sign.
&lt;/p&gt;
&lt;p&gt;
There - a dull post with no links, pictures or videos!&amp;nbsp; Just an idea.
&lt;/p&gt;
&lt;p&gt;
What do you think?
&lt;/p&gt;
&lt;p&gt;
Mark&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt; 
</content> 
</entry> 
 
<entry> 
<title>Application Quality &amp;amp; Numpty Physics</title>
<link rel="alternate" type="text/html" href="http://blogs.forum.nokia.com/blog/mark-wilcoxs-forum-nokia-blog/2008/05/24/application-quality-numpty-physics" /> 
<id>tag:blogs.forum.nokia.com,2008-05-24:1538</id>
 
<updated>2008-05-24T16:28:42+03:00</updated> 
<published>2008-05-24T16:28:42+03:00</published> 
<summary type="html"> 
In my  last post  I talked about a  smart new S60 application  and its implications for Symbian Signing and platform security.&amp;nbsp; I said I&#039;d talk about the other part of Symbian Signing, ...</summary> 
<author> 
 
<name>Sorcery-ltd</name> 
<uri>http://blogs.forum.nokia.com/blog/mark-wilcoxs-forum-nokia-blog</uri> 
</author> 
<dc:subject>
General 
S60 
Symbian C++ 
Testing 
Maemo 
</dc:subject> 
<content type="text/html" xml:lang="en" xml:base="http://blogs.forum.nokia.com/blog/mark-wilcoxs-forum-nokia-blog"> 
&lt;p&gt;
In my &lt;a href=&quot;http://blogs.forum.nokia.com/blog/mark-wilcoxs-forum-nokia-blog/testing/2008/05/24/who-will-guard-the-guardians&quot;&gt;last post&lt;/a&gt; I talked about a &lt;a href=&quot;http://www.guardian-mobile.com/default.aspx&quot; target=&quot;_blank&quot;&gt;smart new S60 application&lt;/a&gt; and its implications for Symbian Signing and platform security.&amp;nbsp; I said I&#039;d talk about the other part of Symbian Signing, application quality, in my next post... so here it is already.
&lt;/p&gt;
&lt;p&gt;
My personal opinion is that what is currently Symbian Signed should have absolutely NOTHING to do with application quality.&amp;nbsp; It should be entirely about identity and trust. In addition to this I do believe there should be a signing program that is ALL about application quality.&amp;nbsp; Here&#039;s why, the current system basically assumes that there are developers and there are dumb users and nothing in between.&amp;nbsp; There is a quality gate that can actually prevent you from properly distributing many types of application.&amp;nbsp; In the real world there is a sliding scale of user knowledge from the very advanced power-user to those who&#039;ve never used a computer or smartphone beforeand have no idea what software really is or what it can do.&amp;nbsp; Where those different groups of users discover content is likely to be very different.&amp;nbsp; Software published in some places is unlikely to be found by anyone but the enthusiast - in this way the audience is somewhat self-selecting.&amp;nbsp; On the other hand, the Download client built into Nokia devices and operator portals should only carry content of an appropriate quality - otherwise there are likely to be serious customer service issues. 
&lt;/p&gt;
&lt;p&gt;
For open source and freeware developers, very often it is the advanced users that are in fact the alpha and beta testers.&amp;nbsp; You can&#039;t really rely on finding them all before you start testing - you just publish your first vaguely usable version and see who wants to play with it and what feedback they give.&amp;nbsp; That&#039;s one of the wonders of the internet - it seems there&#039;s almost always someone out there who&#039;s interested.&amp;nbsp; Release early and often is one of the major practices in the open source world. The current Symbian Signed program and criteria are incompatible with this practice.
&lt;/p&gt;
&lt;p&gt;
Now, to illustrate my point I want to use the example of my new favourite application on the N800 Internet tablet - &lt;a href=&quot;http://numptyphysics.garage.maemo.org/&quot; target=&quot;_blank&quot;&gt;Numpty Physics&lt;/a&gt;. It&#039;s based on the concept for the amazing &lt;a href=&quot;http://www.kloonigames.com/blog/games/crayon&quot; target=&quot;_blank&quot;&gt;Crayon Physics&lt;/a&gt;, here&#039;s a video showing the gameplay for the upcoming commercial version of that, Crayon Physics Deluxe: 
&lt;/p&gt;
&lt;p&gt;
&lt;object type=&quot;application/x-shockwave-flash&quot; width=&quot;450&quot; height=&quot;350&quot; data=&quot;http://www.youtube.com/v/QsTqspnvAaI&quot; id=&quot;ltVideoYouTube&quot;&gt;
	&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/QsTqspnvAaI&quot; /&gt;
	&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot; /&gt;
	&lt;param name=&quot;allowScriptAcess&quot; value=&quot;sameDomain&quot; /&gt;
	&lt;param name=&quot;quality&quot; value=&quot;best&quot; /&gt;
	&lt;param name=&quot;bgcolor&quot; value=&quot;#FFFFFF&quot; /&gt;
	&lt;param name=&quot;FlashVars&quot; value=&quot;playerMode=embedded&quot; /&gt;
&lt;/object&gt;
&lt;/p&gt;
&lt;p&gt;
Numpty Physics is listed as &amp;quot;The pearl&amp;quot; on &lt;a href=&quot;http://maemo.org/&quot; target=&quot;_blank&quot;&gt;Maemo.org&lt;/a&gt; as I write this (which basically means it&#039;s a lot of other people&#039;s favourite too) and it&#039;s publicly stated that it&#039;s only beta quality.&amp;nbsp; In fact I&#039;ve had it crash so badly I had to take the battery off and also the only way to quit is via the &#039;q&#039; key which is only available on an N810 - oops.&amp;nbsp; Do I care about these issues - no.&amp;nbsp; I love that I can play it now - I&#039;ll like it even more when it&#039;s finished.&amp;nbsp; If I had the time and inclination I could get involved and help improve it.&amp;nbsp; If I had to download an unsigned package and submit it to a signing portal would I have installed it and then got excited enough to think about getting involved in the project?&amp;nbsp; Almost certainly not.
&lt;/p&gt;
&lt;p&gt;
And that is really my point.&amp;nbsp; What open source and free software projects need are motivated users and developers to easily access them and give them a quick try.
&lt;/p&gt;
&lt;p&gt;
Signing an application just to enable it to be installed on any device should be both free and without restriction (except some kind of identity/trust chain).&amp;nbsp; I&#039;d be happy to sign other people&#039;s open source projects after fairly limited contact with them (because I can see the code after all - I&#039;m not at all so sure about closed source freeware, I&#039;d want to get to know the developer quite well first) if I didn&#039;t then have a legal responsibility for any harm they might do.&amp;nbsp; That responsibility has to rest with the end users that choose to install them.
&lt;/p&gt;
&lt;p&gt;
Application quality should be policed at the point of distribution.&amp;nbsp; That can certainly be via a central signing program, it just shouldn&#039;t be the same signing program that gates whether on not an application can be installed on a device at all.
&lt;/p&gt;
&lt;p&gt;
What about security for the end users?&amp;nbsp; Well, I think my last post showed that Symbian Signed doesn&#039;t really do much about that anyway.
&lt;/p&gt;
&lt;p&gt;
Any thoughts or suggestions?
&lt;/p&gt;
&lt;p&gt;
Mark
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt; 
</content> 
</entry> 
 
<entry> 
<title>Who will guard the guardians?</title>
<link rel="alternate" type="text/html" href="http://blogs.forum.nokia.com/blog/mark-wilcoxs-forum-nokia-blog/2008/05/24/who-will-guard-the-guardians" /> 
<id>tag:blogs.forum.nokia.com,2008-05-24:1537</id>
 
<updated>2008-05-24T14:15:34+03:00</updated> 
<published>2008-05-24T14:15:34+03:00</published> 
<summary type="html"> 
This is a dual purpose post.&amp;nbsp; First I want to highlight the brilliant work of one of my fellow  Forum Nokia Champions  - Marco Bellino of  Symbian Toys  fame.&amp;nbsp; His recently released ...</summary> 
<author> 
 
<name>Sorcery-ltd</name> 
<uri>http://blogs.forum.nokia.com/blog/mark-wilcoxs-forum-nokia-blog</uri> 
</author> 
<dc:subject>
General 
S60 
Symbian C++ 
Testing 
</dc:subject> 
<content type="text/html" xml:lang="en" xml:base="http://blogs.forum.nokia.com/blog/mark-wilcoxs-forum-nokia-blog"> 
&lt;p&gt;
This is a dual purpose post.&amp;nbsp; First I want to highlight the brilliant work of one of my fellow &lt;a href=&quot;http://www.forum.nokia.com/main/forum_nokia_champion/who_is_a_forum_nokia_champion.html&quot; target=&quot;_blank&quot;&gt;Forum Nokia Champions&lt;/a&gt; - Marco Bellino of &lt;a href=&quot;http://www.symbian-toys.com/&quot; target=&quot;_blank&quot;&gt;Symbian Toys&lt;/a&gt; fame.&amp;nbsp; His recently released application, &lt;a href=&quot;http://www.guardian-mobile.com/default.aspx&quot; target=&quot;_blank&quot;&gt;Guardian&lt;/a&gt;, is really impressive and I strongly recommend downloading it to check it out (and no I&#039;m not getting paid to say so!).
&lt;/p&gt;
&lt;p&gt;
&lt;a href=&quot;http://www.guardian-mobile.com/default.aspx&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://blogs.forum.nokia.com//data/blogs/resources/300018/bannerG.jpg&quot; alt=&quot;Guardian banner&quot; /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
Guardian is a complete security and anti-theft solution for your smartphone.&amp;nbsp; Here are the top features listed on the website:
&lt;/p&gt;
&lt;p&gt;
&lt;span&gt;
- Sim Changed notification through &lt;strong&gt;Invisible&lt;/strong&gt; sms&lt;br /&gt;
- &lt;strong&gt;Password Protection&lt;/strong&gt; of messaging, gallery, contacts or any other 
application&lt;br /&gt;
- &lt;strong&gt;GPS Localization&lt;/strong&gt; and &lt;strong&gt;Tracking&lt;/strong&gt; through GoogleMaps&lt;br /&gt;
- optimized for &lt;strong&gt;Low Memory&lt;/strong&gt; and &lt;strong&gt;Battery&lt;/strong&gt; consumption&lt;br /&gt;
- and MUCH more...&lt;/span&gt; 
&lt;/p&gt;
&lt;p&gt;
So, if someone steals your phone it can keep your personal data safe from access via the phone (it doesn&#039;t protect contents of the memory card being viewed in another device of course).&amp;nbsp; If you cancel your subscription and the theif puts a new SIM into the phone then it will send you an SMS (to another number of your choice) telling you the new phone number without any notification on the device.&amp;nbsp; Why would you want to know this?&amp;nbsp; Well it also has some very impressive remote control functionality.&amp;nbsp; You can send SMS messages to the stolen device and access contacts and messages (or delete them) without the new user having any idea this is happening.&amp;nbsp; You can also get the phone to send you its current location - GPS co-ordinates or Cell ID.&amp;nbsp; In the case of phones with GPS that can get a position fix, you even get a link to Google Maps back showing you exactly where your phone is.&amp;nbsp; The application auto-starts and runs invisibly in the background.&amp;nbsp; If you use it to protect itself then no-one can change the settings either.
&lt;/p&gt;
&lt;p&gt;
At the moment the remote control system is a little &amp;quot;techy&amp;quot; (see the &lt;a href=&quot;http://www.guardian-mobile.com/usage.pdf&quot; target=&quot;_blank&quot;&gt;user guide&lt;/a&gt; on the website for details) but Marco tells me he plans to improve this in the future with a remote control client application of some kind (maybe a Java ME app, or a web interface, or possibly both).
&lt;/p&gt;
&lt;p&gt;
I think this could be an extremely popular application for celebrities and anyone living in an area where phone theft is a big problem.&amp;nbsp; I could also see it being used by parents on their childrens&#039; devices.&amp;nbsp; They can not only track them when they&#039;re out longer than they should be but also spy on what messages they&#039;re sending and receiving.&amp;nbsp; All a bit &amp;quot;&lt;a href=&quot;http://en.wikipedia.org/wiki/Big_Brother_(1984)&quot; target=&quot;_blank&quot;&gt;big brother&lt;/a&gt;&amp;quot; (no, not the &lt;a href=&quot;http://en.wikipedia.org/wiki/Big_Brother_(TV_series)&quot; target=&quot;_blank&quot;&gt;TV show&lt;/a&gt;).
&lt;/p&gt;
&lt;p&gt;
What&#039;s the most impressive thing about all of this though?&amp;nbsp; It&#039;s all been done without using any restricted or device manufacturer capabilities!
&lt;/p&gt;
&lt;p&gt;
When I first tried it out I was convinced it must need TCB capability, or at the very least AllFiles, and possibly also NetworkControl.&amp;nbsp; Having thought about it a little though, I can see how it&#039;s all done without them.&amp;nbsp; This means that an application with this kind of functionality can be Express Signed and even distributed unsigned and then Open Signed by users (i.e. no traceability).
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;This brings me to the second part of my post - the implications of all this for security and Symbian Signing!&lt;/strong&gt;
&lt;/p&gt;
&lt;p&gt;
Another less benevolent application having this kind of functionality could be the worst kind of malware.&amp;nbsp; It can go through your contacts and send dowload links to itself to all your friends without you knowing.&amp;nbsp; The messages would come from you so they&#039;re quite likely to be trusted.&amp;nbsp; It can then delete all your contacts so you can&#039;t warn them or just lock you out of all the applications on your device (no reason to give you the option to enter a valid security code in malware).&amp;nbsp; It can also auto-start when you reboot your phone so your only option is likely to be re-flashing the device, otherwise it&#039;s a brick.&amp;nbsp; I expect similar malware could also make repeated call setup attempts and thus disrupt the network.&amp;nbsp; It can also send SMS to premium rate services (and probably also hide the reverse billed type coming back) so you don&#039;t notice what&#039;s happened until you get your bill (or run out of credit).&amp;nbsp; Additionally all of this functionality could be dormant in an otherwise useful application and only triggered by a message that is silently hidden away.&amp;nbsp; Also, what&#039;s to stop someone secretly tracking your location (at your expense) in the same way Guardian could be used by a parent? 
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;If all of this can be acheived without the most sensitive capabilities then what exactly is Symbian Signed protecting end users from and how?&lt;/strong&gt;
&lt;/p&gt;
&lt;p&gt;
Well, to get the widest distribution the malware would need to be Express Signed at least.&amp;nbsp; In that case a Publisher ID is needed and in theory at least it should then be possible to track down the developer.&amp;nbsp; In reality I doubt that serious malware author couldn&#039;t find a loophole to get access to a Publisher ID without revealing their real identity.&amp;nbsp; Or disguise their application as something useful and go through a publishing house that has less stringent ID checking than the trust center.
&lt;/p&gt;
&lt;p&gt;
Another possiblity is that Symbian Signed can revoke the certificate - but is that system actually in use?&amp;nbsp; Are there many (any) phones out there that enable a check?
&lt;/p&gt;
&lt;p&gt;
Guardian doesn&#039;t tell you about its capabilities when it&#039;s installed (although to be fair the user guide spells it out in full) and Symbian Signed no longer requires an application to do so.&amp;nbsp; It seems to me that this signing program is attempting to take some of the resposibility for security away from the end user.&amp;nbsp; Is that really possible?&amp;nbsp; I&#039;m not so sure.
&lt;/p&gt;
&lt;p&gt;
The other feature of Symbian Signed is policing application quality - more about that in my next post...&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
I think I might be in the market for a trustworthy Symbian anti-virus, or just a program that checks things like auto-start and the capabilities when I install and lets me make a decision about whether I trust the application (developer) enough to let it do what it wants (I don&#039;t really want to have to use Marco&#039;s &lt;a href=&quot;http://www.symbian-toys.com/sisxplorer.aspx&quot; target=&quot;_blank&quot;&gt;SisXplorer&lt;/a&gt; on everything I install). 
&lt;/p&gt;
&lt;p&gt;
Discussion on this topic is very much encouraged!
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
P.S. Actually I believe Guardian is technically a Symbian Signed failure.&amp;nbsp; It currently allows the user to protect the Telephone application and when that&#039;s in place you can&#039;t make emergency calls without entering the security code - a type approval failure for the phone.&amp;nbsp; I wouldn&#039;t suggest anything other than leaving Marco to release an update that fixes this though - in the mean time, just don&#039;t use the feature.
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt; 
</content> 
</entry> 
 
</feed>