Wednesday, January 26, 2011

Folder Lock Without Any Software



Guys here is a easy way to lock your files by creating your own locker unlike other softwares like FOLDER LOCK etc. which sometimes create a mess this is simple and easy to use!!!
STEPS FOR CREATION:-
1)Copy the batch code indicated below.
2)Paste it in a NOTEPAD.
3)You just have to change one thing in the line in the code that is in bold letters.Line number 24.You just have to delete the word 'password' from that line and give some other text which you want to be the password of your locker and keep other things intact.
eg."if NOT %pass%== password here goto FAIL". now remove the word "password" and give some other name like-"if NOT %pass%== techhack here goto FAIL". now "techhack" becomes the password of your locker!!
4)Now save the file as "locker.bat".Remember to put the extension to ".bat" else it will not work as its a batch code.
****************BATCH CODE*****************
Quote:
Quote: cls
@ECHO OFF
title Folder Private
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Private goto MDLOCKER
:CONFIRM
echo Are you sure you 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 Private "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%== password here goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Private
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Private
echo Private created successfully
goto End
:End
**************************************************
5)Now after you have completed the above steps and saved the file click on the locker.bat that you created.In this case a folder named "Private" will be created.
6)Copy the files into this folder which you want to lock.
7)Once again click on the file and it will ask you "Are you sure you want to lock the folder(Y/N)" then press y and enter to lock the folder.


8)Againg click on the locker and now it asks you the password to open the folder.Give the same word which you had earlier changed the word "password" with in the code.In our example we had given it to "techhack".
NOTE:The characters of your password will be visible as its in DOS format.


///////ENJOY YOUR LOCKER.
And you can make multiple lockers by keeping the code in .txt format and copy them to different drives and changing the extention to .bat type.
///////Mainly useful in locking the files in USB Drives..till its not formatted.
NOTE:Fine U have made the locker and started using it so what if someone deletes your locker your all r lost.....  well thats not the fact if such thing happens then just create another locker in the same place with the same password as before and you can access the datas u had protected!!!!!
But i cant help if your private folder itself is deleted by someone......its ur foolishness to keep your private folder unlocked!!!


Monday, January 24, 2011

Hack Software and Run the Trial Program Forever

In this post you how to hack a Software and run the trial program forever. Most of us are familiar with many softwares that run only for a specified period of time in the trial mode. Once the trial period is expired these softwares stop functioning and demand for a purchase. But there is a way to run the softwares and make them function beyond the trial period. Isn’t this interesting?
Before I tell you how to hack the software and make it run in the trial mode forever, we have to understand the functioning of these softwares. I’ll try to explain this in brief.
When these softwares are installed for the first time, they make an entry into the Windows Registry with the details such as Installed Date and Time, installed path etc. After installation every time you run the software, it compares the current system date and time with the installed date and time. So, with this it can make out whether the trial period is expired or not.
So with this being the case, just manually changing the system date to an earlier date will not solve the problem. For this purpose there is a small Tool known as RunAsDate.

AVG Antivirus reports that RunAsDate is infected with "Trojan horse Generic 10.THK".



RunAsDate is a small utility that allows you to run a program in the date and time that you specify. This utility doesn’t change the current system date, but it only injects the date/time that you specify into the desired application.
RunAsDate intercepts the kernel API calls that returns the current date and time (GetSystemTime, GetLocalTime, GetSystemTimeAsFileTime), and replaces the current date/time with the date/time that you specify. It works with Windows 2000, XP, 2003,7 and Vista.
NOTE: FOLLOW THESE TIPS CAREFULLY
You have to follow these tips carefully to successfully hack a software and make it run in it’s trial mode forever.
1. Note down the date and time, when you install the software for the first time.
2. Once the trial period expires, you must always run the software using RunAsDate.
3. After the trial period is expired, do not run the software(program) directly. If you run the software directly even once, this hack may no longer work.
4. It is better and safe to inject the date of the last day in the trial period.
For example, if the trial period expires on jan 30 2009, always inject the date as jan 29 2009 in the RunAsDate. I hope this helps


Download RunAsDate from the link given bellow,
www.nirsoft.net/utils/runasdate.zip

Saturday, January 15, 2011

Creating shutdown shortcut on desktop

Just follow following steps and you can make a shoutdown shortcut in your Desktop so that you can easily shoutdown your system.
1. Rigth click and goto new then select shortcut 



2. You will see a message type the location of the item just type
shutdown -s -t 00




3. Then click next and finish .
4. If you want to change the icon just right click on newly created shutdown shortcut and
click on change icon and select the shutdown icon.







If you want to delay the shoutdown ,just replace the" shoutdown -s -t 00 " to
shutdown -s -t 15 .It will shoutdown after 15 sec.