December 15, 2008

Is Popular software Safe and Secure?

Do you think popular softwares always safe and secure?

Do you think using antivirus will ensure the safety of your PC?

Think again. 

Bit9 has listed the most widely used applications with known security flaws.

A list compiled by enterprise application whitelisting vendor Bit9 found that 12 of the most popular consumer applications are being used despite having vulnerabilities that could make for compromised systems or stolen data.

The list included Mozilla Firefox (tha's why iI'm using Opera!), Apple's iTunes,Safari browser. Antivirus utilities didn't escape mention, with products from Symantec's Norton family and from Trend Micro also listed.

So, do not completely trust your antivirus vendors and popular softwares that evolves around you. Safety first ya. :-)

For further reading, click here. 

December 13, 2008

Google Chrome Officially Out of Beta

This new and popular Google project is now officially out of Beta! 

Means it's already final build now. It's so fast for a Google product as Gmail is still i Beta. 

What I like in Chrome is it's blazing fast and have a nice, simple interface! Haha.. But of course, Opera is still number 1 in my heart! :-p

"Since we first released Google Chrome, the development team has been hard at work improving the stability and overall performance of the browser. In just 100 days, we have reached more than 10 million active users around the world (on all seven continents, no less) and released 14 updates to the product. We're excited to announce that with today's fifteenth release we are taking off the "beta" label! "

Some improvement in final released of Chrome: 

  • Better stability and performance of plug-ins (particularly video).
  • Even more speed.
  • Bookmark manager and privacy controls.

Download Google Chrome.

More info, click here. 

December 12, 2008

Lock Folder Without Using Software

Many people have been asking for an alternative way to lock folders without the use of any software. So, here you go.

1. Open Notepad and copy the below code
2. Change your password in the code (bolded part)
3. Save file as locker.bat .
4. Now double click on locker .bat
5. I t will create folder with Locker automatically for u. After creation of the Locker folder, place the contents u want to lock inside the Locker Folder and run locker.bat again .



************************************************
cls
@ECHO OFF
title Folder Locker
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
:CONFIRM
echo Are you sure u want to Lock the folder(Y/N)
set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren Locker "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock folder
set/p "pass=>"
if NOT %pass%== type your password here goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End
:End