<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>Technology Consumerization</title>
	
	<link>http://consumerization.trendmicro.com</link>
	<description>Securing Your Journey to the Cloud</description>
	<lastBuildDate>Sun, 27 May 2012 23:39:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/trendconsumerization" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="trendconsumerization" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>To Jailbreak or Not to Jailbreak, That is the Question</title>
		<link>http://consumerization.trendmicro.com/to-jailbreak-or-not-to-jailbreak-that-is-the-question/</link>
		<comments>http://consumerization.trendmicro.com/to-jailbreak-or-not-to-jailbreak-that-is-the-question/#comments</comments>
		<pubDate>Mon, 21 May 2012 22:41:41 +0000</pubDate>
		<dc:creator>Vic Hargrave</dc:creator>
				<category><![CDATA[Consumerization]]></category>

		<guid isPermaLink="false">http://consumerization.trendmicro.com/?p=2012</guid>
		<description><![CDATA[Apple maintains tight control over its iOS software and hardware. There is no file system per se to which users have direct access, applications cannot easily communicate or collaborate with each other, you can only get apps from the App Store and so on. Apple has done this to ensure a high level of quality [...]]]></description>
			<content:encoded><![CDATA[<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fconsumerization.trendmicro.com%2Fto-jailbreak-or-not-to-jailbreak-that-is-the-question%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=recommend&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;height:30px;margin-top:5px;"></iframe><p>Apple maintains tight control over its iOS software and hardware. There is no file system per se to which users have direct access, applications cannot easily communicate or collaborate with each other, you can only get apps from the App Store and so on.</p>
<p>Apple has done this to ensure a high level of quality and uniform usability for its customers. The company also wants to maximize its iOS revenues by making sure that only apps it approves and hosts on the App Store can be downloaded and installed. As a side benefit to customers, all of these controls make the iOS a very secure mobile platform and a favorite in corporate environments.</p>
<p>For the most part, the iOS user community accepts this state of affairs. However, many other owners of iPhones and iPads have gotten tired of the stringent controls Apple places on their devices, limiting them from fully utilizing all iOS capabilities. Many users have decided to jailbreak their devices in order to unlock more of the features that iOS has to offer.</p>
<p><strong>What is Jailbreaking?</strong></p>
<p>Jailbreaking refers to the process whereby you can remove the controls and restrictions Apples has placed in iOS and you can use your device more like an Android, which does not have iOS style controls, or a personal computer.</p>
<p>Whether jailbreaking is something you do to your iPhone depends on what you want to accomplish, and whether you are willing and able to accept the risks.</p>
<p><strong>iOS Security Architecture Overview</strong></p>
<p>At this year&#8217;s RSA Security Conference 2012, I attended a lecture session on <em>iOS Security Fundamentals</em> given by security threat researchers <a href="http://www.trailofbits.com/" target="_blank">Dino Dai Zovi</a> and <a href="http://www.accuvant.com/capability/accuvant-labs" target="_blank">Charlie Miller</a>. The information in this section is a summary of the points they presented.</p>
<p>Jailbreaking an iOS device is a challenging obstacle course that requires considerable hacking skill and effort to conquer. It involves applying multiple exploits to poke holes through the several layers of security built into the operating system. Specifically, the iOS architecture includes these security elements:</p>
<ul>
<li><strong>Reduced attack surface.</strong> There are fewer apps to attack in iOS and consequently fewer bugs to exploit. Flash and Java are frequent attack targets on other operating systems but do not run on iOS. Many file types either cannot be rendered or are only supported to a limited degree. Not all features of PDF files, for example, are supported. There is no terminal shell (/bin/sh) nor the binaries that you can run in shells, like &#8220;ls&#8221;, &#8220;rm&#8221;, &#8220;cp&#8221;, &#8220;mv&#8221;, etc. That means you cannot run shell code exploits.</li>
<li><strong>Privilege separation.</strong> Most iOS processes run in a limited user privilege mode. You don&#8217;t get direct &#8220;<a href="http://kb.eukhost.com/what-does-root-access-mean/" target="_blank">root</a>&#8221; access, which on other operating systems lets you do anything you want to your computer.</li>
<li><strong>Code signing.</strong> All executable and applications must carry signatures certified by Apple. Signatures are validated whenever any executable or application is run on iOS. This is why you only can get apps from the App Store. Code signing makes it nearly impossible for attackers to upload and run remote apps on your iPhone.</li>
<li><strong>Non-executable memory.</strong> <a href="http://searchsecurity.techtarget.com/definition/buffer-overflow" target="_blank">Buffer overflow</a> is a hacking technique where an attacker injects malicious code into areas of memory allocated to store data that are outside the memory boundaries of a given application. Once there, this code can be executed beyond your control to damage files or steal data from your system. By contrast, iOS does not allow code to be executed from memory marked for data storage. In other words, data written to memory by an application cannot be executed.</li>
<li><strong>Address space layout randomization. </strong>Operating systems that load code and data into fixed, predetermined memory locations are more susceptible to buffer overflow since attackers know in advance where code and data will reside in memory. iOS puts code and data in random memory locations so attackers must guess where their code will run. Wrong guesses can cause the malicious code to crash, which is usually an irrecoverable situation.</li>
<li><strong>Sandboxing.</strong> Applications obtained from the App Store run in a restrictive sandbox that limits access to iOS system resources. Apps that are installed with iOS, like Safari, also run in a sandbox, but one that is less restrictive than the purchased application sandbox. These apps can open your address book, photos, movies, and so forth, but are prevented from other potentially damaging activities like sending SMS messages.</li>
</ul>
<p><strong>Benefits of Jailbreaking</strong></p>
<p>After reading the list of security protections offered by iOS, you might wonder why anyone would want to jailbreak their iPhone or iPad. There are, however, practical benefits to jailbreaking.</p>
<p>When you use your iPhone internationally, you are subject to roaming charges. For Internet access you can always use free Wi-Fi hotspots to hold down roaming charges, but free Wi-Fi is not as common in countries outside the US. You can unlock a jailbroken iPhone, allowing you to replace your original SIM with an inexpensive pay-as-you-go SIM that you purchase in the country you are visiting.</p>
<p>For an extra monthly charge, you can tether your iPhone to your notebook computer to give the latter Internet access in areas where there is either limited or expensive Wi-Fi. Alternatively, there are several apps that run on jailbroken iPhones that give you this same access for free.</p>
<p>Without jailbreaking, you have to use AT&amp;T or Verizon – assuming you are located in the US – as your carrier for your iPhone. But jailbreaking and unlocking your iPhone lets you use any 3G or 4G carrier.</p>
<p><strong>Risks with Jailbreaking</strong></p>
<p>The security risks of jailbreaking are huge. You give up all the considerable security protection the iOS normally provides. This leaves your iPhone or iPad more vulnerable to attack.</p>
<p>When you jailbreak your iOS device, you are never completely sure what the jailbreaking code is doing. For all you know, the code could be installing other malicious binaries. Don&#8217;t forget that by definition and practice the process of jailbreaking involves exploiting your iPhone in the first place.</p>
<p>If something goes wrong during the jailbreaking process, you automatically void your warranty with Apple. Don&#8217;t bother taking your hopelessly dorked up iPhone to Apple service, they will turn you away on the spot. That said, all you have to do to restore your iOS device to factory settings is connect to the computer that you use to back up iOS and go through a restore operation.</p>
<p>When it comes to updating your iOS software, you are kind of stuck. The act of updating will undo your jailbreak and you may have to wait for a while before a jailbreak for your new iOS version is released. You may have to forego iOS updating if you prefer using your iPhone in a jailbroken state.</p>
<p>So far Apple has not created any updates that intentionally damage jailbroken iOS devices. At the same time, since the company does not condone nor support the practice, it is unlikely they will give much consideration to the effect any given update has on these devices.</p>
<p><strong>Is Jaibreaking for You?</strong></p>
<p>Jailbreaking unlocks some interesting capabilities in iOS devices for users adventurous enough to try it. However, in my opinion, the security risks and inconvenience of jailbreaking outweigh the benefits. I haven’t jailbroken my own iPad nor am I likely to in the near future.</p>
<p>If you bring your iOS device into work you should check to see if your company has a policy prohibiting jailbroken devices from connecting to the company network. If your company has such a policy you will have to forgo jailbreaking or restore the original iOS software on your device to comply.</p>
<p>It’s wise to think twice before jailbreaking your iPhone or iPad.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fconsumerization.trendmicro.com%2Fto-jailbreak-or-not-to-jailbreak-that-is-the-question%2F&amp;title=To%20Jailbreak%20or%20Not%20to%20Jailbreak%2C%20That%20is%20the%20Question" id="wpa2a_4"><img src="http://consumerization.trendmicro.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fconsumerization.trendmicro.com%2Fto-jailbreak-or-not-to-jailbreak-that-is-the-question%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=recommend&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;height:30px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://consumerization.trendmicro.com/to-jailbreak-or-not-to-jailbreak-that-is-the-question/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Consumerization University – Day 1: Consumerization is disruptive</title>
		<link>http://consumerization.trendmicro.com/the-consumerization-university-day-1-consumerization-is-disruptive/</link>
		<comments>http://consumerization.trendmicro.com/the-consumerization-university-day-1-consumerization-is-disruptive/#comments</comments>
		<pubDate>Mon, 21 May 2012 11:00:08 +0000</pubDate>
		<dc:creator>Cesare Garlati</dc:creator>
				<category><![CDATA[BYOD]]></category>
		<category><![CDATA[Consumerization]]></category>
		<category><![CDATA[IT Trends]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Blackberry]]></category>
		<category><![CDATA[BringYourOwnIT.com]]></category>
		<category><![CDATA[Cesare Garlati]]></category>
		<category><![CDATA[Galaxy]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Mobile Device Management]]></category>
		<category><![CDATA[Mobile Security]]></category>
		<category><![CDATA[policy]]></category>
		<category><![CDATA[Privacy]]></category>
		<category><![CDATA[RIM]]></category>
		<category><![CDATA[Samsung]]></category>
		<category><![CDATA[Smartphones]]></category>
		<category><![CDATA[Tablets]]></category>

		<guid isPermaLink="false">http://consumerization.trendmicro.com/?p=1929</guid>
		<description><![CDATA[Video series based on Trend Micro session* at the Mobile World Congress 2012. What is consumerization? It&#8217;s probably the most disruptive trend for IT for the next 10 years, and it means two things for corporate IT. One, is that there is more and more consumer technology available that the enterprise can deploy with the [...]]]></description>
			<content:encoded><![CDATA[<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fconsumerization.trendmicro.com%2Fthe-consumerization-university-day-1-consumerization-is-disruptive%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=recommend&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;height:30px;margin-top:5px;"></iframe><p style="font-size: medium;font-weight: bold">Video series based on Trend Micro session* at the Mobile World Congress 2012.</p>
<p><a title="Watch Video " href="http://www.youtube.com/watch?v=8eBV8fqyezo" rel="http://www.youtube.com/watch?v=8eBV8fqyezo"><img class="alignleft  wp-image-1932" src="http://consumerization.trendmicro.com/wp-content/uploads/2012/05/MWC2012.1.png" alt="" width="313" height="238" /></a>What is consumerization?</p>
<p>It&#8217;s probably the most disruptive trend for IT for the next 10 years, and it means two things for corporate IT.</p>
<p>One, is that there is more and more consumer technology available that the enterprise can deploy with the internal customer base. There is mobile, but there are many other applications here that somehow have a space in the enterprise.</p>
<p>But probably, the second aspect, which is probably the more challenging for corporate IT, is the fact that this consumer technology is brought into the enterprise by the end users, which really represent a challenge, as we&#8217;ll see, because the IT process is not really designed to receive technology from outside. It&#8217;s designed to deploy technology internally.</p>
<p><a href="http://consumerization.trendmicro.com/wp-content/uploads/2012/05/Slide0.jpg">Download Slide #1</a>   *   <a href="http://consumerization.trendmicro.com/wp-content/uploads/2012/05/Slide1.jpg">Download Slide #2</a>   *   <a href="http://consumerization.trendmicro.com/wp-content/uploads/2012/05/Slide2.jpg">Download Slide #3</a>   *   <a href="http://consumerization.trendmicro.com/wp-content/uploads/2012/05/Slide3.jpg">Download Slide #4</a></p>
<p>&nbsp;</p>
<p><strong>COMING NEXT:</strong> <a href="http://consumerization.trendmicro.com/?p=2021">The Consumerization University &#8211; Day 2: Consumerization is real</a></p>
<p>&nbsp;</p>
<p><em>* Mobile Security Forum: &#8220;Consumer Mobile Technology in the Enterprise: A Leap of Faith?&#8221;</em></p>
<p><em>An increasing number of companies are opening corporate networks and data to consumer mobile devices, as employees demand to bring their own smartphones and tablets to work. However, consumer mobile technology is generally not as secure and manageable as required by the enterprise. And too many companies make the mistake of trying to stop the influx of consumer IT. What new mobile platforms will your organization contend with? What built-in security models do they provide? What vulnerabilities are they exposed to? How rigorous is the scrutiny of the official application markets? Is the corporate data stored in these devices safe? In this series, leading mobile security experts answer these questions and, more importantly, reveal solutions and best practices for your company to safely embrace consumer mobile technology in the enterprise.</em></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fconsumerization.trendmicro.com%2Fthe-consumerization-university-day-1-consumerization-is-disruptive%2F&amp;title=The%20Consumerization%20University%20%E2%80%93%20Day%201%3A%20Consumerization%20is%20disruptive" id="wpa2a_8"><img src="http://consumerization.trendmicro.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fconsumerization.trendmicro.com%2Fthe-consumerization-university-day-1-consumerization-is-disruptive%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=recommend&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;height:30px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://consumerization.trendmicro.com/the-consumerization-university-day-1-consumerization-is-disruptive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Most Important Preventive Measures to Secure Your Smartphone</title>
		<link>http://consumerization.trendmicro.com/the-most-important-preventive-measures-to-secure-your-smartphone/</link>
		<comments>http://consumerization.trendmicro.com/the-most-important-preventive-measures-to-secure-your-smartphone/#comments</comments>
		<pubDate>Wed, 16 May 2012 18:32:41 +0000</pubDate>
		<dc:creator>Aaron Lewis</dc:creator>
				<category><![CDATA[Consumerization]]></category>

		<guid isPermaLink="false">http://consumerization.trendmicro.com/?p=1898</guid>
		<description><![CDATA[I believe that most security risks in BYOD come from ‘non-malicious incompetence’ on the part of employees. It’s vital to educate them about how easily security can be compromised.  Sharing these four preventive measures can incent employees to help protect corporate data, as well as their own personal information. 1.     Control Access to Your Phone This [...]]]></description>
			<content:encoded><![CDATA[<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fconsumerization.trendmicro.com%2Fthe-most-important-preventive-measures-to-secure-your-smartphone%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=recommend&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;height:30px;margin-top:5px;"></iframe><p>I believe that most security risks in BYOD come from ‘non-malicious incompetence’ on the part of employees. It’s vital to educate them about how easily security can be compromised.  Sharing these four preventive measures can incent employees to help protect corporate data, as well as their own personal information.</p>
<p><strong>1.     </strong><strong>Control Access to Your Phone</strong></p>
<p>This is the simplest front line of defense.  While people don’t deliberately forget their phone in a public restroom, gym, or restaurant, we all know it happens. So, make sure you have the appropriate device lock in place, either a pin code, or screen pattern lock. If you have a pattern lock (this is where you join the dots to unlock your phone) make sure you wipe the screen to avoid leaving smudges that can reveal your pattern.</p>
<p>A number of social engineering attacks focus on getting physical access to your device either to install a malicious app or to read your data. If your phone has a removable SD memory card that is not encrypted, an attacker could remove it and read its data. Encrypting memory card data is important, either by using the capability of the device or using a third party encryption solution.</p>
<p>The company security policy requires this type of basic protection when you use your smartphone for work purposes.</p>
<p><strong>2.     </strong><strong>Be Wise About Downloading Applications</strong></p>
<p>There is great risk in downloading applications, more so if apps are “side loaded” or otherwise loaded from unapproved or unofficial marketplaces.</p>
<p>When you agree to download an app you will need to accept a list of permissions that grant capabilities to the application. For example an app may need to access your location data or your camera. Rogue apps, in the form of Trojans, may take advantage of these new permissions and you may unknowingly allow the application to access your camera, or your personal or corporate data without realizing it.</p>
<p>In addition, such malware applications can embed functions that allow your phone to make premium rate calls while you are playing a game, for example. You won’t know this until you receive a whopping bill at the end of the month and by then its too late.</p>
<p>The company’s BYOD policy outlines the type of personal applications that are acceptable and safe on your phone, and also specifies approved sources of applications.</p>
<p><strong>3.     </strong><strong>Think Before you Respond to Certain E-mail Messages</strong></p>
<p>In our hectic lives, the ability to access email while we’re on a train, or in the supermarket, is wonderfully convenient.  We tend to multitask and zip through email. Remember that the small screen of a smartphone makes it more difficult to detect possible phishing emails. Your bank’s email may look legitimate, but if you don’t have time to check it carefully, don’t respond or click on any links.  It’s much safer to wait until you can read it carefully.</p>
<p><strong><strong>4.     </strong>Understand and Accept the Benefits of Mobile Device Management Software</strong></p>
<p>The best way to protect your BYOD smartphone is through corporate-installed mobile device management software.  This can protect your device in a number of ways. For example it can detect if your phone’s SIM card has been changed, back up your data automatically, remotely wipe a lost phone, help recover a lost phone by using its GPS location or even command the phone to emit a really high pitched alarm to scare off a thief.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fconsumerization.trendmicro.com%2Fthe-most-important-preventive-measures-to-secure-your-smartphone%2F&amp;title=The%20Most%20Important%20Preventive%20Measures%20to%20Secure%20Your%20Smartphone" id="wpa2a_12"><img src="http://consumerization.trendmicro.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fconsumerization.trendmicro.com%2Fthe-most-important-preventive-measures-to-secure-your-smartphone%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=recommend&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;height:30px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://consumerization.trendmicro.com/the-most-important-preventive-measures-to-secure-your-smartphone/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Adapt, accept and manage: a BYOD mantra for corporate IT</title>
		<link>http://consumerization.trendmicro.com/a-byod-mantra-for-corporate-it/</link>
		<comments>http://consumerization.trendmicro.com/a-byod-mantra-for-corporate-it/#comments</comments>
		<pubDate>Tue, 15 May 2012 08:00:16 +0000</pubDate>
		<dc:creator>Cesare Garlati</dc:creator>
				<category><![CDATA[BYOD]]></category>
		<category><![CDATA[Consumerization]]></category>
		<category><![CDATA[Enterprise Mobility]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Blackberry]]></category>
		<category><![CDATA[BringYourOwnIT.com]]></category>
		<category><![CDATA[Cesare Garlati]]></category>
		<category><![CDATA[Configurator]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[MDM]]></category>
		<category><![CDATA[Mobile Device Management]]></category>
		<category><![CDATA[RIM]]></category>

		<guid isPermaLink="false">http://consumerization.trendmicro.com/?p=1902</guid>
		<description><![CDATA[Research In Motion and Apple: two firms with more contrasting current fortunes you could not wish to imagine. The once high-flying Canadian BlackBerry-maker, for so long the darling of IT managers and beloved of time-starved execs the world over, has lost its way as rivals from the consumer space start to eat into its core [...]]]></description>
			<content:encoded><![CDATA[<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fconsumerization.trendmicro.com%2Fa-byod-mantra-for-corporate-it%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=recommend&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;height:30px;margin-top:5px;"></iframe><p><strong>Research In Motion</strong> and <strong>Apple</strong>: two firms with more contrasting current fortunes you could not wish to imagine. The once high-flying Canadian BlackBerry-maker, for so long the darling of IT managers and beloved of time-starved execs the world over, has lost its way as rivals from the consumer space start to eat into its core enterprise business. Then there’s the phenomenon that is Apple, the Cupertino giant molded into the slick, stylish consumer success story it is today by the late Steve Jobs. You’re probably as likely in many organizations to see staff using an iPhone for work as a BlackBerry today, which makes two recent announcements from the tech giants all the more interesting for what they say about the firms’ respective strategies and what it all means for IT managers caught in the middle.</p>
<p>Let’s take Apple first. A company whose primary aim is to make beautiful products at high margins, it was 100 per cent focused on the consumer when its iOS-based iPhone burst onto the scene back in 2007. Since then, the Cupertino firm has released several more models, as well as market leading tablet the iPad and slowly appears to be rolling more <a href="http://bringyourownit.com/2012/04/04/safe-smartphone-android-ios-blackberry-windows-phone-attack/">enterprise-friendly features</a><sup>1</sup> into the platform.</p>
<p>Take, for example, volume purchases for businesses via the App Store – recently added capabilities designed to streamline the large-scale buying of applications for corporate users. Or how about the iPhone in Business and the iPad in Business web sites? Both are designed to attract the business user and showcase features which could appeal to those looking for a new corporate device. The latest much-touted announcement was the launch of the iPad Configurator: a new Mac app which enables admins to configure up to 30 devices at a time according to corporate requirements &#8211; but not to manage them remotely.</p>
<p>Sounds great, but don’t let this slow creeping of iOS functionality into the enterprise fool you into thinking Apple has suddenly become a business-friendly company. Sure, it is providing more capabilities now in its devices to make them easier to use and manage in the corporate sphere, but it will always be a consumer-focused firm. It’s just that it has made its products so user-friendly that everyone who buys one now also wants to use it at work.</p>
<p>If you’re in any doubt as to Apple’s primary focus, consider the iPad Configurator. It enables management of only up to 30 devices – not practical for any but the smallest of organizations – and is primarily designed for the IT department which has purchased its devices and has yet to dole them out, rather than one faced with the problem of managing existing user-bought devices. Then let’s think about Apple the company. Does it have enterprise sales and support staff? An enterprise sales platform? Does it clearly communicate its product roadmap so large scale and long-term purchasing plans can be drawn up by its business customers? The answer to all of these questions is not really, although sources indicate that Apple may be acquiring some enterprise sales staff from a well-known corporate tech vendor.</p>
<p>Yet despite the <a href="http://consumerization.trendmicro.com/consumerization-byod-jailbreak-apple-control-enterprise-primetime/">lack of Apple’s business credentials</a><sup>2</sup>, IT managers must evolve to meet the increasingly demanding needs of their users and the changing requirements of the role. Put simply, this means that they can no longer procure from a single enterprise vendor – they need to open up to multiple providers and be ready to accept and manage consumer devices. The good news is that there are vendors who can help fill the growing security and management holes that have appeared in this new mobile computing environment. One of them, perhaps surprisingly, is that old friend of the IT department, Research In Motion.</p>
<p>Now RIM has seen its business stall thanks in a large part to the success of the iPhone as well as the obvious challenge from Android. Recent Forrester research in fact place the three as having a roughly equal share of the workplace market. Unfortunately, instead of sticking to what it does best – providing  highly secure hardware and sophisticated management software – it tried to beat Google and Apple at their own game and entered the consumer space. The strategy hasn’t worked and the company lurches from one bad launch to another with profits and share price plummeting. However, it did something very smart in April – it launched an update to its BlackBerry Mobile Fusion server software which will allow admins to manage iOS and Android devices as well as BlackBerry.</p>
<p>Unlike Apple, which is resolutely homogenous – you won’t be able to use the iPad Configurator for any non-Apple device, for example – RIM has taken the bold step of admitting not everyone in the enterprise will use a BlackBerry. This is a genuine move in the right direction – not only is a focus on the software side of its business better for its margins but it also plays to the firm’s biggest strength, its market leading security and mobile device management capabilities.</p>
<p>It should also serve as a firm reminder to any IT managers still not sure <a href="http://bringyourownit.com/2011/06/28/consumerization-talks-with-ken-dulaney-vp-gartner-research/">how to respond to the disruptive force of consumerization</a><sup>3</sup>. 5If RIM can open itself up to interoperability with rival platforms, maybe they too should adopt a more open mindset when revising their corporate mobile device strategy.</p>
<p>The sands are rapidly shifting in enterprise IT but the quick witted IT professionals will understand that they are no longer a provider of technology for their company but a broker. It’s not for them to decide what mobile platforms to use but for their execs, line of business owners and end users to decide. IT’s new role is to engage as fully as possible with the requirements of the end users, find out where <a href="http://consumerization.trendmicro.com/byod-best-practices/">potential vulnerabilities</a><sup>4</sup> lie and make it happen. Sadly for RIM, there’s no going back to the old days now, but nor should the future be feared.</p>
<p>&nbsp;</p>
<p><strong>If you have evidence that Apple is finally getting serious with the Enterprise, I&#8217;d love to hear from you.</strong></p>
<p><strong>If you have evidence that RIM is finally opening up to consumer technology, I&#8217;d love to hear from you.</strong></p>
<p>&nbsp;</p>
<p>Reference<sup>1</sup> <em>How Secure is Your Smartphone? Android, iOS, BlackBerry and Windows Phone Under Attack </em><a href="http://bringyourownit.com/2012/04/04/safe-smartphone-android-ios-blackberry-windows-phone-attack/">http://bringyourownit.com/2012/04/04/safe-smartphone-android-ios-blackberry-windows-phone-attack/</a></p>
<p>Reference<sup>2</sup> <em>Jailbreaking BYOD Control. Is Apple iOS ready for enterprise primetime? </em><a href="http://consumerization.trendmicro.com/consumerization-byod-jailbreak-apple-control-enterprise-primetime/">http://consumerization.trendmicro.com/consumerization-byod-jailbreak-apple-control-enterprise-primetime/</a></p>
<p>Reference<sup>3</sup> <em>Consumerization Talks with Ken Dulaney, VP Gartner Research</em>. <a href="http://bringyourownit.com/2011/06/28/consumerization-talks-with-ken-dulaney-vp-gartner-research/">http://bringyourownit.com/2011/06/28/consumerization-talks-with-ken-dulaney-vp-gartner-research/</a></p>
<p>Reference<sup>4</sup> <em>BYOD Best Practices – Three pitfalls you can’t afford to ignore</em> <a href="http://consumerization.trendmicro.com/byod-best-practices/">http://consumerization.trendmicro.com/byod-best-practices/</a></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fconsumerization.trendmicro.com%2Fa-byod-mantra-for-corporate-it%2F&amp;title=Adapt%2C%20accept%20and%20manage%3A%20a%20BYOD%20mantra%20for%20corporate%20IT" id="wpa2a_16"><img src="http://consumerization.trendmicro.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fconsumerization.trendmicro.com%2Fa-byod-mantra-for-corporate-it%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=recommend&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;height:30px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://consumerization.trendmicro.com/a-byod-mantra-for-corporate-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BYOD Survey: How Other IT Managers are Regaining Control</title>
		<link>http://consumerization.trendmicro.com/byod-survey-how-other-it-managers-are-regaining-control/</link>
		<comments>http://consumerization.trendmicro.com/byod-survey-how-other-it-managers-are-regaining-control/#comments</comments>
		<pubDate>Mon, 07 May 2012 21:31:40 +0000</pubDate>
		<dc:creator>Majken Pullin</dc:creator>
				<category><![CDATA[BYOD]]></category>
		<category><![CDATA[Consumerization]]></category>
		<category><![CDATA[Technology Trends]]></category>

		<guid isPermaLink="false">http://consumerization.trendmicro.com/?p=1892</guid>
		<description><![CDATA[Regain control? Is that even possible? Yes! And there’s no better way than to talk to other IT managers to find out what they are doing about consumerization. What types of employee-owned mobile devices are they allowing on their corporate networks? And what are they doing to secure these devices? To get the answers you [...]]]></description>
			<content:encoded><![CDATA[<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fconsumerization.trendmicro.com%2Fbyod-survey-how-other-it-managers-are-regaining-control%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=recommend&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;height:30px;margin-top:5px;"></iframe><p>Regain control? Is that even possible? Yes! And there’s no better way than to talk to other IT managers to find out what they are doing about consumerization. What types of employee-owned mobile devices are they allowing on their corporate networks? And what are they doing to secure these devices? To get the answers you need, Trend Micro conducted an in-depth survey of IT administrators in the U.S., Japan, and Germany.  The <span style="text-decoration: underline;"><a href="http://www.trendmicro.com/cloud-content/us/pdfs/rpt_consumerization-survey-report.pdf" target="_blank">survey report</a></span> may surprise you.</p>
<p>Among companies that allow BYOD, 96% have at least one security measure in place to address consumerization—but that’s often not enough. The majority of respondents say a combination of mobile security and mobile device management (MDM) is most effective. The top three tools used to secure BYOD are security software, data loss prevention (DLP), and remote lock. Find out what other tools your peers recommend and learn about a full range of <a href="http://www.trendmicro.com/us/enterprise/challenges/it-consumerization/index.html" target="_blank">Trend Micro solutions</a>—from endpoint and mobile security, DLP, and encryption to data center and cloud security.</p>
<p>Check back this summer for more survey reports from Forrester and Decisive Analytics.</p>
<p>What are you doing to help gain control?</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fconsumerization.trendmicro.com%2Fbyod-survey-how-other-it-managers-are-regaining-control%2F&amp;title=BYOD%20Survey%3A%20How%20Other%20IT%20Managers%20are%20Regaining%20Control" id="wpa2a_20"><img src="http://consumerization.trendmicro.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fconsumerization.trendmicro.com%2Fbyod-survey-how-other-it-managers-are-regaining-control%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=recommend&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;height:30px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://consumerization.trendmicro.com/byod-survey-how-other-it-managers-are-regaining-control/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>BYOD Best Practices – Three pitfalls you can’t afford to ignore</title>
		<link>http://consumerization.trendmicro.com/byod-best-practices/</link>
		<comments>http://consumerization.trendmicro.com/byod-best-practices/#comments</comments>
		<pubDate>Mon, 30 Apr 2012 13:00:16 +0000</pubDate>
		<dc:creator>Cesare Garlati</dc:creator>
				<category><![CDATA[BYOD]]></category>
		<category><![CDATA[Consumerization]]></category>
		<category><![CDATA[Policy]]></category>
		<category><![CDATA[Privacy]]></category>
		<category><![CDATA[Cesare Garlati]]></category>
		<category><![CDATA[Mobile Device Management]]></category>
		<category><![CDATA[Mobile Security]]></category>
		<category><![CDATA[Policies]]></category>
		<category><![CDATA[Smartphones]]></category>
		<category><![CDATA[Tablets]]></category>

		<guid isPermaLink="false">http://consumerization.trendmicro.com/?p=1871</guid>
		<description><![CDATA[In a previous post1 I raised three pitfalls that your BYOD program cannot afford to ignore when allowing employees to use their personal devices for work: Remote deletion of personal data on an employee-owned device Tracking an individual’s location Monitoring an employee’s Internet access Based on my involvement with various BYOD projects and my ongoing [...]]]></description>
			<content:encoded><![CDATA[<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fconsumerization.trendmicro.com%2Fbyod-best-practices%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=recommend&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;height:30px;margin-top:5px;"></iframe><p>In a <a href="http://consumerization.trendmicro.com/consumerization-101-employee-privacy-vs-corporate-liability/">previous post</a><sup>1 </sup>I raised three pitfalls that your BYOD program cannot afford to ignore when allowing employees to use their personal devices for work:</p>
<ul>
<li>Remote deletion of personal data on an employee-owned device</li>
<li>Tracking an individual’s location</li>
<li>Monitoring an employee’s Internet access</li>
</ul>
<p>Based on my involvement with various <a href="http://bringyourownit.com/2011/08/13/embrace-consumerization-in-the-enterprise/">BYOD projects</a> and my ongoing conversations with many industry experts, here is my recommendation for three best practices that will allow you to strike the delicate balance between employee privacy and corporate liability :</p>
<p><strong>Have a Comprehensive, Clear Policy</strong> that explicitly<strong> </strong>covers these issues of data deletion, location tracking and Internet monitoring.</p>
<p>HR, Legal, and Communications should provide their expertise to create the actual document. This is not solely the IT department’s responsibility. It requires far more than a little box to check off, as you would when accepting a software user agreement. The details must be read, understood and signed off on. Employees must be trained.</p>
<p>To that point, the policy document must be in clear layperson language, and spell out <em>all</em> <a href="http://consumerization.trendmicro.com/consumerization-byod-privacy-personal-data-loss-and-device-seizure/">the bad things</a><sup>2</sup> that could happen to your device in a worst-case situation. For example: <em>If my smartphone/tablet is stolen, the company will remotely wipe any sensitive corporate data from it.  I understand and accept that there is potential risk to my personal data</em>.</p>
<p>The policy should cover possible confiscation of a personal device—if the company’s electronic communications and actual devices should be impounded during an E-Discovery legal case. Here, the company should state its position about replacing an employee’s personal device.</p>
<p>The company must be up-front in acknowledging <em>that in exchange for using the corporate network, IT will have the ability to locate your device at any time.</em></p>
<p>Finally<em>, with</em> respect to monitoring Internet activity, the policy should be exceedingly clear:  <em>Any data I access through the Internet when I am attached to the corporate network may be monitored and logged. The company has a responsibility not to divulge my personal information, unless there is criminal activity that the company would be obligated to report to authorities.</em></p>
<p><strong>Do Not Assume That One Policy Size Fits All Users </strong></p>
<p>Design your policy with the ability to tailor it for different groups of users and limit device control and user tracking to the minimum required by your company’s regulations.</p>
<p>There is no need to require an employee to accept the possibility of personal data wiping if s/he only uses the corporate network to browse the Internet.  On the other hand, an engineer needing access to the company’s Intellectual Property needs to accept a different level of privacy exposure.</p>
<p>Work with functional managers to help determine the degree of access you grant.</p>
<p>If you are dealing with a senior executive, your role may be to personally detail the potential exposures of sensitive corporate data.</p>
<p><strong>Deploy the Right IT Infrastructure for Your Situation</strong></p>
<p>The right IT infrastructure for Consumerization may include deploying different solutions to mitigate the pitfalls of employee privacy while securing corporate data.</p>
<p>Use as much virtualization as possible. VDI or other similar means to provide remote access to corporate applications from laptops and desktops is an approach I recommend where employee privacy is of concern.  No corporate data resides on the employee device, so there is nothing to wipe out.  Likewise, there is no need to track location, because everything is happening inside your data center. There’s also nothing to monitor in the device itself, because the virtual desktop activity is local to your corporate network.</p>
<p>Mobile Device Management is needed to secure smartphones and tablets where the virtual environment does not work well because of the small screens, or because the target mobile operating system doesn’t provide true VDI support yet – such as Apple iOS and Android.</p>
<p>Consider <a href="http://consumerization.trendmicro.com/mdm-not-the-only-avenue-to-byod-security-but-technology-is-simply-not-there-yet/">pseudo virtualized solution</a><sup>3</sup> for Android devices.  These essentially split the ‘personality’ of the smartphone, which allows the user to have separate user identities by partitioning the personal and corporate sides.</p>
<p>In conclusion: <a href="http://bringyourownit.com/category/the-consumerization-report/">Consumerization and BYOD are real</a><sup>4</sup> and here to stay. Rather than resist it, organizations should embrace BYOD programs to unlock the business potential of Consumerization. This requires a <a href="http://bringyourownit.com/2011/06/28/consumerization-talks-with-ken-dulaney-vp-gartner-research/">strategic approach</a><sup>5</sup>, new flexible policies and appropriate security and management tools.</p>
<p>&nbsp;</p>
<p><strong>COMING NEXT: <span style="text-decoration: underline">Educating Employees about Individual Privacy</span></strong></p>
<p>&nbsp;</p>
<p><em>Reference<sup>1</sup> Consumerization 101 – Employee Privacy Vs. Corporate Liability. </em><a href="http://consumerization.trendmicro.com/consumerization-101-employee-privacy-vs-corporate-liability/">http://consumerization.trendmicro.com/consumerization-101-employee-privacy-vs-corporate-liability/</a></p>
<p><em>Reference<sup>2</sup> The Dark Side of BYOD – Privacy, Personal Data Loss and Device Seizure. </em><a href="http://consumerization.trendmicro.com/consumerization-byod-privacy-personal-data-loss-and-device-seizure/">http://consumerization.trendmicro.com/consumerization-byod-privacy-personal-data-loss-and-device-seizure/</a></p>
<p><em>Reference<sup>3</sup> MDM not the only avenue to BYOD security. But technology is simply not</em> there yet. <a href="http://consumerization.trendmicro.com/mdm-not-the-only-avenue-to-byod-security-but-technology-is-simply-not-there-yet/">http://consumerization.trendmicro.com/mdm-not-the-only-avenue-to-byod-security-but-technology-is-simply-not-there-yet/</a></p>
<p>Reference<sup>4 </sup>Trend Micro Consumerization Report 2011. <a href="http://bringyourownit.com/category/the-consumerization-report/">http://bringyourownit.com/category/the-consumerization-report/</a></p>
<p>Reference<sup>5 </sup>Consumerization Talks with Ken Dulaney, VP Gartner Research. <a href="http://bringyourownit.com/2011/06/28/consumerization-talks-with-ken-dulaney-vp-gartner-research/">http://bringyourownit.com/2011/06/28/consumerization-talks-with-ken-dulaney-vp-gartner-research/</a></p>
<p>&nbsp;</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fconsumerization.trendmicro.com%2Fbyod-best-practices%2F&amp;title=BYOD%20Best%20Practices%20%E2%80%93%20Three%20pitfalls%20you%20can%E2%80%99t%20afford%20to%20ignore" id="wpa2a_24"><img src="http://consumerization.trendmicro.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fconsumerization.trendmicro.com%2Fbyod-best-practices%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=recommend&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;height:30px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://consumerization.trendmicro.com/byod-best-practices/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>iSurvived, iThink?</title>
		<link>http://consumerization.trendmicro.com/isurvived-ithink/</link>
		<comments>http://consumerization.trendmicro.com/isurvived-ithink/#comments</comments>
		<pubDate>Thu, 26 Apr 2012 17:56:11 +0000</pubDate>
		<dc:creator>Aaron Lewis</dc:creator>
				<category><![CDATA[Consumerization]]></category>

		<guid isPermaLink="false">http://consumerization.trendmicro.com/?p=1884</guid>
		<description><![CDATA[&#8220;We&#8217;ll have to send it out to a service facility,&#8221; said the Apple Store rep. &#8220;What kind of turnaround time are we talking about&#8221;? I asked. &#8220;Probably no more than 5 days.&#8221; Immediately I began calculating. Let&#8217;s see, today is Wednesday, so three more work days. What do I have coming up? I need to [...]]]></description>
			<content:encoded><![CDATA[<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fconsumerization.trendmicro.com%2Fisurvived-ithink%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=recommend&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;height:30px;margin-top:5px;"></iframe><p>&#8220;We&#8217;ll have to send it out to a service facility,&#8221; said the Apple Store rep. &#8220;What kind of turnaround time are we talking about&#8221;? I asked. &#8220;Probably no more than 5 days.&#8221; Immediately I began calculating. Let&#8217;s see, today is Wednesday, so three more work days. What do I have coming up? I need to give a presentation this evening on Internet safety to kids and their parents. Heading to New Jersey tomorrow morning for a meeting, but only need a way to take notes. I will definitely need to edit SharePoint data. And I&#8217;ve got to edit and finish that statement of work for a customer. Okay, could I really do everything I needed to do in my job using only an iPad?</p>
<p>So first things first: use Safari on the iPad to book the Amtrak reservation. Done. No challenge expected there. My presentation for the evening was already loaded into Keynote. Check. Video adapters for the iPad. Check. Using SafeSync, and the SafeSync app for the iPad, I have access to the folder of all the consulting services documents I work with every day. Check. Wait, not so fast. I can access the documents, and read them, but SafeSync doesn&#8217;t currently have an &#8220;Open with..&#8221; feature that will allow me to edit in the app of my choice. Need another option.</p>
<p><strong>Chapter 1: Editing Office Docs</strong></p>
<p>I&#8217;ve got a few Word docs that I need to edit, you remember, that statement of work? I&#8217;ve got Pages on the iPad, but it won&#8217;t handle all the formatting correctly. And since my laptop would be unavailable, none of my VNC apps would help. I decided to try a new service called OnLive Desktop. Essentially the company offers you a virtual Windows desktop preloaded with Microsoft Office apps. Perfect, I thought. I&#8217;ll just load the docs into that site and off I go. But wait, how can I get to the docs? This is when the first limitation of the iPad reared its head: even though Apple updated the software to allow you to sync without being tethered to a Mac, you still need to use iTunes or wifi to move documents into the apps with which you&#8217;d like to edit them (or use a service like DropBox). But even if I had put all the docs I needed to work on somewhere in &#8220;the cloud&#8221;, I still needed to edit them in Microsoft Word, plain and simple. So I &#8220;cheated&#8221; a little, but don&#8217;t worry, it won&#8217;t affect the &#8220;experiment&#8221; because I could have done this in preparation for being without the laptop.</p>
<p>I took my Time Machine drive, plugged it into my wife&#8217;s Mac, and copied the files I needed to her machine. Then I logged into my OnLive Desktop account and attempted to upload the files using Safari. No joy. In the middle of the upload I got an empty browser window and no further activity. Checking the OnLive site, the files were there but listed as 0KB and were indeed empty. Using live chat I talked to a support rep for OnLive who suggested I try with another browser. I fired up Firefox and made another attempt. This time I got a message saying the upload was completed successfully. But when I checked the site, the files were again empty. The support rep opened a case, and we hung up.</p>
<p>Just for kicks I decided to download Google Chrome to my wife&#8217;s laptop and try one more time. This time the upload went very quickly and Chrome showed me the files with their actual sizes, something neitherof the other browsers did. Could this be it? Aboard the Amtrak Acela I fired up the OnLive Desktop app, and attempted to log in. No love. Turns out Amtrak offers free wifi on board, but with restrictions. The OnLive service must count as a streaming service, which is blocked. When I got home, I fired up OnLive Desktop, and viola! The files were there. I am now working on a virtual desktop, editing the statement of work I needed to finish in Microsoft Word. Of course, the requirement is that I&#8217;m connected to the Internet. If I were not, then apps like QuickOffice HD might have worked, but I like the idea of having &#8220;the real thing&#8221; available to me.</p>
<p><strong>Chapter 2: Calendar Invites &#8211; To accept or not to accept&#8230;</strong></p>
<p>While on board the train, I received some meeting invites. Here&#8217;s another area for improvement in the iOS. Your choices for meeting invites in iCal are Accept, Maybe, and Decline. But none of the choices allow you to add comments. Many times I want to add comments to my selection, but I cannot. So usually I either wait until I&#8217;m back at my laptop to process the invite or I send back the response on my iGadget and follow it up with an email to the inviter explaining my response. Not ideal.</p>
<p><strong>Chapter 3: SharePoint</strong></p>
<p>My team keeps its data in SharePoint and accessing it requires being connected to the company VPN. Two apps do the trick: Junos Pulse for the VPN connection (also not allowed aboard Amtrak), and SharePlus Pro for SharePoint access and editing of data. So I can view, sort, edit, all good. Except I can&#8217;t upload a document to a record without that document already being attached to the app. And where do you do that? iTunes of course, on the laptop that is at the Apple Store Hospital getting new innards. There is another option, you can transfer files via WiFi, but you have to transfer them from your computer. Lesson learned. You really need to prepare by having all the documents you need or think you&#8217;ll need available to the apps in which you&#8217;ll be working with them. Many apps can access Dropbox. This one cannot so I&#8217;m out of luck. Another problem: I need to create a new iShare record for a customer and I need their ID out of our CRM, Siebel. Mobile Safari cannot be used to access Siebel, so I cannot accomplish this task either.</p>
<p><strong>Are We There Yet?</strong></p>
<p>Almost, and we&#8217;re getting closer every day. I could do most of what I needed to do solely with the iPad, some apps, and the Internet. But there is room for improvement for sure. Slowly and steadily Apple is untethering the iPad from the Mac, and I&#8217;m excited to see what new technologies will enable me and my colleagues to be more fully functional when we&#8217;re not &#8220;connected&#8221;.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fconsumerization.trendmicro.com%2Fisurvived-ithink%2F&amp;title=iSurvived%2C%20iThink%3F" id="wpa2a_28"><img src="http://consumerization.trendmicro.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fconsumerization.trendmicro.com%2Fisurvived-ithink%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=recommend&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;height:30px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://consumerization.trendmicro.com/isurvived-ithink/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Heard of “Path”? Your Contacts in the Cloud</title>
		<link>http://consumerization.trendmicro.com/heard-of-path-your-contacts-in-the-cloud/</link>
		<comments>http://consumerization.trendmicro.com/heard-of-path-your-contacts-in-the-cloud/#comments</comments>
		<pubDate>Sun, 15 Apr 2012 19:16:28 +0000</pubDate>
		<dc:creator>Aaron Lewis</dc:creator>
				<category><![CDATA[BYOD]]></category>
		<category><![CDATA[Consumerization]]></category>

		<guid isPermaLink="false">http://consumerization.trendmicro.com/?p=1857</guid>
		<description><![CDATA[Some smartphone apps could be covertly taking your business contacts to the cloud? We recently wrote about oblivious data loss and what seems to be the wild west of application development in this cloud security article. &#8220;There are several security and privacy risks here, of course, not least the implications of BYOD smartphones in the enterprise with data [...]]]></description>
			<content:encoded><![CDATA[<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fconsumerization.trendmicro.com%2Fheard-of-path-your-contacts-in-the-cloud%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=recommend&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;height:30px;margin-top:5px;"></iframe><p>Some smartphone apps could be covertly taking your business contacts to the cloud? We recently wrote about oblivious data loss and what seems to be the wild west of application development in this <a href="http://cloudsecurity.trendmicro.com/oblivious-data-loss-and-the-wild-west-of-mobile-app-security/" target="_blank">cloud security article</a>.</p>
<blockquote><p>&#8220;There are several security and privacy risks here, of course, not least the implications of BYOD smartphones in the enterprise with data hungry apps downloaded on them inadvertently exposing the confidential details of colleagues, clients and business partners.</p>
<p>At the moment apps don’t distinguish between groups when asking user permission to access the iOS address book, but even if they did, users may accidentally save a new business contact in their personal instead of corporate contacts group, and then allow an app access to the former, again resulting in oblivious data loss.&#8221;</p></blockquote>
<p>Apple says that it will work to better protect iOS users from this kind of unknown data loss. However it is a reminder that data security cannot be assumed or trusted from any single point.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fconsumerization.trendmicro.com%2Fheard-of-path-your-contacts-in-the-cloud%2F&amp;title=Heard%20of%20%E2%80%9CPath%E2%80%9D%3F%20Your%20Contacts%20in%20the%20Cloud" id="wpa2a_32"><img src="http://consumerization.trendmicro.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fconsumerization.trendmicro.com%2Fheard-of-path-your-contacts-in-the-cloud%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=recommend&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;height:30px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://consumerization.trendmicro.com/heard-of-path-your-contacts-in-the-cloud/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Which Mobile Platforms Are Ready for the Enterprise?</title>
		<link>http://consumerization.trendmicro.com/which-mobile-platforms-are-ready-for-the-enterprise/</link>
		<comments>http://consumerization.trendmicro.com/which-mobile-platforms-are-ready-for-the-enterprise/#comments</comments>
		<pubDate>Fri, 13 Apr 2012 11:00:27 +0000</pubDate>
		<dc:creator>Majken Pullin</dc:creator>
				<category><![CDATA[BYOD]]></category>
		<category><![CDATA[Consumerization]]></category>
		<category><![CDATA[Enterprise Mobility]]></category>

		<guid isPermaLink="false">http://consumerization.trendmicro.com/?p=1849</guid>
		<description><![CDATA[It’s the question every IT manager is asking. The short answer: there’s not a single consumer mobile operating system that offers all of the security and management capabilities that enterprises need—but they are getting better. To get a complete picture of current mobile OS security holes and management challenges, I strongly recommend reading a timely [...]]]></description>
			<content:encoded><![CDATA[<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fconsumerization.trendmicro.com%2Fwhich-mobile-platforms-are-ready-for-the-enterprise%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=recommend&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;height:30px;margin-top:5px;"></iframe><p>It’s the question every IT manager is asking. The short answer: there’s not a single consumer mobile operating system that offers all of the security and management capabilities that enterprises need—but they are getting better.</p>
<p>To get a complete picture of current mobile OS security holes and management challenges, I strongly recommend reading a timely new report developed specifically as a guide for IT managers. To conduct the analysis, industry analysts teamed up with Trend Micro’s CTO Raimund Genes and Cesare Garlati as well as other security experts.  Together they rated the top four platforms based on 60 security and management criteria.</p>
<p>Their in-depth report, <em><span style="text-decoration: underline;"><a href="http://www.trendmicro.com/cloud-content/us/pdfs/business/reports/rpt_enterprise_readiness_consumerization_mobile_platforms.pdf" target="_blank">Enterprise Readiness of Consumer Mobile Platforms</a></span></em><em>,</em> compares the most widely-used versions of BlackBerry OS, Apple iOS, Windows Phone, and Google Android. “The feature sets that IT managers should give high consideration to include: security certifications, device firewall, and support for virtualization, which are largely still missing.”</p>
<p><span style="text-decoration: underline;"><a href="http://www.trendmicro.com/cloud-content/us/pdfs/business/reports/rpt_enterprise_readiness_consumerization_mobile_platforms.pdf" target="_blank">Read the full report</a></span> to see how they rank. It also gives you a helpful guide for defining mobile roles and postures.</p>
<p>Do you think your mobile platform is ready for your organization?</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fconsumerization.trendmicro.com%2Fwhich-mobile-platforms-are-ready-for-the-enterprise%2F&amp;title=Which%20Mobile%20Platforms%20Are%20Ready%20for%20the%20Enterprise%3F" id="wpa2a_36"><img src="http://consumerization.trendmicro.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fconsumerization.trendmicro.com%2Fwhich-mobile-platforms-are-ready-for-the-enterprise%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=recommend&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;height:30px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://consumerization.trendmicro.com/which-mobile-platforms-are-ready-for-the-enterprise/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Dropbox – Enterprise Saviour or Enterprise Enemy?</title>
		<link>http://consumerization.trendmicro.com/dropbox-enterprise-saviour-or-enterprise-enemy/</link>
		<comments>http://consumerization.trendmicro.com/dropbox-enterprise-saviour-or-enterprise-enemy/#comments</comments>
		<pubDate>Wed, 04 Apr 2012 21:15:31 +0000</pubDate>
		<dc:creator>Aaron Lewis</dc:creator>
				<category><![CDATA[Consumerization]]></category>

		<guid isPermaLink="false">http://consumerization.trendmicro.com/?p=1834</guid>
		<description><![CDATA[As a result of the increase in consumer-grade sync and sharing solutions being used within business, a huge black hole has been created when it comes to protecting and controlling corporate data. The enterprise can take a blanket view and block the access and synchronization of these solutions with gateway technology, or even completely lock [...]]]></description>
			<content:encoded><![CDATA[<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fconsumerization.trendmicro.com%2Fdropbox-enterprise-saviour-or-enterprise-enemy%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=recommend&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;height:30px;margin-top:5px;"></iframe><p>As a result of the increase in consumer-grade sync and sharing solutions being used within business, a huge black hole has been created when it comes to protecting and controlling corporate data.</p>
<p>The enterprise can take a blanket view and block the access and synchronization of these solutions with gateway technology, or even completely lock down the PC so the sync agent cannot be installed. But, the problem here is these solutions deliver significant value to the user, and subsequently the business, so that zero-tolerance policy is not always the best option.</p>
<p>Consumerization is driven by simple technology that can be sexy, that the users want, which actually makes the life of the normal user better. Blocking or removing these solutions, while it improves security, will upset the staff and ultimately make them less productive and flexible. On top of this, many users will just find another way to do what they originally wanted and bypass corporate policy. This is the power of consumerization. Consumer-grade apps and devices will be used when there is a need that isn’t being met by Enterprise solutions.</p>
<p>So what is the answer? Enterprise-grade technology could be the answer, but herein lies another problem. Often it is Enterprise technology that actually creates the need for consumer-grade apps in the first place. Enterprise solutions tend to be overly complicated, and while the Enterprise admin can configure loads of policies and rules, the normal user experience is poor—so end users won’t use it. This creates two issues: 1) wasted money on enterprise investment, and 2) reduced employee productivity and flexibility.</p>
<p>The reality is that there are very few offerings out there that can offer the normal user the experience they get from consumer grade solutions, like Dropbox, but with the enterprise controls that keep the IT and security group happy, and most importantly the user engaged, productive and agile.</p>
<p>Now here comes the shameless plug&#8230;.. Trend Micro SafeSync for Business has been designed with both parties in mind: the user and the IT admin. It enables the business to give a secure and manageable way of allowing users to access, sync and share their files from any device, anywhere, combined with a user experience that end users can really appreciate.</p>
<p>Check it out and see for yourself, and let us know what you think. We want to hear from you. <a href="http://www.trendmicro.com/safesyncforbusiness" target="_blank">www.trendmicro.com/safesyncforbusiness</a>.</p>
<p>James Walker<br />
Snr. Global Product Marketing Manager</p>
<p><script type="text/javascript" src="http://i0.poll.fm/survey.js" charset="UTF-8"></script><br />
<noscript><a href="http://2831118.polldaddy.com/s/new-survey">Take Our Survey!</a></noscript><br />
<script type="text/javascript">
  polldaddy.add( {
    type: 'iframe',
    auto: true,
    domain: '2831118.polldaddy.com/s/',
    id: 'new-survey'
  } );
</script></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fconsumerization.trendmicro.com%2Fdropbox-enterprise-saviour-or-enterprise-enemy%2F&amp;title=Dropbox%20%E2%80%93%20Enterprise%20Saviour%20or%20Enterprise%20Enemy%3F" id="wpa2a_40"><img src="http://consumerization.trendmicro.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fconsumerization.trendmicro.com%2Fdropbox-enterprise-saviour-or-enterprise-enemy%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=recommend&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;height:30px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://consumerization.trendmicro.com/dropbox-enterprise-saviour-or-enterprise-enemy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

