<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>SecureSlash.com</title>
	
	<link>http://secureslash.com</link>
	<description>Because security matters</description>
	<lastBuildDate>Fri, 14 May 2010 23:08:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Secureslashcom" /><feedburner:info uri="secureslashcom" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>How to assign multiple IP’s in Debian Linux</title>
		<link>http://feedproxy.google.com/~r/Secureslashcom/~3/FKko-65VCYg/</link>
		<comments>http://secureslash.com/linux/how-to-assign-multiple-ips-in-debian-linux/#comments</comments>
		<pubDate>Fri, 14 May 2010 23:06:54 +0000</pubDate>
		<dc:creator>Sugan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[/etc/network/interface]]></category>
		<category><![CDATA[assign multiple ip address]]></category>
		<category><![CDATA[debain network restart command]]></category>
		<category><![CDATA[debian commands]]></category>
		<category><![CDATA[if-up.d/mountnfs[eth0:1]: waiting for interface eth0:2 before doing NFS mounts (warning).]]></category>

		<guid isPermaLink="false">http://secureslash.com/?p=155</guid>
		<description><![CDATA[Debian Linux command to get into network interface card
#vi /etc/network/interfaces
How to assign multiple IP addresses in debian linux:
You can assign multiple IP addresses to the same network interface by using interface alias. This is useful if you need to have more than one server visible on the internet. Note that for multiple Apache servers you [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Debian Linux command to get into network interface card</strong></p>
<p>#vi /etc/network/interfaces</p>
<p><strong>How to assign multiple IP addresses in debian linux:</strong></p>
<p>You can assign multiple IP addresses to the same network interface by using interface alias. This is useful if you need to have more than one server visible on the internet. Note that for multiple Apache servers you can use virtual hosts to add as many servers as you like with one single IP address.Apache simply utilises the domain name supplied by the client in the http host header.</p>
<p>You must turn off dhcp because you must use static assignment if you are configuring multiple IPs, so basically this file is:</p>
<p><em># The loopback network interface<br />
auto lo<br />
iface lo inet loopback</em></p>
<p><em># The primary network interface<br />
auto eth0<br />
iface eth0 inet static<br />
address 192.168.1.90<br />
gateway 192.168.1.1<br />
netmask 255.255.255.0<br />
network 192.168.1.0<br />
broadcast 192.168.1.255</em></p>
<p>Assuming that you interface is eth0, you can assign three IP addresses editing /etc/network/interfaces similar to this:</p>
<p><em># the loopback interface<br />
auto lo<br />
iface lo inet loopback</em></p>
<p><em>#<br />
auto eth0<br />
iface eth0 inet static<br />
address 192.168.1.42<br />
netmask 255.255.255.0<br />
broadcast 192.168.1.255<br />
gateway 192.168.1.1</em></p>
<p><em>auto eth0:0<br />
iface eth0:0 inet static<br />
address 192.168.1.41<br />
netmask 255.255.255.0<br />
broadcast 192.168.1.255</em></p>
<p><em>auto eth0:1<br />
iface eth0:1 inet static<br />
address 192.168.1.43<br />
netmask 255.255.255.0<br />
broadcast 192.168.1.255</em></p>
<p><em>auto eth0:2<br />
iface eth0:2 inet static<br />
address 192.168.1.44<br />
netmask 255.255.255.0<br />
broadcast 192.168.1.255</em></p>
<p><strong>Note that gateway is only assigned to eth0.</strong> If you include dns-nameservers, it should also only be specified for eth0.</p>
<p>If you make changes to this file you can cause them to take effect by running:<br />
<strong>/etc/init.d/networking restart</strong></p>
<p># /etc/init.d/networking restart<br />
Reconfiguring network interfaces&#8230;if-up.d/mountnfs[eth0]: waiting for interface eth0:0 before doing NFS mounts (warning).<br />
if-up.d/mountnfs[eth0]: waiting for interface eth0:1 before doing NFS mounts (warning).<br />
if-up.d/mountnfs[eth0]: waiting for interface eth0:2 before doing NFS mounts (warning).<br />
if-up.d/mountnfs[eth0:0]: waiting for interface eth0:1 before doing NFS mounts (warning).<br />
if-up.d/mountnfs[eth0:0]: waiting for interface eth0:2 before doing NFS mounts (warning).<br />
if-up.d/mountnfs[eth0:1]: waiting for interface eth0:2 before doing NFS mounts (warning).<br />
done.</p>
<p><strong>How to fix  if-up.d/mountnfs[eth0:1]: waiting for interface eth0:2 before doing NFS mounts (warning). ?</strong></p>
<p>Reconfiguring network interfaces&#8230;if-up.d/mountnfs[eth0]: waiting for interface eth0:0 before doing NFS mounts (warning).<br />
if-up.d/mountnfs[eth0]: waiting for interface eth0:1 before doing NFS mounts (warning).<br />
if-up.d/mountnfs[eth0]: waiting for interface eth0:2 before doing NFS mounts (warning).<br />
if-up.d/mountnfs[eth0:0]: waiting for interface eth0:1 before doing NFS mounts (warning).<br />
if-up.d/mountnfs[eth0:0]: waiting for interface eth0:2 before doing NFS mounts (warning).<br />
if-up.d/mountnfs[eth0:1]: waiting for interface eth0:2 before doing NFS mounts (warning).<br />
done.</p>
<p><strong>Solution:</strong></p>
<p>It means that it is making sure that all &#8216;net interfaces are up before trying to mount a network based filesystem.</p>
]]></content:encoded>
			<wfw:commentRss>http://secureslash.com/linux/how-to-assign-multiple-ips-in-debian-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://secureslash.com/linux/how-to-assign-multiple-ips-in-debian-linux/</feedburner:origLink></item>
		<item>
		<title>How to Fix Trojan.FakeAlert.5 Bitdefender Alert?</title>
		<link>http://feedproxy.google.com/~r/Secureslashcom/~3/MdeGFTYVzxk/</link>
		<comments>http://secureslash.com/security-tools/how-to-fix-trojan-fakealert-5-bitdefender-alert/#comments</comments>
		<pubDate>Sat, 20 Mar 2010 19:29:02 +0000</pubDate>
		<dc:creator>KarthiKeyan</dc:creator>
				<category><![CDATA[Computer Users]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Security Tools]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[bitdefender update]]></category>
		<category><![CDATA[how to fix trojan fake alert]]></category>
		<category><![CDATA[trojan fake alert problem]]></category>

		<guid isPermaLink="false">http://secureslash.com/?p=145</guid>
		<description><![CDATA[Well, Today is the craziest day for Bitdefender. This looks like a climax of the movie iRobot. Thousands of windows users install bitdefender for securing their machine. But, Unfortunately a lame update file from bitdefender started killing itself(literally).
Today, All Windows7 64bit users received a threat alert called &#8220;Trojan.Fakealert.5&#8243;. 
And it detected all DLL files / [...]]]></description>
			<content:encoded><![CDATA[<p>Well, Today is the craziest day for Bitdefender. This looks like a climax of the movie iRobot. Thousands of windows users install bitdefender for securing their machine. But, Unfortunately a lame update file from bitdefender started killing itself(literally).</p>
<p>Today, All Windows7 64bit users received a threat alert called &#8220;<strong>Trojan.Fakealert.5&#8243;. </strong></p>
<p>And it detected all DLL files / EXEs of my windows machine as a trojan and started deleting them. You know how frustrates it? I really have a paid account for Bit Defender Internet Security 2010. I ignored my nerd friend&#8217;s words about installing a 3000 days crack for bitdefender and I called myself as &#8220;I dont want to steal someone&#8217;s work&#8221;.</p>
<p>But today, My taskmanager, explorer &amp; almost everything got quarantine. I didnt paid to bitdefender for this lame mistake.</p>
<p><a href="http://secureslash.com/wp-content/uploads/2010/03/win7logo.jpg"><img class="size-full wp-image-146 alignnone" title="windows 7 logo" src="http://secureslash.com/wp-content/uploads/2010/03/win7logo.jpg" alt="" /></a></p>
<p><strong>What is the cause of Trojan.FakeAlert.5?</strong></p>
<p>There was a wrong update from bitdefender caused this issue.</p>
<p><strong>How to fix<strong>Trojan.FakeAlert.5</strong>?</strong><strong><br />
</strong><br />
Disable the realtime protection</p>
<p>Antivirus -&gt; Shield -&gt; Disable Real-time protection.</p>
<p>Do not run any scans. Disable if there is any scheduled scans.</p>
<p>Try to do a &#8220;System Restore&#8221; or restore the &#8220;Quarantine&#8221; files.</p>
<p>There a big thread at <a href="http://forum.bitdefender.com/index.php?showtopic=18759">bitdefender forums</a> with thousands of active frustrated users(including me) shouting bitdefender for this lame problem.</p>
<p><a href="http://forum.bitdefender.com/index.php?showtopic=18759"><img class="alignnone size-full wp-image-151" title="bitdefender" src="http://secureslash.com/wp-content/uploads/2010/03/bitdefender1.png" alt="" width="525" height="285" /></a></p>
<p>Note: My friend &amp; <a href="http://secureslash.com/secure-team/paimpozhil">Secure Slash co-editor Mr. PaimPozhil</a> said to me that, There is a &#8220;real&#8221; trojan in that same name. So, Do not just disable bitdefender!  Scan your computer using &#8220;SpyBot Search &amp; Destroy&#8221; it will find the exact trojan alone as well. Thanks Paim <img src='http://secureslash.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://secureslash.com/security-tools/how-to-fix-trojan-fakealert-5-bitdefender-alert/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://secureslash.com/security-tools/how-to-fix-trojan-fakealert-5-bitdefender-alert/</feedburner:origLink></item>
		<item>
		<title>Gmail 502 Server Error Again!!</title>
		<link>http://feedproxy.google.com/~r/Secureslashcom/~3/pDVSd_Ey2ro/</link>
		<comments>http://secureslash.com/google-services/gmail-502-server-error-again/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 21:09:47 +0000</pubDate>
		<dc:creator>KarthiKeyan</dc:creator>
				<category><![CDATA[Google Services]]></category>
		<category><![CDATA[Google 502 Server Error]]></category>

		<guid isPermaLink="false">http://secureslash.com/?p=129</guid>
		<description><![CDATA[I wonder how bad Google is in handing 502.
It happens once again in same year. Probably more than 4 times in 2009?
If you are facing the problem while loading www.gmail.com . Just wait till they resolve this issue.
But the shame thing is.. Its corporate email solution www.google.com/a works perfect.
]]></description>
			<content:encoded><![CDATA[<p>I wonder how bad Google is in handing 502.</p>
<p>It happens once again in same year. Probably more than 4 times in 2009?</p>
<p>If you are facing the problem while loading www.gmail.com . Just wait till they resolve this issue.</p>
<p>But the shame thing is.. Its corporate email solution www.google.com/a works perfect.</p>
]]></content:encoded>
			<wfw:commentRss>http://secureslash.com/google-services/gmail-502-server-error-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://secureslash.com/google-services/gmail-502-server-error-again/</feedburner:origLink></item>
		<item>
		<title>Windows 7 with Wide Driver Support</title>
		<link>http://feedproxy.google.com/~r/Secureslashcom/~3/ZDOQJtQpGKI/</link>
		<comments>http://secureslash.com/computer-users/windows-7-with-wide-driver-support/#comments</comments>
		<pubDate>Fri, 07 Nov 2008 04:24:38 +0000</pubDate>
		<dc:creator>KarthiKeyan</dc:creator>
				<category><![CDATA[Computer Users]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[windows 7]]></category>
		<category><![CDATA[windows 7 driver]]></category>
		<category><![CDATA[windows 7 driver downloads]]></category>

		<guid isPermaLink="false">http://secureslash.com/?p=124</guid>
		<description><![CDATA[While DeVaan is adamant that 95% of PCs now have good driver support, Microsoft doesn&#8217;t want a repeat of that experience when Windows 7 comes around, and thus constantly emphasised the need to cooperate with hardware builders. &#8220;Ecosystem readiness is a super-important part of the lessons learned,&#8221; DeVaan said.





That may be slightly easier because Windows [...]]]></description>
			<content:encoded><![CDATA[<p>While DeVaan is adamant that 95% of PCs now have good driver support, Microsoft doesn&#8217;t want a repeat of that experience when Windows 7 comes around, and thus constantly emphasised the need to cooperate with hardware builders. &#8220;Ecosystem readiness is a super-important part of the lessons learned,&#8221; DeVaan said.<br />
<script type="text/javascript"><!--
google_ad_client = "pub-1553934370392546";
google_ad_width = 300;
google_ad_height = 250;
google_ad_format = "300x250_as";
google_ad_type = "text";
//2007-08-15: SecureSlash - SideBox
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "2f63b3";
google_color_text = "000000";
google_color_url = "CCCCCC";

//-->
</script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<br />
That may be slightly easier because Windows 7 represents a less radical evolution for hardware companies. &#8220;In Vista, we changed a lot of our device driver models and other things at low levels of the system,&#8221; DeVaan said. &#8220;For Windows 7, we have the tenet that if something works on Vista, it really should work on Windows 7.&#8221;</p>
<p>Indeed, while Windows 7 has an enhanced driver installation model that is designed to simplify installation, many of its features are implemented via XML and other information stored in what&#8217;s known as the Device Display Object. In theory, hardware manufacturers can simply add those components to their existing Vista driver rather than rewriting the entire code base.<br />
<script type="text/javascript"><!--
google_ad_client = "pub-1553934370392546";
google_ad_width = 300;
google_ad_height = 250;
google_ad_format = "300x250_as";
google_ad_type = "text";
//2007-08-15: SecureSlash - SideBox
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "2f63b3";
google_color_text = "000000";
google_color_url = "CCCCCC";

//-->
</script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<br />
However, the window of opportunity (ahem) for relatively private testing won&#8217;t be wide. Windows vice president Steven Sinofsky confirmed that Microsoft hopes to have a widespread release of an official Windows 7 beta in early 2009. Although widely available both via its PDC and WinHEC appearances and through numerous illegal torrent sites, the current Windows 7 release is the internal M3 candidate, which is missing many new UI features and isn&#8217;t being touted as feature-complete, but rather as a pre-beta. (Most of the demos at WinHEC, incidentally, were on later internal builds.)</p>
<p><a href="http://www.itworld.com/security/57285/once-thought-safe-wpa-wi-fi-encryption-cracked">Read the full story</a></p>
]]></content:encoded>
			<wfw:commentRss>http://secureslash.com/computer-users/windows-7-with-wide-driver-support/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://secureslash.com/computer-users/windows-7-with-wide-driver-support/</feedburner:origLink></item>
		<item>
		<title>WPA Wi-Fi encryption is cracked</title>
		<link>http://feedproxy.google.com/~r/Secureslashcom/~3/dDH0ZvKsGK8/</link>
		<comments>http://secureslash.com/networking-and-security/wpa-wi-fi-encryption-is-cracked/#comments</comments>
		<pubDate>Fri, 07 Nov 2008 04:19:29 +0000</pubDate>
		<dc:creator>KarthiKeyan</dc:creator>
				<category><![CDATA[Networking & Security]]></category>
		<category><![CDATA[Wireless]]></category>
		<category><![CDATA[how to crack wi-fi]]></category>
		<category><![CDATA[wifi cracked in japan]]></category>
		<category><![CDATA[wifi hacking]]></category>
		<category><![CDATA[wifi security]]></category>
		<category><![CDATA[WPA cracking]]></category>

		<guid isPermaLink="false">http://secureslash.com/?p=122</guid>
		<description><![CDATA[November 6, 2008, 09:23 AM â€” IDG News Service â€”
Security researchers say they&#8217;ve developed a way to partially crack the Wi-Fi Protected Access (WPA) encryption standard used to protect data on many wireless networks.

The attack, described as the first practical attack on WPA, will be discussed at the PacSec conference in Tokyo next week. There, [...]]]></description>
			<content:encoded><![CDATA[<div class="date_src"><span class="publish_date">November 6, 2008, 09:23 AM â€” </span><span class="source_link">IDG News Service</span> â€”</div>
<p><!--paging_filter-->Security researchers say they&#8217;ve developed a way to partially crack the Wi-Fi Protected Access (WPA) encryption standard used to protect data on many wireless networks.<br />
<!--adsense--><br />
The attack, described as the first practical attack on WPA, will be discussed at the <a href="http://pacsec.jp/">PacSec conference</a> in Tokyo next week. There, researcher Erik Tews will show how he was able to crack WPA encryption, in order to read data being sent from a router to a laptop computer. The attack could also be used to send bogus information to a client connected to the router.</p>
<p>To do this, Tews and his co-researcher Martin Beck found a way to break the Temporal Key Integrity Protocol (TKIP) key, used by WPA, in a relatively short amount of time: 12 to 15 minutes, according to Dragos Ruiu, the PacSec conference&#8217;s organizer.</p>
<p>They have not, however, managed to crack the encryption keys used to secure data that goes from the PC to the router in this particular attack</p>
<p>Security experts had known that TKIP could be cracked using what&#8217;s known as a dictionary attack. Using massive computational resources, the attacker essentially cracks the encryption by making an extremely large number of educated guesses as to what key is being used to secure the wireless data.</p>
<p>The work of Tews and Beck does not involve a dictionary attack, however.</p>
<p>To pull off their trick, the researchers first discovered a way to trick a WPA router into sending them large amounts of data. This makes cracking the key easier, but this technique is also combined with a &#8220;mathematical breakthrough,&#8221; that lets them crack WPA much more quickly than any previous attempt, Ruiu said.</p>
<p>Tews is planning to publish the cryptographic work in an academic journal in the coming months, Ruiu said. Some of the code used in the attack was quietly added to Beck&#8217;s <a href="http://www.aircrack-ng.org/doku.php">Aircrack-ng</a> Wi-Fi encryption hacking tool two weeks ago, he added.<br />
<!--adsense--><br />
WPA is widely used on today&#8217;s Wi-Fi networks and is considered a better alternative to the original WEP (Wired Equivalent Privacy) standard, which was developed in the late 1990s. Soon after the development of WEP, however, hackers found a way to break its encryption and it is now considered insecure by most security professionals. Store chain T.J. Maxx was in the process of upgrading from WEP to WPA encryption when it experienced one of the most widely publicized data breaches in U.S. history, in which hundreds of millions of credit card numbers were stolen over a two-year period.</p>
<p><a href="http://www.itworld.com/security/57285/once-thought-safe-wpa-wi-fi-encryption-cracked" target="_blank">Read Full Story</a></p>
]]></content:encoded>
			<wfw:commentRss>http://secureslash.com/networking-and-security/wpa-wi-fi-encryption-is-cracked/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://secureslash.com/networking-and-security/wpa-wi-fi-encryption-is-cracked/</feedburner:origLink></item>
		<item>
		<title>Android Open Source Project</title>
		<link>http://feedproxy.google.com/~r/Secureslashcom/~3/Ygk9cRddnxk/</link>
		<comments>http://secureslash.com/google-services/android-open-source-project/#comments</comments>
		<pubDate>Sun, 02 Nov 2008 02:07:45 +0000</pubDate>
		<dc:creator>KarthiKeyan</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Google Services]]></category>
		<category><![CDATA[Opensource World]]></category>
		<category><![CDATA[Vidoes]]></category>

		<guid isPermaLink="false">http://secureslash.com/?p=117</guid>
		<description><![CDATA[An introduction to Android Open Source Project. Android is the first free, open source, and fully customizable mobile platform. Android offers a full stack: an operating system, middleware, and key mobile applications. It also contains a rich set of APIs that allows third-party developers to develop great applications. Learn more at source.android.com


Introducing Android

Android Demo

Full Web [...]]]></description>
			<content:encoded><![CDATA[<p>An introduction to Android Open Source Project. Android is the first free, open source, and fully customizable mobile platform. Android offers a full stack: an operating system, middleware, and key mobile applications. It also contains a rich set of APIs that allows third-party developers to develop great applications. Learn more at source.android.com<br />
<!--adsense--><br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/7Y4thikv-OM&amp;hl=en&amp;fs=1" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/7Y4thikv-OM&amp;hl=en&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h1>Introducing Android</h1>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/6rYozIZOgDk&amp;hl=en&amp;fs=1" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/6rYozIZOgDk&amp;hl=en&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h1>Android Demo</h1>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/1FJHYqE0RDg&amp;hl=en&amp;fs=1" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/1FJHYqE0RDg&amp;hl=en&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h1>Full Web Experience: Web Browser on Android-Powered Phones</h1>
<p>On Android-powered phones, the browser lets users experience the full web and easily move between browsing and other tasks on their phone.<br />
<!--adsense--><br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/8lZkwaNx8_Y&amp;hl=en&amp;fs=1" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/8lZkwaNx8_Y&amp;hl=en&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h1>Android &#8211; Apps without borders</h1>
<p><span>Watch Android engineers demonstrate that applications on Android exist without borders. Apps on Android can access core mobile device functionality through standard APIs. Through intents, apps can announce their capabilities for other apps to use. </span><br />
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/3LkNlTNHZzE&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/3LkNlTNHZzE&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://secureslash.com/google-services/android-open-source-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://secureslash.com/google-services/android-open-source-project/</feedburner:origLink></item>
		<item>
		<title>SuperLamer &amp; His Vista Experience</title>
		<link>http://feedproxy.google.com/~r/Secureslashcom/~3/CA5EoUPCc1I/</link>
		<comments>http://secureslash.com/computer-users/superlamer-and-his-vista-experience/#comments</comments>
		<pubDate>Sun, 02 Nov 2008 01:58:54 +0000</pubDate>
		<dc:creator>KarthiKeyan</dc:creator>
				<category><![CDATA[Computer Users]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[memory dump files]]></category>
		<category><![CDATA[vista auto restart problem]]></category>
		<category><![CDATA[vista blue screen problem]]></category>
		<category><![CDATA[vista review]]></category>

		<guid isPermaLink="false">http://secureslash.com/?p=114</guid>
		<description><![CDATA[
Sunday:
One day a lamer installed his Vista Ultimate x86 just after adding 1Gig DDR ram. He noticed that installation was smooth and OEM Emulator also went nice. His installation passed in &#8220;Genuine&#8221; check too. Great!!
Monday:
I hate installating OS in my live machine. It will lead us to install all of our applications, Firewall, Antivirus (I [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" title="I hate Vista" src="http://bp1.blogger.com/_po0c63rEKcY/R4lGA8Nj_aI/AAAAAAAAAHg/bczI4nEdl34/s400/pissonVistaa.jpg" alt="" width="300" height="296" /></p>
<p>Sunday:</p>
<p>One day a lamer installed his Vista Ultimate x86 just after adding 1Gig DDR ram. He noticed that installation was smooth and OEM Emulator also went nice. His installation passed in &#8220;Genuine&#8221; check too. Great!!</p>
<p>Monday:</p>
<p>I hate installating OS in my live machine. It will lead us to install all of our applications, Firewall, Antivirus (I dont use &#8220;total security&#8221;, A primary Firewall only software is 5 times better than ALL Security shits here software). But Mr.Lamer is eager to download all of his day to day applications like (MSOffice, Winamp, WinRar, RoadRash, VCD Cutter, Yahoo Messenger, uTorrent &amp; etc).<br />
<!--adsense--><br />
Tuesday:</p>
<p>Everything was smooth. But, Suddenly he got Sky and some birds on monitor. LOL Yes, Blue Screen!</p>
<p>It says some xxx_POOL_Error &amp; Memory dump &#8230; He dont know why.</p>
<p>Wednesday:</p>
<p>He become very sad, Yes He already spent 5 days for downloading Vista from a ThePirateBay torrent. He started blaming Vista, Microsoft &amp; almost all microsoft products. He started explaing his experience with his friend. We know that all lamers has a better lamer as their friends. He too experienced same Sky &amp; Birds problem.</p>
<p>Thursday:</p>
<p>Mr.Lamer heard that most of his friends(ofcourse lamers) blamed vista. So he decided to go back to Xp Pro.</p>
<p>Friday:<br />
Windows XP Professional &#8211; WoW This is what I call stable OS!! Vista Sucks!! Vista Sucks!!</p>
<p><img class="alignnone" title="Apple Fans Hate Vista" src="http://farm1.static.flickr.com/159/432022605_02ae4f41ee.jpg?v=0" alt="" width="500" height="447" /></p>
<p>Well, I see lots of my classmates still blaming Vista.</p>
<p>How not to be a Lamer?</p>
<p>First Understand what is happening inside your hardware &amp; software.</p>
<p>First of all they have to understand onething that, Latest version is always better than older versions.<br />
No matter what powerful Processor you use. But You must need 2GB minimum ram.<br />
40% of RAM comes with &#8220;Failure&#8221; issue. If you are inserting two rams in your mobo then both of their FSB must be same.</p>
<p>If you use 333mhz &amp; 800mhz rams then you may expect &#8220;Auto restart&#8221; or Blue Screen problems.</p>
<p><a href="http://hellsinki.wordpress.com/2006/11/08/vista-sucks/"><img class="alignnone" title="Vista Sucks" src="http://hellsinki.files.wordpress.com/2006/11/vistasucks1.gif" alt="" width="379" height="529" /></a></p>
<p>Next one is your drivers. If you have installed a new modem, graphics card, audio device recently then you must check its installation status. An unsuccessful installation may lead BlueScreen errors.</p>
<p>Memory &amp; Drivers cause most of the blue screen problems. If you want to go deeper then download &amp; install Win Debug <cite>www.microsoft.com/whdc/devtools/<strong>debugging</strong>/ </cite>and analyze your DMP files.<br />
<!--adsense--><br />
It is an excellent tool to figure out your hardware issues.</p>
<p>Most of the lamers use pirated copy, They deserve 0$ and expects millions. You can find an another big lamer group in Digg.com they usually digg it &amp; comment bad on all microsoft related topics. They thinks themsevels as Linus, Larry Wall, GNU &amp; others. All they are JUST LAMERS.</p>
<p><img class="alignnone" src="http://www.shlomifish.org/open-source/anti/windows-vista/working-daze-02-oct-2007.jpg" alt="" width="352" height="421" /></p>
<p>lamers never analyze things, They stick with Peer group. They never find solutions. If you do the same then do not do it more. Find the solutions &amp; stop being a lamer.</p>
<p><img class="alignnone" src="http://www.jawjab.com/wp-content/uploads/2007/08/vistpen.jpg" alt="" width="400" height="300" /></p>
<p><img class="alignnone" src="http://cybernetnews.com/wp-content/uploads/2007/11/vista-leopard-suck.jpg" alt="" width="229" height="319" /></p>
<p><img class="alignnone" src="http://www.terminally-incoherent.com/blog/wp-content/uploads/2007/03/vista_experience.jpg" alt="" width="500" height="632" /></p>
<p><img class="alignnone" src="http://www.geekculture.com/joyoftech/joyimages/948.gif" alt="" width="586" height="731" /></p>
<p>Lamers can not find the exact problem and solution. All they can say is</p>
<p>&#8220;I suck last night, Vista does now!&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>http://secureslash.com/computer-users/superlamer-and-his-vista-experience/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://secureslash.com/computer-users/superlamer-and-his-vista-experience/</feedburner:origLink></item>
		<item>
		<title>No Matter the Question, Google is the Answer</title>
		<link>http://feedproxy.google.com/~r/Secureslashcom/~3/Aldf1gCKh3Y/</link>
		<comments>http://secureslash.com/google-services/no-matter-the-question-google-is-the-answer/#comments</comments>
		<pubDate>Sat, 04 Oct 2008 10:58:27 +0000</pubDate>
		<dc:creator>KarthiKeyan</dc:creator>
				<category><![CDATA[Google Services]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[google sucks]]></category>

		<guid isPermaLink="false">http://secureslash.com/?p=113</guid>
		<description><![CDATA[Google is about telling its users to how toÂ  type &#8220;google.com&#8221; in its search box.
]]></description>
			<content:encoded><![CDATA[<p>Google is about telling its users to <a href="http://seoblackhat.com/2008/09/27/no-matter-the-question-google-is-the-answer/">how toÂ  type &#8220;google.com&#8221;</a> in its search box.</p>
]]></content:encoded>
			<wfw:commentRss>http://secureslash.com/google-services/no-matter-the-question-google-is-the-answer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://secureslash.com/google-services/no-matter-the-question-google-is-the-answer/</feedburner:origLink></item>
		<item>
		<title>Google Chrome Review</title>
		<link>http://feedproxy.google.com/~r/Secureslashcom/~3/GJ7GrfWQCec/</link>
		<comments>http://secureslash.com/google-services/google-chrome-review-2/#comments</comments>
		<pubDate>Sat, 04 Oct 2008 10:53:56 +0000</pubDate>
		<dc:creator>KarthiKeyan</dc:creator>
				<category><![CDATA[Computer Users]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Google Services]]></category>
		<category><![CDATA[firebug extension]]></category>
		<category><![CDATA[google chrome]]></category>

		<guid isPermaLink="false">http://secureslash.com/?p=110</guid>
		<description><![CDATA[Know the basic features of Google&#8217;s own browser Chrome here . It may be cool for beginner level internet users and google fans. But I am unable to migrate from FF&#8217;s Firebug.
]]></description>
			<content:encoded><![CDATA[<p>Know the basic features of Google&#8217;s own browser Chrome <a href="http://www.3dogmedia.com/google-chrome/">here</a> . It may be cool for beginner level internet users and google fans. But I am unable to migrate from FF&#8217;s Firebug.</p>
]]></content:encoded>
			<wfw:commentRss>http://secureslash.com/google-services/google-chrome-review-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://secureslash.com/google-services/google-chrome-review-2/</feedburner:origLink></item>
		<item>
		<title>Browser capability test</title>
		<link>http://feedproxy.google.com/~r/Secureslashcom/~3/kz0XxuFxMZ8/</link>
		<comments>http://secureslash.com/learn-hacking/browser-capability-test/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 17:26:41 +0000</pubDate>
		<dc:creator>Jana</dc:creator>
				<category><![CDATA[Computer Users]]></category>
		<category><![CDATA[Learn Hacking]]></category>
		<category><![CDATA[Networking & Security]]></category>
		<category><![CDATA[Browser capability test]]></category>
		<category><![CDATA[IE vs Firefox]]></category>

		<guid isPermaLink="false">http://secureslash.com/?p=107</guid>
		<description><![CDATA[When i was sitting workless just thought of testing my browser with java script and also my system capability to work on stress.I did two test in two browsers
1.Internet Explorer 6.0
2.Firefox 3.1X

Try the same to even to test your browsers.
First one tested runing a saved javascript file and here is the coding.
&#60;script language=&#8221;javascript&#8221;&#62;
var n=100;
for(i=0;i&#60;100;i++)
window.open(&#8220;http://www.hwquest.com&#8221;);
&#60;/script&#62;
IE:
Internet Explorer [...]]]></description>
			<content:encoded><![CDATA[<p>When i was sitting workless just thought of testing my browser with java script and also my system capability to work on stress.I did two test in two browsers</p>
<p>1.Internet Explorer 6.0</p>
<p>2.Firefox 3.1X<br />
<span id="more-107"></span></p>
<p>Try the same to even to test your browsers.</p>
<p>First one tested runing a saved javascript file and here is the coding.</p>
<p>&lt;script language=&#8221;javascript&#8221;&gt;<br />
var n=100;<br />
for(i=0;i&lt;100;i++)<br />
window.open(&#8220;http://www.hwquest.com&#8221;);<br />
&lt;/script&gt;</p>
<p>IE:</p>
<p>Internet Explorer started opening 100 windows LOL. I killed the IE image in taskmanager.</p>
<p>Firefox:</p>
<p>Wisely showed a popup blocker asking user permission saying &#8220;This site trying to open 100 popups&#8221;</p>
<p>Thought how wise are the firefox programmers, extending one step further i tried direct javascript implementation by typing this in address bar</p>
<p>javascript:for(i=0;i&lt;100;i++)window.open(&#8220;http://www.hwquest.com&#8221;);</p>
<p>The result it opened 100 tabs. So its not bad to report this bug or problem to firefox team.</p>
<p>IE 7 resulted in alert message saying harmful script!</p>
]]></content:encoded>
			<wfw:commentRss>http://secureslash.com/learn-hacking/browser-capability-test/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://secureslash.com/learn-hacking/browser-capability-test/</feedburner:origLink></item>
		<item>
		<title>Creating Administrator Account in two simple steps</title>
		<link>http://feedproxy.google.com/~r/Secureslashcom/~3/VJZw4xnswr4/</link>
		<comments>http://secureslash.com/general/creating-administrator-account-in-two-simple-steps/#comments</comments>
		<pubDate>Sun, 10 Aug 2008 19:40:31 +0000</pubDate>
		<dc:creator>Sugan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[commands to create user in windows]]></category>
		<category><![CDATA[commands to create user in xp]]></category>
		<category><![CDATA[creating user using command prompt]]></category>
		<category><![CDATA[shortcut to create administrative user account]]></category>

		<guid isPermaLink="false">http://secureslash.com/?p=106</guid>
		<description><![CDATA[To create Administrator Account using command prompt:
FirstÂ  goto Start &#8212;&#62; Run and type cmd
First Command:
c:/&#62;net user secureslash /add shortcut
secureslash is the name of the user
shortcut is the password for the user secureslash
First Command Creates a normal user under a name secureslash

Second Command:
c:/&#62;net localgroup administrators secureslash  /add
Second Command changes the normal user to a administrator [...]]]></description>
			<content:encoded><![CDATA[<p>To create Administrator Account using command prompt:<br />
FirstÂ  goto <strong>Start &#8212;&gt; Run</strong> and type <strong>cmd</strong></p>
<p><strong>First Command:</strong><br />
<strong>c:/&gt;net user secureslash /add shortcut</strong><br />
<strong>secureslash</strong> is the name of the <strong>user</strong><br />
<strong>shortcut</strong> is the <strong>password</strong> for the user secureslash<br />
First Command <strong>Creates a normal user</strong> under a name secureslash<br />
<!--adsense--><br />
<strong>Second Command:</strong><br />
<strong>c:/&gt;net localgroup administrators secureslash  /add</strong><br />
Second Command <strong>changes the normal user to a administrator user</strong></p>
<p>To check the number to administrators user type<br />
<strong>c:/&gt;net localgroup administrators</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://secureslash.com/general/creating-administrator-account-in-two-simple-steps/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://secureslash.com/general/creating-administrator-account-in-two-simple-steps/</feedburner:origLink></item>
		<item>
		<title>Windows Password Breaking Tool</title>
		<link>http://feedproxy.google.com/~r/Secureslashcom/~3/mC56P7YDSZs/</link>
		<comments>http://secureslash.com/general/windows-password-breaking-tool/#comments</comments>
		<pubDate>Tue, 05 Aug 2008 23:12:08 +0000</pubDate>
		<dc:creator>Sugan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[hacking tool for windows password]]></category>
		<category><![CDATA[tool to recovery windows password]]></category>
		<category><![CDATA[windows password recovery tool]]></category>
		<category><![CDATA[windows password resetting tool]]></category>

		<guid isPermaLink="false">http://secureslash.com/?p=105</guid>
		<description><![CDATA[Windows Password Expert is a program to reset Windows 2000 /XP/ 2003 Passwords if Administrator password is lost.

Features:
* 100% recovery rate
* New accounts could be created ,so other accounts can be brute-forced later on
* Resets passwords directly from a bootable CD-ROM, no floppy drive required
* Windows 2003 Server is supported
* Windows XP Home and Professional [...]]]></description>
			<content:encoded><![CDATA[<p>Windows Password Expert is a program to reset Windows 2000 /XP/ 2003 Passwords if <strong>Administrator password is lost.</strong></p>
<p style="text-align: center;"><img src="http://i36.tinypic.com/kd924i.jpg" alt="windows password hacking,windows password breaking" /></p>
<p><strong>Features:</strong><br />
* 100% recovery rate<br />
* New accounts could be created ,so other accounts can be brute-forced later on<br />
* Resets passwords directly from a bootable CD-ROM, no floppy drive required<br />
* Windows 2003 Server is supported<br />
* Windows XP Home and Professional Editions are supported<br />
* Windows 2000 Professional, Server and Advanced Server are supported<br />
* All Service Packs are supported<br />
* Active Directory supported<br />
* Windows Vista(Beta Version) is supported<br />
Click here to download &#8211; <strong><a href="http://www.ziddu.com/download/1847926/WindowsPasswordExpert1.2www.Secureslash.com.zip.html">Download</a></strong><br />
<!--adsense--><br />
Password:secureslash</p>
]]></content:encoded>
			<wfw:commentRss>http://secureslash.com/general/windows-password-breaking-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://secureslash.com/general/windows-password-breaking-tool/</feedburner:origLink></item>
		<item>
		<title>Steps to install Phpdev</title>
		<link>http://feedproxy.google.com/~r/Secureslashcom/~3/oQ5WPavlmQM/</link>
		<comments>http://secureslash.com/general/steps-to-install-phpdev/#comments</comments>
		<pubDate>Sun, 03 Aug 2008 23:26:16 +0000</pubDate>
		<dc:creator>Sugan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[firepages.com.au]]></category>
		<category><![CDATA[how to install phpdev]]></category>
		<category><![CDATA[phpdev]]></category>
		<category><![CDATA[steps to install phpdev]]></category>

		<guid isPermaLink="false">http://secureslash.com/?p=104</guid>
		<description><![CDATA[Phpdev is a bundle of PHP/Apache/MySQL/PERL/phpMyAdmin/PHP-GTK preconfigured to run on the win32 platform.
First of all phpdev wants to be installed on the default port of HTTP servers ie port 80.If you where using IIS on port 80, you need to change the IIS port before installing phpdev.
Steps to change the IIS port
1.Click Start &#62; Administrative [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Phpdev</strong> is a bundle of PHP/Apache/MySQL/PERL/phpMyAdmin/PHP-GTK preconfigured to run on the win32 platform.</p>
<p>First of all phpdev wants to be installed on the default port of HTTP servers ie port 80.If you where using IIS on port 80, you need to change the IIS port before installing phpdev.</p>
<p><strong>Steps to change the IIS port</strong><br />
1.Click <strong>Start &gt; Administrative Tools &gt; Internet Information Services</strong>.<br />
2.Expand the console tree to reveal the Default Web Site.<br />
3.<strong>Right-click</strong> Default Web Site and choose <strong>Properties</strong>.<br />
4.Enter an unused port number in the <strong>TCP Port text box</strong> and click <strong>OK</strong>. (We can chose 8080, but if you&#8217;re running Tomcat on 8080, you should enter another unused port.)<br />
<img src="http://img79.imageshack.us/img79/4892/iisse1.gif" alt="IIS properties,IIS console" /><br />
<!--adsense--><br />
5.To verify the changes goto the browser and type  <strong>&#8220;http://localhost:<br />
/yoursite/&#8221;</strong></p>
<p>Following are the Steps to install Phpdev:<br />
1.<a href="http://prdownloads.sourceforge.net/phpdev5/phpdev423.exe" target="_blank"><strong>Download  phpdev</strong></a> from SourceForge.net to a folder on your computer.<br />
2.Double-click the executable file, <strong>phpdev423.exe</strong>, to launch the installer.<br />
3.You can change the drive of your wish to install phpdev by the the <strong>browser</strong> button.<br />
<img src="http://img80.imageshack.us/img80/7219/phpdevns2.gif" alt="steps to install phpdev,phpdev" /><br />
4.Click <strong>Install</strong>.<br />
5.The installer copies the required files into the installation directory.<br />
6.When the installation is complete, the following command prompt appears.<br />
<img src="http://img375.imageshack.us/img375/2250/1phpdevxd6.gif" alt="phpdev,article on phpdev" /><br />
7.The command prompt instructs you to run the appropriate batch file to start Apache and MySQL. Before you do this, open the file in Notepad (e.g., C:\phpdev\2K-NT-XP-phpdev_start.bat). The Windows NT/2000/XP version contains the following code:<br />
<strong>cd c:\phpdev\apache<br />
start apache -k start<br />
cd c:\phpdev\<br />
start apachemonitor.exe<br />
cd c:\phpdev\mysql\bin<br />
start mysqld-nt.exe &#8211;standalone<br />
start http://localhost/<br />
exit</strong><br />
8.Ensure that the paths in the batch file are correct. If not, revise them and save the file.<br />
9.Double-click the batch file for your platform to start Apache and MySQL.<br />
This opens the phpdev home page in your browser:<br />
<img src="http://img525.imageshack.us/img525/4199/phpdevhomepagexk0.gif" alt="phpdev,phpdevhomepage" /><br />
Which shows the  phpdev home page lists the files and folders in your web root (e.g., C:\phpdev\www). In addition, this page links to phpMyAdmin and two sample applications: phpWebSite and Invision Discussion Board (IBForums).</p>
]]></content:encoded>
			<wfw:commentRss>http://secureslash.com/general/steps-to-install-phpdev/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://secureslash.com/general/steps-to-install-phpdev/</feedburner:origLink></item>
		<item>
		<title>Most commonly used Acronyms in Instant Messaging / Internet</title>
		<link>http://feedproxy.google.com/~r/Secureslashcom/~3/kulyKP0rdY8/</link>
		<comments>http://secureslash.com/general/most-commonly-used-acronyms-in-instant-messaging-internet/#comments</comments>
		<pubDate>Fri, 01 Aug 2008 22:36:17 +0000</pubDate>
		<dc:creator>Sugan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Acronyms of chats]]></category>
		<category><![CDATA[Acronyms of instant messaging]]></category>
		<category><![CDATA[Acronyms used in internet]]></category>
		<category><![CDATA[shortcut for words]]></category>

		<guid isPermaLink="false">http://secureslash.com/?p=103</guid>
		<description><![CDATA[Here are the most common abbreviations that you might come across in IM&#8217;s or simply Surfing the net. 
AFAIC &#8211; As far as I&#8217;m concerned
AFAIK &#8211; As Far As I Know
AFK &#8211; Away From Keyboard
ASAP &#8211; As Soon As Possible
BBL &#8211; Be Back Later
BBN &#8211; Bye Bye Now
BBS &#8211; Be Back Soon
BF &#8211; Boyfriend
BRB &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>Here are the most common abbreviations that you might come across in IM&#8217;s or simply Surfing the net. </p>
<p>AFAIC &#8211; As far as I&#8217;m concerned<br />
AFAIK &#8211; As Far As I Know<br />
AFK &#8211; Away From Keyboard<br />
ASAP &#8211; As Soon As Possible<br />
BBL &#8211; Be Back Later<br />
BBN &#8211; Bye Bye Now<br />
BBS &#8211; Be Back Soon<br />
BF &#8211; Boyfriend<br />
BRB &#8211; Be Right Back<br />
BTW &#8211; By The Way<br />
BWL &#8211; Bursting With Laughter<br />
CID &#8211; Crying In Disgrace<br />
CYA &#8211; See You (Seeya)<br />
CYAL8R &#8211; See You Later (Seeyalata)<br />
EMSG &#8211; Email Message<br />
FC &#8211; Fingers Crossed<br />
FTBOMH &#8211; From The Bottom Of My Heart<br />
FYI &#8211; For Your Information<br />
GAL &#8211; Get A Life<br />
<!--adsense--><br />
GF &#8211; Girlfriend<br />
GFN &#8211; Gone For Now<br />
GMTA &#8211; Great Minds Think Alike<br />
GTSY &#8211; Glad To See You<br />
H&#038;K &#8211; Hug and Kiss<br />
HAGN- Have A Good Night<br />
HHIS &#8211; Hanging Head in Shame<br />
IAE &#8211; In Any Event<br />
IC &#8211; I See<br />
IMNSHO &#8211; In My Not So Humble Opinion<br />
IMO &#8211; In My Opinion<br />
IMHO &#8211; In My Humble Opinion<br />
IOW &#8211; In Other Words<br />
JMO &#8211; Just My Opinion<br />
KIT &#8211; Keep In Touch<br />
L8R &#8211; Later<br />
LHM &#8211; Lord Help Me<br />
LMAO &#8211; Laughing My A$$ Off<br />
LOL &#8211; Laugh Out Loud<br />
LTNS &#8211; Long Time No See<br />
MTF &#8211; More To Follow<br />
NRN &#8211; No Reply Necessary<br />
OIC &#8211; Oh, I See<br />
OTOH &#8211; On The Other Hand<br />
PM &#8211; Private Message<br />
ROFL &#8211; Rolling On Floor Laughing<br />
SO &#8211; Significant Other<br />
SOT &#8211; Short Of Time<br />
SWL &#8211; Screaming with Laughter<br />
SYS &#8211; See You Soon<br />
TA &#8211; Thanks Again<br />
TGIF &#8211; Thank God It&#8217;s Friday<br />
TCOY &#8211; Take Care Of Yourself<br />
TNT &#8211; Till Next Time<br />
TOY &#8211; Thinking Of You<br />
TTFN &#8211; Ta Ta For Now<br />
TTYL &#8211; Talk To You Later<br />
YBS &#8211; You&#8217;ll Be Sorry</p>
]]></content:encoded>
			<wfw:commentRss>http://secureslash.com/general/most-commonly-used-acronyms-in-instant-messaging-internet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://secureslash.com/general/most-commonly-used-acronyms-in-instant-messaging-internet/</feedburner:origLink></item>
		<item>
		<title>Cool Office Tips</title>
		<link>http://feedproxy.google.com/~r/Secureslashcom/~3/vbcinSlJGEg/</link>
		<comments>http://secureslash.com/general/cool-office-tips/#comments</comments>
		<pubDate>Fri, 01 Aug 2008 22:28:48 +0000</pubDate>
		<dc:creator>Sugan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[ms office tips]]></category>
		<category><![CDATA[shortcuts in excel]]></category>
		<category><![CDATA[shortcuts in powerpoint]]></category>
		<category><![CDATA[shortcuts in word]]></category>
		<category><![CDATA[tip and tricks of ms office]]></category>

		<guid isPermaLink="false">http://secureslash.com/?p=102</guid>
		<description><![CDATA[MS WORD
Go Back to Where You Left Off in a Document or To return to the place where you last edited a Word document, press Shift+F5.
Quick Word Deletion
You can delete entire words with your keyboard. Just put your cursor at the beginning of the word and press Ctrl+Del together. This is very useful when editing.

Customize [...]]]></description>
			<content:encoded><![CDATA[<p><strong>MS WORD</strong></p>
<p>Go Back to Where You Left Off in a Document or To return to the place where you last edited a Word document, press <strong>Shift+F5</strong>.</p>
<p><strong>Quick Word Deletion</strong><br />
You can delete entire words with your keyboard. Just put your cursor at the beginning of the word and press Ctrl+Del together. This is very useful when editing.<br />
<!--adsense--><br />
<strong>Customize Line Spacing and Alignment</strong><br />
The Ctrl key is your best buddy when you want to experiment with line spacing and alignment variations. <strong>Ctrl+1</strong> provides <strong>single spacing</strong>, <strong>Ctrl+2</strong> provides <strong>double spacing</strong> and <strong>Ctrl+5</strong> provides <strong>1-1/2 line spacing</strong>. <strong>Ctrl+R</strong> right aligns a <strong>paragraph</strong>.</p>
<p><strong>MS EXCEL</strong></p>
<p><strong>Instant in-cell graphs</strong><br />
Use the repeat (REPT) function in Excel to create a bar graph inside cells. REPT looks like this: =REPT(&#8220;text&#8221;; number_of_times). For instance, REPT(&#8220;X&#8221;; 10) gives you &#8220;XXXXXXXXXX&#8221;. For in-cell bar charts, the trick is to repeat a single bar &#8220;|&#8221;. When formatted in 8 point Arial font, single bars look like bar graphs. Of course, number_of_times can also be substituted with a cell number.</p>
<p><strong>MS POWERPOINT</strong></p>
<p><strong>Annotate during Presentations</strong><br />
While giving a slide show presentation, right-click in the active window then choose an annotation item from the Pointer Options submenu, such as Felt Tip Pen or Ballpoint Pen. You can write directly on the slides: underline words, draw a picture, whatever. To return to normal use, and move onto the next slide, select Arrow from the submenu.</p>
]]></content:encoded>
			<wfw:commentRss>http://secureslash.com/general/cool-office-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://secureslash.com/general/cool-office-tips/</feedburner:origLink></item>
		<item>
		<title>How to Reset your Windows Vista Password easily?</title>
		<link>http://feedproxy.google.com/~r/Secureslashcom/~3/fmemANWhs7c/</link>
		<comments>http://secureslash.com/general/how-to-reset-your-windows-vista-password-easily/#comments</comments>
		<pubDate>Fri, 01 Aug 2008 22:21:13 +0000</pubDate>
		<dc:creator>Sugan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[about password reset disk]]></category>
		<category><![CDATA[break the windows password]]></category>
		<category><![CDATA[reset vista password]]></category>
		<category><![CDATA[steps to create password reset disk]]></category>

		<guid isPermaLink="false">http://secureslash.com/?p=101</guid>
		<description><![CDATA[Many a times you would have been caught up in an awkward situation where you have forgotten  your Windows Vista Password. So here&#8217;s how you can easily reset your Windows Vista Password, I have upon two methods on how you can achieve it.
Easy method 
Download a piece of software from Petter Nordhal-Hagenâ€™s website. But, [...]]]></description>
			<content:encoded><![CDATA[<p>Many a times you would have been caught up in an awkward situation where you have forgotten  your Windows Vista Password. So here&#8217;s how you can easily reset your Windows Vista Password, I have upon two methods on how you can achieve it.</p>
<p><strong>Easy method </strong><br />
Download a piece of software from Petter Nordhal-Hagenâ€™s website. But, before that be warned that this method involves the manipulating of Vista&#8217;s SAM database which is always a bit risky. You will need to create a boot disk (CD) from the downloaded software and this will then help you to manipulate the Vista&#8217;s SAM database.<br />
<!--adsense--><br />
I would like to re-assure you at this point that I have used this cool tool a couple of times on a Windows 2000 Server Box before and i never had any problem . Since, the new version of this cool software supports Windows Vista &#8211; so I can recomend the same.</p>
<p><strong>Harder method:</strong><br />
In this method you will need to have a Windows Vista Password Reset Disk handy which will enable you to reset your password easily. But the point to note is that you should have created a Vista Password Reset Disk earlier in the first place.</p>
<p><strong>Steps to create a Vista Password Reset Disk:</strong><br />
1. In Vista&#8217;s Start Menu search box type the word &#8220;user accounts&#8221; and open the user accounts<br />
2.Click on <strong>Create a password reset disk</strong> found on the left navigation bar (The first one on the left &#8211; below Tasks).<br />
3.Run the Forgotten Password Wizard which will open. Insert a floppy disk or a USB memory disk.<br />
4.After you have inserted the storage device click on the Next button. Select your drive and then Next.<br />
5.Now you&#8217;ll need to type your current Vista user account password and click Next.<br />
6.And that&#8217;s it you have done a Vista password reset disk.<br />
7.Now keep the Vista Password Reset Disk in a safe location</p>
<p>When you have forgotten your Vista Password or type the wrong password and press Enter.You wil get a error message.Just below the Error Message you will have a link saying Reset password. Click that link and follow the instructions.</p>
]]></content:encoded>
			<wfw:commentRss>http://secureslash.com/general/how-to-reset-your-windows-vista-password-easily/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://secureslash.com/general/how-to-reset-your-windows-vista-password-easily/</feedburner:origLink></item>
		<item>
		<title>How to Create Users and Databases easily in PostgreSQL</title>
		<link>http://feedproxy.google.com/~r/Secureslashcom/~3/ApcJfGRM7X4/</link>
		<comments>http://secureslash.com/general/how-to-create-users-and-databases-easily-in-postgresql/#comments</comments>
		<pubDate>Fri, 01 Aug 2008 21:57:43 +0000</pubDate>
		<dc:creator>Sugan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[creating databases in PostgreSQL]]></category>
		<category><![CDATA[creating user in PostgreSQL]]></category>
		<category><![CDATA[PostgreSQL]]></category>
		<category><![CDATA[PostgreSQL tutorials]]></category>

		<guid isPermaLink="false">http://secureslash.com/?p=100</guid>
		<description><![CDATA[You will need to first connect to the user postgres from your localhost to create the database owner. The command prompt postgres=# indicates that you are connected to the postgres database. The # in the command prompt actually means that the user connected to is a database superuser[Sort Off like in Linux].
Creating a New User:
To [...]]]></description>
			<content:encoded><![CDATA[<p>You will need to first connect to the user postgres from your localhost to create the database owner. The command prompt postgres=# indicates that you are connected to the postgres database. The # in the command prompt actually means that the user connected to is a database superuser[Sort Off like in Linux].</p>
<p><strong>Creating a New User:</strong></p>
<p>To create a New User(mynewuser) in PostgreSQL we will use the CREATE ROLE command as follows:</p>
<p>postgres=#CREATE ROLE mynewuser<br />
postgres-#login<br />
postgres-#password &#8216;mypassword&#8217;;</p>
<p>This will create a new user called &#8216;mynewuser&#8217; with the password &#8216;mypassword&#8217;.<br />
<!--adsense--><br />
<strong>Creating TableSpace :</strong></p>
<p>Now we will move ahead to create the default tablespace for the new database. This is where the databaseâ€™s files will be stored. Create a new folder structure as C:/myDB/mynewuser/system</p>
<p>The steps below will help you to create a new tablespace as mynewuser_system</p>
<p>postgres=# CREATE TABLESPACE mynewuser_system<br />
postgres-# OWNER jason<br />
postgres-# LOCATION &#8216;C:/myDB/mynewuser/system&#8217;;</p>
<p>Hers&#8217;s how you can check if the tablespace was created. Just key in the following command.</p>
<p>postgres=#db+ mynewuser_system</p>
<p><strong>Create a Database and the related Database objects:</strong></p>
<p>Finally we will now create a new database and the associated database objects. It&#8217;s very simple&#8230; so here are the SQL Statements.<br />
postgres=# CREATE DATABASE myFirstPSQLdb<br />
postgres-# OWNER jason<br />
postgres-# TEMPLATE template0<br />
postgres-# TABLESPACE mynewuser_system;</p>
<p>You can verify if the Database is installed properly by the following command.<br />
postgres=#l+</p>
<p>Now we will finally create the related Database Objects.</p>
<p>First login into the Database:<br />
postgres=# c myFirstPSQLdb</p>
<p>Then run your SQL script as follows:<br />
myFirstPSQLdb=# i C:/myDB/myObjects.sql</p>
]]></content:encoded>
			<wfw:commentRss>http://secureslash.com/general/how-to-create-users-and-databases-easily-in-postgresql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://secureslash.com/general/how-to-create-users-and-databases-easily-in-postgresql/</feedburner:origLink></item>
		<item>
		<title>Ubuntu Linux Toolbox</title>
		<link>http://feedproxy.google.com/~r/Secureslashcom/~3/0ZTsJd83K3Y/</link>
		<comments>http://secureslash.com/linux/ubuntu-linux-toolbox/#comments</comments>
		<pubDate>Sat, 19 Jul 2008 12:14:36 +0000</pubDate>
		<dc:creator>Sugan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[linux commands]]></category>
		<category><![CDATA[pdf for ubuntu]]></category>
		<category><![CDATA[ubuntu commands]]></category>
		<category><![CDATA[useful commands for ubuntu]]></category>

		<guid isPermaLink="false">http://secureslash.com/?p=99</guid>
		<description><![CDATA[Ubuntu Linux Toolbox: 

1000+ Commands for Ubuntu and Debian Power Users 

Download From Here:
http://rapidshare.com/files/128055296/Wiley.Ubuntu.rar
]]></description>
			<content:encoded><![CDATA[<p><strong><span style="font-size: 10pt; font-family: Tahoma;"><span>Ubuntu Linux Toolbox: </span></span></strong><br />
<img src="http://img329.imageshack.us/img329/4135/ubuntuqy5.jpg" alt="ubuntu,linux commands" width="198" height="298" /><br />
<span style="font-size: 10pt; font-family: Tahoma;"><span>1000+ Commands for Ubuntu and Debian Power Users </span></span><br />
<!--adsense--><br />
<span style="font-size: 10pt; font-family: Tahoma;"><span>Download From Here:<br />
<a href="http://rapidshare.com/files/128055296/Wiley.Ubuntu.rar">http://rapidshare.com/files/128055296/Wiley.Ubuntu.rar</a></span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://secureslash.com/linux/ubuntu-linux-toolbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://secureslash.com/linux/ubuntu-linux-toolbox/</feedburner:origLink></item>
		<item>
		<title>Top 10 reasons website get hacked</title>
		<link>http://feedproxy.google.com/~r/Secureslashcom/~3/GeurlswsMf0/</link>
		<comments>http://secureslash.com/general/top-10-reasons-website-get-hacked/#comments</comments>
		<pubDate>Sat, 19 Jul 2008 11:48:42 +0000</pubDate>
		<dc:creator>Sugan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[reason for website get hacked]]></category>
		<category><![CDATA[reason of website get hacked]]></category>
		<category><![CDATA[web hacking]]></category>
		<category><![CDATA[website hacking]]></category>

		<guid isPermaLink="false">http://secureslash.com/?p=98</guid>
		<description><![CDATA[

1. Cross site scripting (XSS)
The â€œmost prevalent and perniciousâ€ Web application security vulnerability, XSS flaws happen when an application sends user data to a Web browser without first validating or encoding the content. This lets hackers execute malicious scripts in a browser, letting them hijack user sessions, deface Web sites, insert hostile content and conduct [...]]]></description>
			<content:encoded><![CDATA[<div class="entrybody">
<div class="snap_preview">
<p><strong>1. Cross site scripting (XSS)</strong><br />
The â€œmost prevalent and perniciousâ€ Web application security vulnerability, XSS flaws happen when an application sends user data to a Web browser without first validating or encoding the content. This lets hackers execute malicious scripts in a browser, letting them hijack user sessions, deface Web sites, insert hostile content and conduct phishing and malware attacks.<br />
<!--adsense--><br />
<strong>2. Injection flaws</strong><br />
When user-supplied data is sent to interpreters as part of a command or query, hackers trick the interpreter â€” which interprets text-based commands â€” into executing unintended commands. â€œInjection flaws allow attackers to create, read, update, or delete any arbitrary data available to the application,â€ OWASP writes. â€œIn the worst-case scenario, these flaws allow an attacker to completely compromise the application and the underlying systems, even bypassing deeply nested firewalled environments.â€</p>
<p><strong>3. Malicious file execution</strong><br />
Hackers can perform remote code execution, remote installation of rootkits, or completely compromise a system. Any type of Web application is vulnerable if it accepts filenames or files from users. The vulnerability may be most common with PHP, a widely used scripting language for Web development.</p>
<p><strong>4. Insecure direct object reference</strong><br />
Attackers manipulate direct object references to gain unauthorized access to other objects. It happens when URLs or form parameters contain references to objects such as files, directories, database records or keys.</p>
<p><strong>5. Cross site request forgery</strong><br />
â€œSimple and devastating,â€ this attack takes control of victimâ€™s browser when it is logged onto a Web site, and sends malicious requests to the Web application. Web sites are extremely vulnerable, partly because they tend to authorize requests based on session cookies or â€œremember meâ€ functionality. Banks are potential targets.</p>
<p><strong>6. Information leakage and improper error handling</strong><br />
Error messages that applications generate and display to users are useful to hackers when they violate privacy or unintentionally leak information about the programâ€™s configuration and internal workings.</p>
<p><strong>7. Broken authentication and session management</strong><br />
The problem: User and administrative accounts can be hijacked when applications fail to protect credentials and session tokens from beginning to end. Watch out for privacy violations and the undermining of authorization and accountability controls.</p>
<p><strong>8. Insecure cryptographic storage</strong><br />
The problem: Many Web developers fail to encrypt sensitive data in storage, even though cryptography is a key part of most Web applications. Even when encryption is present, itâ€™s often poorly designed, using inappropriate ciphers.</p>
<p><strong>9. Insecure communications</strong><br />
Similar to No. 8, this is a failure to encrypt network traffic when itâ€™s necessary to protect sensitive communications. Attackers can access unprotected conversations, including transmissions of credentials and sensitive information. For this reason, PCI standards require encryption of credit card information transmitted over the Internet.</p>
<p><strong>10. Failure to restrict URL access</strong><br />
Some Web pages are supposed to be restricted to a small subset of privileged users, such as administrators. Yet often thereâ€™s no real protection of these pages, and hackers can find the URLs by making educated guesses. Say a URL refers to an ID number such as â€œ123456.â€ A hacker might say â€˜I wonder whatâ€™s in 123457?â€™ Williams says.</p>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://secureslash.com/general/top-10-reasons-website-get-hacked/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://secureslash.com/general/top-10-reasons-website-get-hacked/</feedburner:origLink></item>
		<item>
		<title>Bill Gates Daughter – Jennifer Katharine</title>
		<link>http://feedproxy.google.com/~r/Secureslashcom/~3/abJT-alhz2E/</link>
		<comments>http://secureslash.com/general/bill-gates-daughter-jennifer-katharine/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 19:03:56 +0000</pubDate>
		<dc:creator>Sugan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[bill gates]]></category>
		<category><![CDATA[bill gates daughter]]></category>
		<category><![CDATA[Jennifer Katharine]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[tricks of xp]]></category>
		<category><![CDATA[window vista]]></category>

		<guid isPermaLink="false">http://secureslash.com/?p=97</guid>
		<description><![CDATA[She is the World&#8217;s 3rd richest person Bill Gate&#8217;s Daughter &#8211; Jennifer Katharine




Software guys will start preparing code to attract her.. is it?
But then I cannot stop your dream.. go ahead.. put your comments here
]]></description>
			<content:encoded><![CDATA[<p>She is the World&#8217;s 3rd richest person <span style="font-weight: bold;">Bill Gate&#8217;s Daughter</span> &#8211; <span style="font-weight: bold;">Jennifer Katharine</span><br />
<a href="http://bp2.blogger.com/_VEEjj3-SHuQ/SH7Jul1g5-I/AAAAAAAABBE/-tlg_DM4oiI/s1600-h/bill+gates+daughter+1.jpg"><img src="http://bp2.blogger.com/_VEEjj3-SHuQ/SH7Jul1g5-I/AAAAAAAABBE/-tlg_DM4oiI/s400/bill+gates+daughter+1.jpg" alt="billgates,billgates daughter" /></a><br />
<a href="http://bp0.blogger.com/_VEEjj3-SHuQ/SH7Ju-dRU0I/AAAAAAAABBM/IX09bfGlWok/s1600-h/bill+gates+daughter+2.jpg"><img src="http://bp0.blogger.com/_VEEjj3-SHuQ/SH7Ju-dRU0I/AAAAAAAABBM/IX09bfGlWok/s400/bill+gates+daughter+2.jpg" alt="billgates,billgates daughter" /></a></p>
<p><a href="http://bp2.blogger.com/_VEEjj3-SHuQ/SH7JuygnV3I/AAAAAAAABBU/CKbBfq7QtpY/s1600-h/bill+gates+daughter+3.jpg"><img src="http://bp2.blogger.com/_VEEjj3-SHuQ/SH7JuygnV3I/AAAAAAAABBU/CKbBfq7QtpY/s400/bill+gates+daughter+3.jpg" alt="billgates,billgates daughter" /></a><br />
<a href="http://bp1.blogger.com/_VEEjj3-SHuQ/SH7JvNKFtII/AAAAAAAABBc/KPk6WzK1nsY/s1600-h/bill+gates+daughter+4.jpg"><img src="http://bp1.blogger.com/_VEEjj3-SHuQ/SH7JvNKFtII/AAAAAAAABBc/KPk6WzK1nsY/s400/bill+gates+daughter+4.jpg" alt="billgates,billgates daughter" /></a></p>
<p>Software guys will start preparing code to attract her.. is it?</p>
<p>But then I cannot stop your dream.. go ahead.. put your comments here</p>
]]></content:encoded>
			<wfw:commentRss>http://secureslash.com/general/bill-gates-daughter-jennifer-katharine/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		<feedburner:origLink>http://secureslash.com/general/bill-gates-daughter-jennifer-katharine/</feedburner:origLink></item>
	</channel>
</rss>
