World of Technology

A Ultimate Way of Technology.

World of Technology

A Ultimate Way of Technology.

World of Technology

A Ultimate Way of Technology.

World of Technology

A Ultimate Way of Technology.

World of Technology

A Ultimate Way of Technology.

17 May 2014

Password Protect Any Folder Without Any Software


In this tutorial i will show you interesting and usefull trick to password protect folder without using any software using batch file programming. This trick will work on all windows platform (Win XP, Win 7). Follow below tutorial to learn this trick.

How To Lock Folder ?

   1. Open Notepad and Copy code given below into it.
cls
@ECHO OFF
title coolhacking-tricks.blogspot.com
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST MyFolder goto MDMyFolder
:CONFIRM
echo Are you sure to lock this 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 MyFolder "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 Your Secure Folder
set/p "pass=>"
if NOT %pass%== coolhacks goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" MyFolder
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDMyFolder
md MyFolder
echo MyFolder created successfully
goto End
:End
   2. Save the notepad file as lock.bat (.bat is must)
   3. Now double click on lock.bat and a new folder will be created with name MyFolder
   4. Copy all your data you want to protect in that New folder
   5. Now double click on lock.bat and when command promp appears Type Y and press enter.
   6. Now MyFolder will be hidden from you view, to access that folde double click on lock.bat
   7. It will ask for password enter your password and done. (Default password is coolhacks)
  • To change the password replace coolhacks with  new password in the above code

How To Further Secure ?

You might be thinking that anyone can access the password by opening that lock.bat file in Notepad or any other text editor. To make it more secure hide lock.bat in some secure location after following the above tutorial To access the secured file double click on lock.bat. I would suggest copying lock.bat file into Pendrive and copying it into your computer whenever you required to access to your protected files.

3 March 2014

INVITE ALL FRIENDS IN A PAGE 2014 NEW TRICK FOR GOOGLE CROME BROWSER

If you're wondering how to invite all your facebook friends to like your fan page on facebook than you just have to follow the steps below and learn it. First of all you must be logged in to your facebook profile.



1. Go to the page you want to get more likes.
2. Click Build Audience and then Invite Friends.
Click to see in full size!

3. Once a new window is opened in the drop-down click Search All Friends


4. Scroll down to load all friends. (Make sure all friends are loaded properly).
5. Press CTRL + SHIFT + J to open Chrome Console!
Then copy and paste this code below:

var inputs = document.getElementsByClassName('uiButton _1sm');  
for(var i=0; i<inputs.length;i++) {  
    inputs[i].click();  

6. After you paste the code press ENTER and wait for the invitations to finish! 

INVITE ALL FRIENDS IN A PAGE 2014 NEW TRICK FOR GOOGLE CROME BROWSER

If you're wondering how to invite all your facebook friends to like your fan page on facebook than you just have to follow the steps below and learn it. First of all you must be logged in to your facebook profile.



1. Go to the page you want to get more likes.
2. Click Build Audience and then Invite Friends.
Click to see in full size!

3. Once a new window is opened in the drop-down click Search All Friends


4. Scroll down to load all friends. (Make sure all friends are loaded properly).
5. Press CTRL + SHIFT + J to open Chrome Console!
Then copy and paste this code below:

var inputs = document.getElementsByClassName('uiButton _1sm');  
for(var i=0; i<inputs.length;i++) {  
    inputs[i].click();  

6. After you paste the code press ENTER and wait for the invitations to finish! 

3 January 2014

Hacking Window 7 Password Using Ophcrack




In this tutorial i will teach you to hack Window 7 password using free open source software called ophcrack. This hack also works on Windows XP and Windows Vista. So let get started.

What Is Ophcrack ?

Opcrack is an open source windows password cracker based on rainbow tables. It comes with Graphical user interface(GUI) and runs on multiple platform such windows, linux and mac.  It allows you to recover or hack windows password.

How To Crack Windows 7 Password Using Ophcrack ?

Before you start doing this you will need a blank CD or DVD to burn the live image of ophcrack.

  1. Download Opcrack Live Cd by Clicking Here.
  2. Download windows xp or windows 7 live cd depending on platform you are wishing to hack. For example:
  • Windows 7 or Windows Vista: Click on ophcrack Vista/7 LiveCD.
  • Windows XP: Click on ophcrack XP LiveCD.
  2. Now burn the live image on to the cd.
  3. Insert the disc into drive and restart you computer.
  4. If everything goes right you will see screen like below.
window7 password hacking

  5. After you see screen like above wait for ophcrack to boot automatically or you may press Enter to advance.
  6. Now you will see several lines of code printed on screen or they might disappear very quickly (you dont need to worry about that).
  7. Then you will see screen like below it is ophcrack password recovering software. At the Ophcrack screen it shows the Administrator and Guest account. Notice the word “empty”. This means that if the account is enabled you could log in without a password.
Windows 7 Password hacking
  8. Ophcrack WILL NOT CRACK THE PASSWORD because the hash table which it needs is not available for free. But it does show the NTLM hash.
  9. Copy this hash value which is under NT Hash field.
 10. Navigate to http://crackstation.net/ which is an online hash cracking tool.
 11. Type in the hash value you copied down in Step 9, Enter the captche and click onCrack Hashes.