<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Information Technology Enthusiast </title>
	<atom:link href="http://infolookup.securegossip.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://infolookup.securegossip.com</link>
	<description>Just another SecureGossip - United Security Blog Portal weblog</description>
	<lastBuildDate>Wed, 25 Jan 2012 18:21:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Retention policy with a twist of MRM Exchange 2010</title>
		<link>http://infolookup.securegossip.com/2012/01/25/rentention-policies-with-a-twist-of-mrm-exch-2010/</link>
		<comments>http://infolookup.securegossip.com/2012/01/25/rentention-policies-with-a-twist-of-mrm-exch-2010/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 13:13:52 +0000</pubDate>
		<dc:creator>Sherwyn</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[How To's]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Exchange 2010 sp1]]></category>
		<category><![CDATA[Managed Folder Policy]]></category>
		<category><![CDATA[ManagedFolder]]></category>
		<category><![CDATA[MRM]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[Retention Policy]]></category>

		<guid isPermaLink="false">http://infolookup.securegossip.com/?p=692</guid>
		<description><![CDATA[I was recently working on a project that involved creating some Retention policies for our Exchange 2010 sp1 environment. The project got a bit scary in the testing phase when we realized that the Inbox deletion policies were also deleting emails in the user&#8217;s sub-folder.  The came as a surprise to us since we were [...]]]></description>
			<content:encoded><![CDATA[<p>I was recently working on a project that involved creating some Retention policies for our Exchange 2010 sp1 environment. The project got a bit scary in the testing phase when we realized that the Inbox deletion policies were also deleting emails in the user&#8217;s sub-folder.  The came as a surprise to us since we were able to use the same type of policy in Exchange 2003 prior to upgrading.</p>
<p>To solve this issue we had to create retention policies to manage our deleted items, sent items, and drafts but use message record management to handle our inbox. Since MRM was being phased out of 2010 this solution needed to be implemented via the Exchange management shell (Powershell).</p>
<p style="text-align: center"><strong>Implementing MRM:</strong></p>
<p><a href="http://infolookup.securegossip.com/files/MRM.gif"><img class="aligncenter size-medium wp-image-693" src="http://infolookup.securegossip.com/files/MRM-256x300.gif" alt="" width="256" height="300" /></a><strong></strong></p>
<p><a href="http://technet.microsoft.com/en-us/library/dd335093.aspx"><strong>Messaging records management (MRM)</strong></a> is the records management technology in Microsoft Exchange Server 2010 that helps organizations reduce the legal risks associated with e-mail. MRM makes it easier to keep the messages needed to comply with company policy, government regulations, or legal needs, and to remove content that has no legal or business value.</p>
<p>Prior to implementing this its best to check to see if any additional policies were created and if you don&#8217;t play on using them going forward delete them. You can do so with the below commands:</p>
<p><span style="color: #800000"><strong>Review commands:</strong></span></p>
<p><strong><span style="text-decoration: underline">ManagedFolderMailboxPolicy</span></strong></p>
<p><span style="color: #008000"> [PS] C:\Windows\system32&gt;<strong>Get-ManagedFolderMailboxPolicy</strong></span></p>
<p><span style="color: #008000">Name                      ManagedFolderLinks</span></p>
<p><span style="color: #008000">&#8212;-                              &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</span></p>
<p><span style="color: #008000">Test Policy1            {Inbox}</span></p>
<p><strong><span style="text-decoration: underline"><br />
ManagedContentSettings</span></strong></p>
<p><span style="color: #008000"> [PS] C:\Windows\system32&gt;<strong>Get-ManagedContentSettings</strong></span></p>
<p><span style="color: #008000"> Name                      MessageClass              ManagedFolderName</span></p>
<p><span style="color: #008000">&#8212;-                            &#8212;&#8212;&#8212;&#8212;- &#8212;&#8212;&#8212;&#8212;              &#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</span></p>
<p><span style="color: #008000">Inbox Content               *                                           Inbox1</span></p>
<p><strong><span style="text-decoration: underline"><br />
ManagedFolder</span></strong></p>
<p><span style="color: #008000"> [PS] C:\Windows\system32&gt;<strong>Get-ManagedFolde</strong>r</span></p>
<p><span style="color: #008000"> Name                      FolderName                Description</span></p>
<p><span style="color: #008000">&#8212;-                              &#8212;&#8212;&#8212;-                &#8212;&#8212;&#8212;&#8211;</span></p>
<p><span style="color: #008000">Inbox1                    Inbox                     ManagedDefaultFolder</span></p>
<p>After retrieving this information you can now issue the following commands to remove any old or test policy:</p>
<p><strong><span style="text-decoration: underline">Remove Policy from users</span></strong></p>
<p><strong></strong><span style="color: #008000">Set-Mailbox username -ManagedFolderMailboxPolicy $null</span></p>
<p><strong><span style="text-decoration: underline">Removed ManagedFolder Mailbox Policy</span></strong><strong></strong></p>
<p><span style="color: #008000">[PS] C:\Windows\system32&gt;Remove-ManagedFolderMailboxPolicy &#8220;Test Inbox Policy&#8221;</span></p>
<p><strong><span style="text-decoration: underline">Remove Manage Content Setting</span></strong><strong></strong></p>
<p><span style="color: #008000"><strong> </strong>[PS] C:\Windows\system32&gt;Remove-ManagedContentSettings &#8220;Inbox Content&#8221;</span><br />
<strong>Creating and Implementing MRM:</strong></p>
<ol>
<li>Create your managed folder</li>
<li>Create your managed folder content setting</li>
<li>Create your manage mailbox folder policy</li>
<li>Apply your policy to a user or to an exchange data store.</li>
<li>Start the managed folder assistant service or wait for it process on schedule</li>
</ol>
<p><span style="color: #800000">The below policy will delete all emails from the user mailbox that are 60 days old without touching any sub folders in the user&#8217;s Inbox.</span><strong><span style="text-decoration: underline"><br />
</span></strong></p>
<p><strong><span style="text-decoration: underline">Managed Folder Creation</span></strong><strong></strong></p>
<p><span style="color: #008000"> New-ManagedFolder -Name &#8220;Test Inbox&#8221; -DefaultFolderType Inbox -BaseFolderOnly $true -Comment &#8220;Items would be moved to deleted items for 60 days&#8221; -MustDisplayCommentEnabled  $true</span></p>
<p><strong><span style="text-decoration: underline">Managed Folder Content Settings</span></strong></p>
<p><span style="color: #008000">New-ManagedContentSettings -Name &#8220;Test Content&#8221; -FolderName &#8220;Test Inbox&#8221; -MessageClass * -AgeLimitForRetention 60 -RetentionAction MoveToDeletedItems -RetentionEnabled $true -TriggerForRetention WhenDelivered</span></p>
<p><strong> <span style="text-decoration: underline">Managed Mailbox Folder Policy</span></strong><strong></strong></p>
<p><strong></strong><span style="color: #008000">New-ManagedFolderMailboxPolicy -Name &#8220;TestPolicy&#8221; -ManagedFolderLinks &#8220;Test Inbox&#8221;</span><strong></strong></p>
<p><strong><br />
<span style="text-decoration: underline">Verify settings</span></strong><strong></strong></p>
<p><span style="color: #008000">[PS] C:\Windows\system32&gt;Get-ManagedFolderMailboxPolicy &#8220;TestPolicy&#8221; |fl</span></p>
<p><span style="color: #008000">[PS] C:\Windows\system32&gt;Get-ManagedContentSettings &#8220;Test Content&#8221;|fl</span></p>
<p><span style="color: #008000">[PS] C:\Windows\system32&gt;Get-ManagedFolder &#8220;Test Inbox&#8221; |fl</span></p>
<p>&nbsp;</p>
<p><strong><span style="text-decoration: underline">Start the Managed Folder Assistant to process the mailbox</span></strong><strong>.</strong></p>
<p><strong>Apply to single user:</strong></p>
<p><span style="color: #008000"><strong> </strong>Set-Mailbox -Identity testuser -ManagedFolderMailboxPolicy &#8220;TestPolicy&#8221;</span></p>
<p><span style="color: #008000">Start-ManagedFolderAssistant -ID  testuser</span></p>
<p><strong>Apply to a database level:</strong></p>
<p><span style="color: #008000">Get-Mailbox –database “Database Name” | Set-Mailbox –ManagedFolderMailboxPolicy “Name of the Policy”</span></p>
<p><span style="color: #800000"><strong>Tip:</strong></span></p>
<p>If you run into issues wait about 30 mins for the folders to replicate after created them. You can also stop and restart the &#8220;Managed Folder Assistant&#8221; service.</p>
<p>&nbsp;</p>
<p>Would love to know how others handled this issue.</p>
<p><strong>References:</strong></p>
<p><a href="http://technet.microsoft.com/en-us/library/bb508901%28EXCHG.80%29.aspx">http://technet.microsoft.com/en-us/library/bb508901%28EXCHG.80%29.aspx</a><br />
<a href="http://technet.microsoft.com/en-us/library/dd335093.aspx">http://technet.microsoft.com/en-us/library/dd335093.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://infolookup.securegossip.com/2012/01/25/rentention-policies-with-a-twist-of-mrm-exch-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Podcast Appearance &#8220;Attack of the Android&#8221;</title>
		<link>http://infolookup.securegossip.com/2012/01/18/podcast-appearance-attack-of-the-android/</link>
		<comments>http://infolookup.securegossip.com/2012/01/18/podcast-appearance-attack-of-the-android/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 15:57:59 +0000</pubDate>
		<dc:creator>Sherwyn</dc:creator>
				<category><![CDATA[General Tech]]></category>
		<category><![CDATA[Infosec News]]></category>
		<category><![CDATA[AOTA]]></category>
		<category><![CDATA[Attack of the Androids Podcast]]></category>
		<category><![CDATA[Hancent SMS]]></category>
		<category><![CDATA[Podcast]]></category>

		<guid isPermaLink="false">http://infolookup.securegossip.com/?p=688</guid>
		<description><![CDATA[Hello all, I hope your year is going well so far; I just wanted to drop a line and mention that a few weeks ago I appeared on &#8220;Attack of the Androids&#8221; podcast esp 16. A little background about the podcast, the are a weekly audio podcast focused on the Google Android operating system and [...]]]></description>
			<content:encoded><![CDATA[<p>Hello all, I hope your year is going well so far; I just wanted to drop a line and mention that a few weeks ago I appeared on <a href="http://www.groovypost.com/groovycast/attack-of-the-androids/ep16-malware-for-mobile/" target="_blank">&#8220;Attack of the Androids&#8221;</a> podcast esp 16. A little background about the podcast, the are a weekly audio podcast focused on the Google Android operating system and community.</p>
<p>You can find them on <a href="https://plus.google.com/118372362357279886969/posts" target="_blank">Google +</a> or follow them on twitter <strong><a href="https://twitter.com/#!/search/aotaradio" target="_blank"><strong>@aotaradio</strong></a>    </strong>kool cast check them out!</p>
]]></content:encoded>
			<wfw:commentRss>http://infolookup.securegossip.com/2012/01/18/podcast-appearance-attack-of-the-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Handcent SMS logging your sent messages:Update</title>
		<link>http://infolookup.securegossip.com/2012/01/04/handcent-sms-logging-your-sent-messagesupdate/</link>
		<comments>http://infolookup.securegossip.com/2012/01/04/handcent-sms-logging-your-sent-messagesupdate/#comments</comments>
		<pubDate>Wed, 04 Jan 2012 06:52:45 +0000</pubDate>
		<dc:creator>Sherwyn</dc:creator>
				<category><![CDATA[General Tech]]></category>
		<category><![CDATA[Metadata Analysis]]></category>
		<category><![CDATA[Networking and Security]]></category>
		<category><![CDATA[Privacy]]></category>
		<category><![CDATA[Handcent SMS]]></category>
		<category><![CDATA[Logging]]></category>
		<category><![CDATA[Messages]]></category>
		<category><![CDATA[TextSecure]]></category>

		<guid isPermaLink="false">http://infolookup.securegossip.com/?p=680</guid>
		<description><![CDATA[I first posted about this issue back in Dec 18th of 2011, Handcent SMS one of the most popular SMS applications on the android market with over 10,000,000 downloads was doing some things that raised a few privacy questions.  As stated in my last post Handcent was  logging all your sent messages even after you [...]]]></description>
			<content:encoded><![CDATA[<p>I first posted about this issue back in <a href="http://infolookup.securegossip.com/2011/12/18/handcent-sms-logs-all-your-send-messages/">Dec 18th of 2011</a>, Handcent SMS one of the most popular SMS applications on the android market with over 10,000,000 downloads was doing some things that raised a few privacy questions.  As stated in my last post Handcent was  logging all your sent messages even after you deleted them from within the application.</p>
<p>I tried contacting them via email and twitter but the refused to comment on my findings. However 5 days later to my amazement I noticed the released a new version &#8220;3.9.9.9&#8243;. Take a look at the change log:</p>
<ul>
<ul>
<li>#3.9.9.9</li>
</ul>
</ul>
<ul>
<ul>
<li>Improve Galaxy Nexus (Android 4.0) support</li>
</ul>
</ul>
<ul>
<ul>
<li>New Skin for XMas 2012,Cool.</li>
</ul>
</ul>
<ul>
<ul>
<li><span style="color: #008000"><span style="color: #008000"><strong>Add auto delete old message option</strong></span></span></li>
</ul>
</ul>
<ul>
<ul>
<li>Add Mms signature option</li>
</ul>
</ul>
<ul>
<ul>
<li>Merry XMas to all users</li>
</ul>
</ul>
<p>Now after installing the new version I noticed I was still able to see my sent messages after I deleted them so I am not so certain the issue was addressed. I would however like to know if &#8220;<strong><span style="color: #008000">Add auto delete old message option</span></strong></p>
<p><strong>&#8220;</strong> means the will purge the messages from the database on a random schedule at some point. Again since Handcent refuse to comment on this issue we can only assume for now.</p>
<p>Don&#8217;t think that all hope is lost or that you are stuck with the stock messaging application, thanks to brilliant mind of Moxie Marlinspike and others over at <a href="http://www.whispersys.com/whispercore.html">Whisper System</a>, &#8220;TextSecure Beta&#8221; was birthed on Dec 21, 2011.</p>
<p><a href="https://market.android.com/details?id=org.thoughtcrime.securesms&amp;feature=search_result#?t=W251bGwsMSwxLDEsIm9yZy50aG91Z2h0Y3JpbWUuc2VjdXJlc21zIl0.">TextSecure </a>is a security enhanced text messaging application that serves as a full replacement for the default text messaging application. Messages to other TextSecure users are encrypted over the air, and all text messages are stored in an encrypted database on the device. If your phone is lost or stolen, your messages will be safe, and communication with other TextSecure users can&#8217;t be monitored over the air.</p>
<p>In short if you are ready to give up on Handcent this might be a good alternative, I know so far I feel much more secure using this application. I even tried browsing the db and I can confirm that the messages are indeed encrypted.</p>
]]></content:encoded>
			<wfw:commentRss>http://infolookup.securegossip.com/2012/01/04/handcent-sms-logging-your-sent-messagesupdate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Handcent SMS logs all your sent messages</title>
		<link>http://infolookup.securegossip.com/2011/12/18/handcent-sms-logs-all-your-send-messages/</link>
		<comments>http://infolookup.securegossip.com/2011/12/18/handcent-sms-logs-all-your-send-messages/#comments</comments>
		<pubDate>Sun, 18 Dec 2011 07:26:05 +0000</pubDate>
		<dc:creator>Sherwyn</dc:creator>
				<category><![CDATA[Infosec]]></category>
		<category><![CDATA[Infosec News]]></category>
		<category><![CDATA[Android Apps]]></category>
		<category><![CDATA[Android OS]]></category>
		<category><![CDATA[Handcent SMS]]></category>
		<category><![CDATA[Privacy]]></category>
		<category><![CDATA[SEND_LOG]]></category>
		<category><![CDATA[SEND_LOG_DETAIL]]></category>

		<guid isPermaLink="false">http://infolookup.securegossip.com/?p=663</guid>
		<description><![CDATA[In light of all the CarrierIQ press I started wondering what others applications on my phone might be doing things that I am not aware of. So I installed SQLite Editor and started poking around my phone, that&#8217;s when I decided to see what my sms client &#8220;Handcent&#8221; was up too. Since I wanted to [...]]]></description>
			<content:encoded><![CDATA[<p>In light of all the CarrierIQ press I started wondering what <a href="http://infolookup.securegossip.com/files/app_handcent_sms_logo.png"><img class="alignleft size-full wp-image-664" src="http://infolookup.securegossip.com/files/app_handcent_sms_logo.png" alt="" width="64" height="64" /></a>others applications on my phone might be doing things that I am not aware of. So I installed <a href="https://market.android.com/details?id=com.speedsoftware.sqleditor&amp;hl=en">SQLite Editor</a> and started poking around my phone, that&#8217;s when I decided to see what my sms client &#8220;Handcent&#8221; was up too. Since I wanted to view my out on a bigger monitor I fired up a adb shell and used SQLite see what Handcent sms was hiding under the hood.</p>
<p>I used the following command to search my /data/data folder on my device to look for any files with a .db extension since that indicated it was a database file.</p>
<blockquote><p><strong><span style="color: #008000"><code> adb shell find /data -name *.db</code></span></strong></p>
<p style="text-align: left"><a href="http://infolookup.securegossip.com/files/hancent-1.png"><img class="aligncenter size-medium wp-image-667" src="http://infolookup.securegossip.com/files/hancent-1-300x268.png" alt="" width="300" height="268" /></a><code>As you can see I found several databases on my phone but today<br />
we will be looking at one in particular. Handcent's "hc_sms.db".</code><code></code><strong></strong></p>
<p><a href="http://infolookup.securegossip.com/files/hc_sms.png"><img class="aligncenter size-medium wp-image-669" src="http://infolookup.securegossip.com/files/hc_sms-300x68.png" alt="" width="300" height="68" /></a><span style="color: #000000">F<code></code><strong><code>or this part we will use sqlite to view the database layout (schema)<br />
and its contents:</code></strong></span></p>
<p><span style="color: #008000">sqlite&gt; .schema</span><br />
<span style="color: #008000">CREATE TABLE DELIVERY_REPORT (MESSAGE_ID INTEGER Primary KEY,TIMESTAMP text,UPDATE_TIMESTAMP text);</span></p>
<p><span style="color: #008000">CREATE TABLE SEND_LOG (ID Integer Primary KEY,SID INTEGER ,SEND_TYPE INTEGER,BEGIN_SEND_TIME text,END_SEND_TIME text,SEND_CONTENT TEXT,</span><br />
<span style="color: #008000">SENDING_PERSON_NUBER INTEGER,SUCCESS_NUMBER INTEGER,FAIL_NUMBER INTEGER);</span></p>
<p><span style="color: #008000">CREATE TABLE SEND_LOG_DETAIL (SID INTEGER,PID INTEGER,BEGIN_SEND_TIME TEXT,END_SEND_TIME TEXT,PERSON_NAME TEXT,PERSON_NUMBER TEXT,SENDI</span><br />
<span style="color: #008000">NG_MESSAGE_NUMBER INTEGER,SENT_SUCCESS_NUMBER INTEGER,SENT_FAIL_NUMBER INTEGER);</span><br />
<span style="color: #008000">CREATE TABLE android_metadata (locale TEXT);</span></p>
<p><span style="color: #008000">sqlite&gt; .tables</span><br />
<span style="color: #008000">DELIVERY_REPORT   SEND_LOG          SEND_LOG_DETAIL   android_metadata</span><br />
<span style="color: #008000">sqlite&gt;</span></p></blockquote>
<p><a href="http://infolookup.securegossip.com/files/handcent_schema.png"><img class="aligncenter size-medium wp-image-670" src="http://infolookup.securegossip.com/files/handcent_schema-300x32.png" alt="" width="300" height="32" /></a></p>
<p><a href="http://infolookup.securegossip.com/files/handcent-tables.png"><img class="aligncenter size-medium wp-image-671" src="http://infolookup.securegossip.com/files/handcent-tables-300x38.png" alt="" width="300" height="38" /></a><strong></strong></p>
<blockquote><p><span style="color: #008000"><code><span style="color: #000000">And now afte</span></code></span><strong><span style="color: #008000"><code>r <span style="color: #000000">doing a</span> select * from SEND_LOG; <span style="color: #800000">to my amazement<br />
I saw all my text messages that were sent since I installed<br />
the handcent application both </span></code></span></strong><span style="color: #800000"><code>DELETED</code></span><strong><span style="color: #008000"><code><span style="color: #800000"> and undeleted</span>.<br />
</code></span></strong></p>
<p><strong><span style="color: #008000"><code><a href="http://infolookup.securegossip.com/files/SEND_LOG.png"><img class="aligncenter size-medium wp-image-673" src="http://infolookup.securegossip.com/files/SEND_LOG-300x27.png" alt="" width="300" height="27" /></a><span style="color: #000000">Also looking at</span> select * from SEND_LOG_DETAIL <span style="color: #000000">I saw the same<br />
information but this log also held the receiver of the sms name<br />
and phone number.</span></code></span></strong></p>
<p><strong><span style="color: #008000"><code><a href="http://infolookup.securegossip.com/files/SEND_LOG_DETAIL.png"><img class="aligncenter size-medium wp-image-674" src="http://infolookup.securegossip.com/files/SEND_LOG_DETAIL-300x40.png" alt="" width="300" height="40" /></a></code></span></strong><span style="color: #008000"><code><span style="color: #000000">Now my question is, if I am deleting a message and thinking<br />
its being deleted why would handcent chose to keep a copy of<br />
this message in an unencrypted database where anyone can access<br />
it? I would love to hear from them and try to understand why<br />
this is being done.</span></code></span><strong><span style="color: #008000"><code><br />
</code></span></strong></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://infolookup.securegossip.com/2011/12/18/handcent-sms-logs-all-your-send-messages/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>My first expirience at installing a custom rom</title>
		<link>http://infolookup.securegossip.com/2011/12/15/my-first-expirience-at/</link>
		<comments>http://infolookup.securegossip.com/2011/12/15/my-first-expirience-at/#comments</comments>
		<pubDate>Thu, 15 Dec 2011 21:38:00 +0000</pubDate>
		<dc:creator>Sherwyn</dc:creator>
				<category><![CDATA[How To's]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Random]]></category>
		<category><![CDATA[Android OS]]></category>
		<category><![CDATA[Droid Bionic]]></category>
		<category><![CDATA[Root]]></category>
		<category><![CDATA[Unbrick]]></category>

		<guid isPermaLink="false">http://infolookup.securegossip.com/?p=652</guid>
		<description><![CDATA[  So after having my Droid Bionic for a few months now I have decided to take the leap from rooting to roming. A quick definition on Rooting and Roming from the nice people over at droidlessons.com: What is Rooting? “Rooting” your device means obtaining “superuser” rights and permissions to your Android’s software. With these [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://infolookup.securegossip.com/files/Android-Phone.png"><img class="alignleft size-medium wp-image-655" src="http://infolookup.securegossip.com/files/Android-Phone-273x300.png" alt="" width="148" height="134" /></a>  So after having my Droid Bionic for a few months now I have decided to take the leap from rooting to roming. A quick definition on Rooting and Roming from the nice people over at droidlessons.com:</p>
<p><strong>What is Rooting?</strong></p>
<p>“Rooting” your device means obtaining “superuser” rights and permissions to your Android’s software. With these elevated user privileges, you gain the ability to load custom software (ROM’s), install custom themes, increase performance, increase battery life, and the ability to install software that would otherwise cost extra money (ex: WiFi tethering). Rooting is essentially “hacking” your Android device. In the iPhone world, this would be the equivalent to “Jailbreaking” your phone.</p>
<p><strong>Custom Software (ROM’s)</strong></p>
<p>You may have heard of people loading custom “ROM’s” on their devices. A “ROM” is the software that runs your device. It is stored in the “Read Only Memory” of your device. There are many great custom ROM’s available that can make your Android device look and perform drastically different.</p>
<p>After hanging around<a href="http://rootzwiki.com" target="_blank"> rootzwiki</a> forum, listening to <a href="http://feeds.feedburner.com/droidnationmp3" target="_blank">Droid Nation </a>and <a href="http://podnutz.com/aaa" target="_blank">Android App Addicts</a>podcast I felt like I was ready to install my first custom  rom. My rom of choice was <a href="http://rootzwiki.com/topic/11382-rom-kin3tx-v10-120811/" target="_blank">[K]IN3TX v1.0</a> some features about this rom:</p>
<ul>
<li><strong>Latest BusyBox</strong></li>
<li><strong>Superuser (Updated Binary)<br />
</strong></li>
<li><strong>Battery Optimization</strong></li>
<li><strong>Fully ROOTED</strong></li>
<li><strong>SD Card Read tweaks</strong><strong></strong></li>
<li><strong>Built Off of 5.8.894 OTA</strong><strong><br />
</strong></li>
<li><strong>Advance Power Menu</strong><strong></strong></li>
<li><strong>Scrollable Power Toggles in Pull Down</strong><strong></strong></li>
<li><strong>FULL Custom UI</strong><strong></strong></li>
<li><strong>PNG Optimization</strong><strong></strong></li>
<li><strong>init.d Run Support</strong></li>
</ul>
<p>Just to name a few..</p>
<p>You can read the full posting about this rom over at the <a href="http://rootzwiki.com/topic/11382-rom-kin3tx-v10-120811/" target="_blank">rootzwiki</a> forum their you will also find the various downloads that you would need. However I will highlight a few steps I took:</p>
<ul>
<li><a href="http://rootzwiki.com/topic/5484-r3l3as3droot-and-43v3r-root-for-the-bionic-v21/" target="_blank">Root your device</a></li>
<li><a href="http://rootzwiki.com/topic/4732-guide-how-to-install-clockworkmod-recovery/" target="_blank">Install clockworkmod recovery </a></li>
<li><a title="External link" href="https://market.android.com/details?id=com.keramidas.TitaniumBackupPro&amp;hl=en" rel="nofollow external">Install Titanium backup pro</a> or MyBackup root (backup your apps and data)</li>
<li>***COPY THE ROM TO YOUR SD CARD***</li>
<li>Boot into recovery mode with CWM while there do the following</li>
<ul>
<li><strong>WIPE DATA/FACTORY RESET</strong></li>
<li><strong>WIPE CACHE</strong></li>
<li><strong>UNDER MOUNTS AND STORAGE, FORMAT SYSTEM</strong></li>
<li><strong>UNDER ADVANCED, WIPE DALVIK</strong></li>
<li><strong>INSTALL AND HAVE FUN!</strong></li>
</ul>
</ul>
<p>After you are finish installing log-in setup your device, then you can boot back into CWM wipe your cache, and dalvik then install add-on or tpak of your choice, I installed the ICS tpak.</p>
<p>Now as anyone might expect the first time you are doing something like this you have to realize that you might make a mistake, but you can only hope it doesn&#8217;t hurt you too much. The mistake I made was that I copied the wrong add-on pack to my sdcard but not the base rom, and since I already wiped my system partition I was unable to reboot my phone into recovery mode after I copied the correct file via another device.</p>
<p>How I corrected this issue you might ask yourself, I had some help from my buddy Highlander-:  over at the <a href="www.podnutz.com">Podnutz</a> IRC chat room. He pointed me to a tool call <a href="http://forum.xda-developers.com/showthread.php?t=1348587">RSDlite</a>, which allowed me to flash my phone back to the stock rom and from there I followed the steps outlined above and all was well the second time around <img src='http://infolookup.securegossip.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . You have got to love the power of the Internet and great communities.</p>
<p>Have fun roming and you can comment back and let me know which rom is your favorite. I have only tried one and I must say I absolutely love it!</p>
<p>Reference Links:</p>
<p><a href="http://droidlessons.com/what-is-rooting-on-android-the-advantages-and-disadvantages/">http://droidlessons.com/what-is-rooting-on-android-the-advantages-and-disadvantages/<br />
</a><a href="http://forum.xda-developers.com/showthread.php?t=1348587">http://forum.xda-developers.com/showthread.php?t=1348587</a><a href="http://droidlessons.com/what-is-rooting-on-android-the-advantages-and-disadvantages/"></p>
<p>http://www.addictivetips.com/mobile/unbrick-motorola-droid-bionic-with-rsd-lite-5-5-guide/</p>
<p></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://infolookup.securegossip.com/2011/12/15/my-first-expirience-at/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Troubleshooting FortiGate 100A Connectivity Issue</title>
		<link>http://infolookup.securegossip.com/2011/12/06/troubleshooting-fortigate-100a-connectivity-issue/</link>
		<comments>http://infolookup.securegossip.com/2011/12/06/troubleshooting-fortigate-100a-connectivity-issue/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 14:30:14 +0000</pubDate>
		<dc:creator>Sherwyn</dc:creator>
				<category><![CDATA[Firewall]]></category>
		<category><![CDATA[How To's]]></category>
		<category><![CDATA[Infosec]]></category>
		<category><![CDATA[Fortigate 100A]]></category>
		<category><![CDATA[HOWTO]]></category>
		<category><![CDATA[Troubleshooting]]></category>

		<guid isPermaLink="false">http://infolookup.securegossip.com/?p=646</guid>
		<description><![CDATA[Objective:  I goal of this document is meant to outline a few steps that will allow you to troubleshoot the cause behind why users were unable to access the internet while behind a Fortigate 100A device. Problem: I received a ticket today stating that users in one our computer labs were unable to access the [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Objective</strong>:  I goal of this document is meant to outline a few steps that will allow you to troubleshoot the cause behind why users were unable to access the internet while behind a Fortigate 100A device.</p>
<p><strong>Problem</strong>: I received a ticket today stating that users in one our computer labs were unable to access the internet.</p>
<p>After arriving onsite I discounted the device and plugged directly into the ISP link and confirmed that they were no issues with the ISP connection. Now is time to open a ticket with support and start the series of troubleshooting to figure out the root cause of the issue.</p>
<p><strong>Step one: Information gathering</strong></p>
<p>After opening the ticket I was told that the issue could have possibly been caused by a bad firmware image, or a corrupted configuration. I needed to log into the device to find out more information and the only way to do so was via the console port.</p>
<p><strong>Connecting to the Fortigate 100A console port:</strong></p>
<ul>
<li>Start your favorite terminal emulator program use the following settings:</li>
<ul>
<li><strong>Baud rate</strong>: 9600</li>
<li><strong>Data bits</strong>: 8</li>
<li><strong>Parity</strong>: None</li>
<li><strong>Stop bit</strong>: 1</li>
<li><strong>Flow control:</strong> None</li>
</ul>
<li>Next, reboot the device and watch the screen for any error message.</li>
</ul>
<p>&nbsp;</p>
<p>After rebooting the first time I got the following message, <strong>“You must format the boot device”,</strong>  I then rebooted a second time and got the following message <strong>“The config file may contain errors, Please see details by the command &#8216;diagnose debug config-error-log read”.</strong>  This was somewhat good news because I would have had to RMA the device if the system RAM was corrupted.</p>
<p>At this point I know I had the following options:</p>
<ul>
<li>Backup the current configs</li>
<li>Reset the device to it’s default state</li>
<li>Reload a new configs</li>
</ul>
<p><strong>Backing up the device to USB via the console port:</strong></p>
<ul>
<li>Plug a usb device into one of the ports on the back of the device</li>
<li>Login to the device, if you are unable to use your admin login you can login with the maintainer account, this account is only valid for 30 sec after the device has been rebooted; so copy the username and password to a text file then cut/paste to the console. <span style="color: #008000"><strong>Username</strong>: maintainer <strong>Password: </strong>bcpb&lt;input device serial number using uppercase letters&gt;</span></li>
</ul>
<ul>
<li>Issue the following command: <strong><span style="color: #800000">execute backup configs usb filename&lt;use any name here&gt;</span><br />
<span style="color: #008000">FG100 # execute backup full-config usb fg100a-10-15-11</span><br />
<span style="color: #008000"> Please wait…</span><br />
<span style="color: #008000"> Copy onfigs fg100a-10-15-11 to USB disk …</span><br />
<span style="color: #008000"> Copy onfigs file to USB disk OK.</span><br />
<span style="color: #008000"> Setting timestamp</span></strong></li>
</ul>
<p>Before reloading a new configs its best to run a few diagnostic commands to try and understand what happened:</p>
<p><span style="color: #008000"><strong>FG100 #  diag sys top </strong></span><span style="color: #800000"><strong>&#8211;&gt; Look at CPU load and any processor that running hot</strong></span></p>
<p><span style="color: #008000"><strong>FG100 # diag debug crashlog </strong></span><span style="color: #800000"><strong>&#8211;&gt; Look for clues as to what service crashed</strong></span></p>
<p><span style="color: #800000"><strong>          Ex Output:</strong></span></p>
<p><span style="color: #008000"><strong>89: 2011-11-14 16:06:42 &lt;04434&gt; application cmdbsvr</strong></span></p>
<p><span style="color: #008000"><strong> 290: 2011-11-14 16:06:42 &lt;04434&gt; *** signal 7 (Bus error) received ***</strong></span></p>
<p><span style="color: #008000"><strong> 291: 2011-11-14 16:06:42 &lt;04434&gt; Register dump:</strong></span></p>
<p><span style="color: #008000"><strong>298: 2011-11-14 16:06:42 &lt;04434&gt; Backtrace:</strong></span></p>
<p><span style="color: #008000"><strong> 299: 2011-11-14 16:06:42 &lt;04434&gt; [0x0893277b] =&gt; /bin/cmdbsvr  </strong></span></p>
<p><span style="color: #008000"><strong> 300: 2011-11-14 16:06:42 &lt;04434&gt; [0x08932a96] =&gt; /bin/cmdbsvr  </strong></span></p>
<p><span style="color: #008000"><strong> 301: 2011-11-14 16:06:42 &lt;04434&gt; [0x08910473] =&gt; /bin/cmdbsvr  </strong></span></p>
<p><strong> </strong></p>
<p><strong>Reload new configs via console port:</strong></p>
<ul>
<li>Rename your most recent backup configs file to <strong>fgt_system.conf, </strong>then place file on the root of your USB drive.</li>
<li>Plug the USB into one of USB ports on the back of the unit and reboot the unit<strong> </strong>and you should see a similar output:</li>
</ul>
<p>&nbsp;</p>
<p><span style="color: #008000"><strong>Reading boot image 1370111 bytes.<br />
Initializing firewall&#8230;<br />
System is started.<br />
Get image from USB disk &#8230;Can not get image from USB disk.<br />
Get config file from USB disk OK.<br />
File check OK.</strong></span></p>
<p><span style="color: #008000"><strong>The system is going down NOW !!</strong></span></p>
<p><strong> </strong>If you are not certain and you leave the drive in after the system reboots you will see the following message indication that the configs file on the disk is the same as the file on the system.</p>
<p><strong> </strong><span style="color: #008000"><strong>Get config file from USB disk OK.<br />
Checksum check synced! Don&#8217;t need restore config.</strong></span></p>
<p>&nbsp;</p>
<p><strong> Additional Troubleshooting:</strong></p>
<p>After I restored the config file I was still unable to connect out to the internet, so I issued the following command to verify my IP address setting:</p>
<p><span style="color: #008000"><strong>FG100A # get system interface  </strong></span></p>
<p>After discovering that the IP address for my external interface <strong>WAN1</strong> had a different subnet than the one I wrote down previously when I connected directly to my ISP modem with my PC. I decided to change the interface type to DHCP.</p>
<p>&nbsp;</p>
<p><strong>Configuring external interface for DHCP:</strong></p>
<p><span style="color: #008000"><strong>FG100A #  configs system interface </strong><span style="color: #800000"><strong>&#8211;&gt; To enter into Interface config mode</strong></span></span></p>
<p><span style="color: #008000"><strong>FG100A (interface) # edit wan1 </strong><span style="color: #800000"><strong>&#8211;&gt; Choose your external interface in our case it was wan1</strong></span></span></p>
<p><span style="color: #008000"><strong>FG100A (wan1) # unset ip <span style="color: #800000">&#8211;&gt; </span></strong><span style="color: #800000"><strong> Removing current static IP entry</strong></span></span></p>
<p><span style="color: #008000"><strong>FG100A (wan1) # set mode dhcp </strong><strong>&#8211;&gt; To change mode to DHCP from static</strong></span></p>
<p><span style="color: #008000"><strong>FG100A (wan1) # show </strong><span style="color: #800000"><strong>&#8211;&gt; To confirm that the change was made</strong></span></span></p>
<p><span style="color: #008000"><strong>config system interface<br />
edit &#8220;wan1&#8243;<br />
set vdom &#8220;root&#8221;<br />
set mode dhcp<br />
set allowaccess https ssh fgfm<br />
set type physical<br />
next<br />
end</strong></span></p>
<p><strong> </strong><span style="color: #008000"><strong>FG100A (wan1) # end </strong></span></p>
<p><strong> I was now able to access the internet!!</strong></p>
<p><strong>Discovering what happened:</strong></p>
<p><span style="color: #800000"><strong>Wrap-up:</strong></span></p>
<p>Given that the logs were lost due the fact the FortiGate was reset and the unit is storing it&#8217;s logs in RAM, I can&#8217;t diagnose the exact cause. But we did see in the Crashlog &#8220;diag debug crashlog read&#8221;, which is written to flash that the cmdbsvr was crashing. We have identified a issue with cmdbsvr on the version of fortios on your fortigate.</p>
<p><strong>Bug #&#8217;s : 117281, 144277</strong><br />
Summary : cmdbsvr crash in conserve mode may cause configuration loss</p>
<p>I updated the device to MR3 patch 2, since this version addressed the issue.<br />
<strong>Reference Documentation:</strong></p>
<p><a href="http://emea.fortinet.net/fortinet/bht/index.php">http://emea.fortinet.net/fortinet/bht/index.php</a></p>
<p><a href="http://bit.ly/uRSdYJ">http://bit.ly/uRSdYJ</a></p>
<p><a href="http://docs.fortinet.com/fscan/fortiscan_cli_40.pdf">http://docs.fortinet.com/fscan/fortiscan_cli_40.pdf</a></p>
]]></content:encoded>
			<wfw:commentRss>http://infolookup.securegossip.com/2011/12/06/troubleshooting-fortigate-100a-connectivity-issue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Block users from creating global distribution list in Exchange 2010</title>
		<link>http://infolookup.securegossip.com/2011/10/13/block-users-from-creating-global-distribution-list-in-exchange-2010/</link>
		<comments>http://infolookup.securegossip.com/2011/10/13/block-users-from-creating-global-distribution-list-in-exchange-2010/#comments</comments>
		<pubDate>Thu, 13 Oct 2011 21:30:59 +0000</pubDate>
		<dc:creator>Sherwyn</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[How To's]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[Outlook Web App]]></category>
		<category><![CDATA[Public Groups]]></category>

		<guid isPermaLink="false">http://infolookup.securegossip.com/?p=640</guid>
		<description><![CDATA[Hello all, so once more I have another post that&#8217;s Exchange 2010 related; why you ask because with so much to learn about Exchange you can never stop talking about it. So the issue I was faced with a few weeks ago was trying to figure out how to stop the students at the Uni [...]]]></description>
			<content:encoded><![CDATA[<p>Hello all, so once more I have another post that&#8217;s Exchange 2010 related; why you ask because with so much to learn about Exchange you can never stop talking about it. So the issue I was faced with a few weeks ago was trying to figure out how to stop the students at the Uni I worked for from created their personal  groups and publishing it to the GAL (Global Address List) for everyone to see.</p>
<p>Just picture the president of the college trying to search for a contact and seeing something like <strong>&#8220;HackerContacts&#8221;</strong> as an option, that might trigger a few calls to the IT department.</p>
<p>I release that by default Exchange 2010 &#8220;Default Role Assignment Policy&#8221; allow all users to login via Outlook Web App, go to options &#8211;&gt; see all options, then click on the groups options and on the right under &#8220;Public Groups I Own&#8221; a user can create a new group which would be published in the GAL.</p>
<p><a href="http://infolookup.securegossip.com/files/Image1.png"><img class="aligncenter size-medium wp-image-641" src="http://infolookup.securegossip.com/files/Image1-300x129.png" alt="" width="300" height="129" /></a>After doing some research I release to block this you need to edit the &#8220;Default Role Assignment Policy&#8221; and uncheck the options under &#8220;Distribution groups, and Distribution group membership&#8221;.</p>
<ul>
<li>On your exchange server go to the<strong> </strong><strong>toolbox</strong>-&gt;<strong>Role Based Access Control, </strong>This will launch IE and attempt to open the permissions area. If this does not open/work double check the account your logged in has a mailbox on 2010 first or is in the Enterprise admin group.</li>
<li>You should see 2 menu items, &#8220;<strong>Users &amp; Groups</strong>&#8221; and &#8220;<strong>Reporting</strong>&#8221; , You want &#8220;<strong>Users &amp; Groups</strong>&#8221; then switch to the &#8220;<strong>User Roles</strong>&#8221; tab. In there edit the &#8220;<strong>Default Role Assignment Policy</strong>&#8221; which will pop up in a new window. All you have to do is remove the checkboxes as required  and it will get rid of the option for you.</li>
</ul>
<p><a href="http://infolookup.securegossip.com/files/Outlook-default-policy.png"><img class="aligncenter size-medium wp-image-642" src="http://infolookup.securegossip.com/files/Outlook-default-policy-300x286.png" alt="" width="300" height="286" /></a></p>
<p>&nbsp;</p>
<p>Hope you found this useful, leave a comment if you have a better way or doing this or if these steps did not solve the issue for you. Thanks for reading!</p>
<p>Resource:</p>
<p><a href="http://help.outlook.com/en-gb/140/ee424427.aspx">http://help.outlook.com/en-gb/140/ee424427.aspx</a></p>
<p><a href="http://www.edugeek.net/forums/windows/53916-outlook-web-app-exchange-2010-public-groups.html">http://www.edugeek.net/forums/windows/53916-outlook-web-app-exchange-2010-public-groups.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://infolookup.securegossip.com/2011/10/13/block-users-from-creating-global-distribution-list-in-exchange-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rooted your Droid, now what?</title>
		<link>http://infolookup.securegossip.com/2011/10/03/rooted-your-droid-now-what/</link>
		<comments>http://infolookup.securegossip.com/2011/10/03/rooted-your-droid-now-what/#comments</comments>
		<pubDate>Mon, 03 Oct 2011 22:10:46 +0000</pubDate>
		<dc:creator>Sherwyn</dc:creator>
				<category><![CDATA[How To's]]></category>
		<category><![CDATA[Android Apps]]></category>
		<category><![CDATA[Android OS]]></category>
		<category><![CDATA[Mobile Security]]></category>
		<category><![CDATA[Rooting]]></category>

		<guid isPermaLink="false">http://infolookup.securegossip.com/?p=635</guid>
		<description><![CDATA[Hello all, I know I have been a bit lazy on the posting of new content for a while, hopefully my busy schedule is now getting a little  more manageable and I can start back blogging. Apart from work being crazy recently I was involved with assisting my wife with her debut album that will be released by year end, [...]]]></description>
			<content:encoded><![CDATA[<p>Hello all, I know I have been a bit lazy on the posting of new content for a while, hopefully my busy schedule is now getting a little  more manageable and I can start back blogging. Apart from work being crazy recently I was involved with assisting my wife with her debut album that will be released by year end, check her out on <a href="www.facebookcom/yonetteodessa" target="_blank">www.facebookcom/yonetteodessa</a> and become a fan <img src='http://infolookup.securegossip.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p>Ok back to reason why you visited the blog, I recently got a new phone <a href="http://www.verizonwireless.com/b2c/store/controller?item=phoneFirst&amp;action=viewPhoneDetail&amp;selectedPhoneId=5716" target="_blank">&#8220;Verizon Droid Bionic&#8221;, </a> this for me was a big change from my current Blackberry storm, so after playing around with the phone for about 2 weeks I started wondering what else can I do with this powerful little machine in my pocket.</p>
<p>I went ahead like any techno enthusiast powered up my Linux net-book and rooted my device using a guide found over at <a href="http://droidbionicroot.com/droid-bionic-root/how-to-root-droid-bionic-on-mac-or-linux/" target="_blank">www.droidbionicroot.com </a>, and I was up and running in a few mins.</p>
<p>Next I started to ask myself, ok I have rooted my Droid now what? While doing some searching online I came across a few things that you might want to do after rooting your device:</p>
<ul>
<li>Tweak your device for longer battery life &#8211;&gt; courtesy of <a href="http://forums.androidcentral.com/bionic-rooting-roms-hacks/122524-hybrid-bionic.html" target="_blank">http://forums.androidcenteral.com</a></li>
<li>Start learning about ROMs, how to backup/install</li>
<ul>
<li>Useful forums you should signup for:</li>
<ul>
<li><a href="http://forum.cyanogenmod.com/">http://forum.cyanogenmod.com/</a></li>
<li><a href="http://rootzwiki.com/register.php">http://rootzwiki.com/register.php</a></li>
<li><a href="http://forums.androidcentral.com/">http://forums.androidcentral.com/</a></li>
</ul>
</ul>
<li>If  you want to start installing custom ROMs you need &#8220;ROM Manager&#8221; -&gt;  <a href="http://www.clockworkmod.com/">http://www.clockworkmod.com/</a></li>
<li>Other interesting apps I have installed so far:</li>
<ul>
<li><a href="http://www.hackersgarage.com/how-to-install-droidsheep-firesheep-alternative-for-android-phones.html" target="_blank">Droidsheep</a> (Awesome Session Hijacking Android app) &#8211;<strong>Need root</strong></li>
<li><a href="https://market.android.com/details?id=com.keramidas.TitaniumBackup&amp;feature=search_result" target="_blank">Titanium Backup</a> ( Backup ALL apps,remove bloatware &amp; MORE) <strong>&#8211;Need root</strong></li>
<li><a href="https://market.android.com/details?id=net.rclemons.arpspoof&amp;feature=search_result" target="_blank">Arpspoof</a> (Broadcast spoofed ARP messages) <strong>&#8211;Need root</strong></li>
<li><a href="https://market.android.com/details?id=com.bigtincan.android.adfree&amp;feature=search_result" target="_blank">AdFree</a> ( removes most ads in the browser and other apps) &#8211;<strong>Need root</strong></li>
<li><a href="https://market.android.com/details?id=com.googlecode.droidwall.free&amp;feature=search_result" target="_blank">DroidWall</a> (Allows you to restrict which apps can access the network) <strong>&#8211;Need root</strong></li>
<li><a href="https://market.android.com/details?id=com.lookout&amp;feature=search_result" target="_blank">Lookout Security &amp; AV</a> (Antivirus, Phone Locator, Data Backup) <strong>&#8211;Does not need root</strong></li>
<li><a href="https://market.android.com/search?q=wifi+analyzer&amp;so=1&amp;c=apps" target="_blank">Wifi Analyzer</a> (Turns your  phone into a Wi-Fi analyzer) &#8211;<strong>Does not need root </strong></li>
<li><a href="https://market.android.com/details?id=com.prey&amp;feature=search_result" target="_blank">Prey</a> (Track download your lost of stolen device) &#8211;<strong>Does not need root </strong></li>
<li><a href="https://market.android.com/details?id=com.dropbox.android&amp;feature=search_result" target="_blank">Dropbox</a> (cloud storage access) &#8211;<strong>Does not need root </strong></li>
<li><a href="https://market.android.com/details?id=com.android.keepass&amp;feature=search_result" target="_blank">KeePassDroid</a> (Securely store your passwords) &#8211; <strong>Does not need root </strong></li>
</ul>
<li>Apps referred by friends  but I have not tested them as yet:</li>
<ul>
<li><a href="https://market.android.com/details?id=soapbox.sym3try.andguard&amp;feature=search_result" target="_blank">AndGuard</a> (Powerful Ad-Blocker and Internet Security App) &#8211;<strong>need root </strong></li>
<li><a href="https://market.android.com/details?id=com.parizene.netmonitor&amp;feature=search_result" target="_blank">Netmonitor</a> (Monitor GSM/CDMA network) &#8211;<strong>Does not need root </strong></li>
</ul>
</ul>
<div>I am aware that some of the  apps listed above does not require you to root your device, however rooting your device allows you to do tons of kool stuff if you are adventurous.You can increase your batter life,   install  custom ROMs ( I cant wait for a CyannogenMod for the Droid Bionic to be released), install your favorite Linux apps once there is a port available and most importantly gives you more control over your device to truly learn whats under the hood.</div>
<div><span style="color: #800000"><strong>Caution:</strong> Be mindful what type of apps your install or where you are installing them from because you could easily get your device con.</span></div>
<p>I would love to know what are others doing with there device, please leave a comment and share.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://infolookup.securegossip.com/2011/10/03/rooted-your-droid-now-what/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exchange 2010 and AD user provisioning script</title>
		<link>http://infolookup.securegossip.com/2011/08/31/exchange-2010-and-ad-user-provisioning-script/</link>
		<comments>http://infolookup.securegossip.com/2011/08/31/exchange-2010-and-ad-user-provisioning-script/#comments</comments>
		<pubDate>Wed, 31 Aug 2011 20:59:50 +0000</pubDate>
		<dc:creator>Sherwyn</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://infolookup.securegossip.com/?p=630</guid>
		<description><![CDATA[Hello all, so  I know its been a while since my last post and I have not really posted anything Infosec related recently but to be honest I have been so busy at work I have not had any time for anything else. Today I wanted to share with you a script that I originally got from [...]]]></description>
			<content:encoded><![CDATA[<p>Hello all, so  I know its been a while since my last post and I have not really posted anything Infosec related recently but to be honest I have been so busy at work I have not had any time for anything else.</p>
<p>Today I wanted to share with you a script that I originally got from  <a title="My Exchange World" href="http://www.myexchangeworld.com/2010/02/powershell-provisioning-users/" target="_blank">http://www.myexchangeworld.com</a> , I have been working on tweaking this script as part of our migration to 2010. We normally get a list csv file with (Firstname, Lastname, StudentID) from our registra department and we have to create AD, and Exchange user account for these users.</p>
<p>The script would have worked as it is but instead of adding the following fields in the csv file I wanted to have the script input these vaules on the fly:</p>
<ul>
<li> User principal name</li>
<li>Alias</li>
<li>Database</li>
<li>OU</li>
<li>Display Name</li>
<li>Retention policy</li>
</ul>
<div>Also we currently have three Exchange database for our Students (Student Store A-F, G-M and N-Z). So if a user last name matches any of those the script needed to automatically sort the user in the correct store.</div>
<div>This part of the script handled that:</div>
<div>
<blockquote>
<pre><span style="color: #008000">Function ReadCSV</span>
<span style="color: #008000"> {</span>
<span style="color: #008000"> Param([string]$fileName)</span>
<span style="color: #008000"> $users = Import-Csv $fileName</span>
<span style="color: #008000"> foreach ($user in $users){</span>
<span style="color: #008000"> $flln = $user.'last name'.ToUpper().Substring(0)</span>
<span style="color: #008000"> $db = ""</span>
<span style="color: #008000"> if(($flln.CompareTo("A") -ge 0) -and ($flln.CompareTo("F") -le 0)){</span>
<span style="color: #008000"> $db = "Student Store A-F"</span>
<span style="color: #008000"> }</span>
<span style="color: #008000"> elseif($flln.CompareTo("G") -ge 0 -and $flln.CompareTo("M") -le 0){</span>
<span style="color: #008000"> $db = "Student Store G-M"</span>
<span style="color: #008000"> }</span>
<span style="color: #008000"> else{</span>
<span style="color: #008000"> $db = "Student Store N-Z"</span>
<span style="color: #008000"> }</span></pre>
</blockquote>
</div>
<div>And here is the entire script &#8211;&gt;<a href="http://pastebin.com/Lwcd4t4Y">http://pastebin.com/Lwcd4t4Y</a></div>
<div>I still have a few issues and maybe someone can help me with them:</div>
<div>
<ul>
<li>According to a posting over at  <a href="http://social.technet.microsoft.com/Forums/en-US/winserverpowershell/thread/09eb232d-4b52-4a10-9a47-9f9e279a9b86/" target="_blank">technet social </a> I am unable to use the New-Mailbox cmdlest to add the user ID number to the Office field of the AD user properties.</li>
<li>I am also trying to add a portion after the user create portion to add group memberships and user profile path</li>
</ul>
<div>I must also give a big shutout to byte_bucket over at the pauldotcom IRC room for helping me tweak this script, enjoy and leave your comments.</div>
</div>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://infolookup.securegossip.com/2011/08/31/exchange-2010-and-ad-user-provisioning-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Allow full mailbox access</title>
		<link>http://infolookup.securegossip.com/2011/08/09/allow-full-mailbox-access/</link>
		<comments>http://infolookup.securegossip.com/2011/08/09/allow-full-mailbox-access/#comments</comments>
		<pubDate>Tue, 09 Aug 2011 21:41:39 +0000</pubDate>
		<dc:creator>Sherwyn</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[How To's]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[HOWTO]]></category>
		<category><![CDATA[Mailbox access]]></category>

		<guid isPermaLink="false">http://infolookup.securegossip.com/?p=625</guid>
		<description><![CDATA[We have recently upgraded to Exchange 2010 from 2003 and with that update comes new ways of dealing with old recurring task, I will try to outline over the new few blog posting how to accomplish these task. If you are ask to remove or grant someone access to a user’s mailbox below is the [...]]]></description>
			<content:encoded><![CDATA[<p>We have recently upgraded to Exchange 2010 from 2003 and with that update comes new ways of dealing with old recurring task, I will try to outline over the new few blog posting how to accomplish these task. If you are ask to remove or grant someone access to a user’s mailbox below is the recommended approach.</p>
<p>You can do this two ways first is via the Exchange management console (EMC) or via the PowerShell:</p>
<p><strong>EMC approach:</strong></p>
<p>You need to be assigned permissions before you can perform this procedure. To see what permissions you need, see the &#8220;Permissions and delegation&#8221; entry in the <a href="http://technet.microsoft.com/en-us/library/dd638132.aspx">Mailbox Permissions</a> topic.</p>
<ol>
<li>In the console tree, navigate to <strong>Recipient      Configuration</strong> &gt;<strong> Mailbox</strong>.</li>
<li>In the result pane, select the mailbox for which you      want to grant Full Access permission.</li>
<li>In the action pane, under the mailbox name, click <strong>Manage      Full Access Permission</strong>. The Manage Full Access Permission wizard      opens.</li>
<li>On the <strong>Manage Full Access Permission</strong> page, click      <strong>Add</strong>.</li>
<li>In <strong>Select User or Group</strong>, select the user to      which you want to grant Full Access permission, and then click <strong>OK</strong>.</li>
<li>Click <strong>Manage</strong>.</li>
<li>On the <strong>Completion</strong> page, the <strong>Summary</strong> states whether Full Access permission was successfully granted. The      summary also displays the Shell command used to grant Full Access      permission.</li>
<li>Click <strong>Finish</strong>.</li>
</ol>
<p><strong>PowerShell approach:</strong></p>
<p>You need to be assigned permissions before you can perform this procedure. To see what permissions you need, see the &#8220;Permissions and delegation&#8221; entry in the <a href="http://technet.microsoft.com/en-us/library/dd638132.aspx">Mailbox Permissions</a> topic.<br />
First verify who currently has access to the user’s mailbox with the Get-MailboxPremission cmdlet, you will notice several default system accords you are only concern with user accounts.</p>
<p><span style="color: #008000"><strong>Get-GmailboxPermission “John Doe”</strong></span></p>
<p>If you want to remove Jane Doe  from having full access to John&#8217;s  mailbox you can do the following:</p>
<p><span style="color: #008000"><strong>Remove-MailboxPermission &#8220;John Doe&#8221; -AccessRights FullAccess -User &#8220;Jane Doe&#8221;</strong></span></p>
<p>If  you are ask to  grant the user Marry Full Access permission to Frank&#8217;s mailbox do the following:</p>
<p><span style="color: #008000"><strong>Add-MailboxPermission &#8220;Frank Loew&#8221; -User &#8220;Mary May&#8221; -AccessRights FullAccess</strong></span></p>
<p><strong> </strong></p>
<p><strong>Once you are finish granting access just mount the mailbox via outlook and close and reopen outlook and it should be accessible.</strong></p>
<p><strong>Source:</strong></p>
<p><a href="http://technet.microsoft.com/en-us/library/aa996343.aspx">http://technet.microsoft.com/en-us/library/aa996343.aspx </a></p>
]]></content:encoded>
			<wfw:commentRss>http://infolookup.securegossip.com/2011/08/09/allow-full-mailbox-access/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

