Tuesday, 9 December 2014

password protect any folder without any softwares

In my previous post i have teach you to hide files behind images. 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.

Full Version

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 pressenter.
   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.

introduction to basic terminal commands

linux terminal
In this tutorial you will learn to use linux terminal. You will learn to navigate on theterminal, learn to create and remove file and much more. Most of this commands also works on Mac Os X and powershell on windows.

Full Version


What Is Terminal ?

Basically you are reading this tutorial because you are new to linux or want to learn using terminal to navigate. Before you get started you must have linux installed or running virtually on your computer. I would recommend downloading fedora or ubuntu (If you have trouble installing ubuntu leave a comment below and i will post a tutorial).

Commands To Remember

This are some of commands you must remember which will help you to use terminal more easily.
ls - it will list all files and folder in your current directory
ls -l it will give detailt listing of all files and folders
ls -a it will list all files and folder in your current directory including hidden files (files and folders that begin with period)
pwd will print your working directory or simply your current directory

Navigating In Terminal

Here i may refer folder as directory so dont get confused. This is the term we use in linux for folders.

cd - cd stands for change directory. we use cd follow by path address to navigate ro that folder.
Eg: cd Desktop will make desktop as my current directory.
cd / will make root as you current directory
cd ~ will make home as your current directory
Typing cd alone is same as cd ~ and it will make home as your current directory
cd .. will make parent directory i.e directory above your current directory
cd ../../ will take you two folder up

Creating Files And Folder

mkdir - we use mkdir follow by path or folder name to create a directory
Eg mkdir car will create directory car in your current directory
to create folder recursively i.e folder inside folder inside folder we use -p flag
Eg mkdir -p vehicles/car/truck will create directory vehicles in your current directorywhich have car inside it and car has directory truck in it.

touch - we use touch follow by file name to create empty file.

Removing Files And Folders

rmdir - we use rmdir follow by path to to remove any directory. This will not work if folder you are trying to remove has something in it.
rm -r  to remove file recursively which can not be removed by rmdir
rm - We use this command to remove files

Feedback

I guess thats enough for today. I know this is little confusing but practice and you will be a terminal pro.  Leave a comment below if you have any trouble. You may also like to read below articles.

Monday, 8 December 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.

Full Version


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.

simple trick to convert webpage to pdf

webpage as pdf

In this post i will teach a simple trick or browser feature that let you convert any web page into PSD file format, which might help you to read your favourite articles offline. So lets get started.

Full Version


How To Save Web Page To PDF File ?

1. Open the Google Chrome Browser on your PC or MAC 
2. Then go to the web page that you want to convert as a PDF. 
3. Now press Ctrl+P on Windows PC or Command+P if you are on a Mac to Open the the Print dialog on Chrome Browser. 
4. Now Change the destination to “Save As PDF” and hit the save button.
5. The current web page will instantly be downloaded as a PDF document

Sunday, 7 December 2014

hack-book-review-by-cool-hacking

the hack book
The Hack Book is awesome eBook for beginners who wants to dive into the field ofhacking. It contains guides to hacking tools and scripts along with underground hackingwebsites with awesome stuff. I would recommend this book if you are newbie in the fieldof hacking. You must check out Free Sample of this eBook by Clicking Here. Check out complete article to know more about this book.

Full Version

Topics Covered In The Hack Book

  • Learn various Hacking Techniques.
  • Learn To Secure Your Computer From Various Hacking Attacks
  • Learn How to Tap Computers. (12+ Tools Included!)
  • How to use Malware's (30+ Tools Included!) and also Protect yourself against it.
  • Learn To Be Anonymous On The Internet
  • Few ways of Hacking Facebook, Yahoo and Email Accounts. (Scripts Included!)
  • Make Destructive Viruses. (2 Programs Included)
  • Network Hacking
  • Website Hacking.
  • Access to the latest Hacking Tools and Underground Communities.

Features

Non Technical Writing - First off, the writing. The writing isn't technical at start for the readers convenience. But the usage of technical words is important later on in the eBook is something you will find. The upside is that, he explained EVERY single technical keyword at some point of time in the eBook.

Hacking Tools – The best part about the eBook is that the author gives you a handful of POWERFUL hacking tools to kick start your hacking adventures. And unlike the other websites on the web, we give tools such as these : Learn How to Hack | Hacking eBook 

Coding -  Though coding isn’t required for implementing the whole of this eBook.Also,he doesn't teach you the whole of coding in the book (which is near impossible for any writer). He stressed well on the importance of learning coding after reading this book to become a successful and professional Hacker. The more coding you learn, the better you get at it.

Very Descriptive – The book has many pictures. As you can see for yourself in the sample book, you will see that he has given a thorough explanation with pictures for EXTREMELY easy understanding.

I would say this is a MUST READ for any budding hacker.

how-to-run-whatsapp-on-desktop

Run WhatsApp on your desktop computer!

WhatsApp is a really cool messaging app that lets you send messages and chat with your buddies absolutely free of charge! It is the most popular messaging app for Android and iOS smartphones, and rightly so! It connects people from around the world. But the problem is, it's only made for smartphones. You can't use it well on older/feature phones. And even if you do own a smartphone, it drains away your precious battery time, since it needs internet connectivity to do its thing. Well if you're like me and don't want to let battery timing get in the way, there's a solution! You can install and use the app right from your desktop computer!

Full Version

What is WhatsApp?

WhatsApp is a free messenger designed to be used on smartphones. It works over the internet and allows you to talk to any person living anywhere on planet Earth provided that you know their cellphone number. The app is designed for Nokia Symbian, iPhone, Android and Windows Phone devices and it’s completely free to use for the first year. Don’t let that last line bother you, since there are ways to get it for an unlimited time.

I did not mention PC or Mac in the supported platforms because this app is not officially available on them. But the title wasn’t misleading since we got it running on a PC and Mac.

What will I need?

The tools or rather software that you need is a simple Android emulator for PC/Mac. The one we’ll be using is the well-known Bluestacks App Player you can download from the link provided below.
And yes, WhatsApp will need your cell-number so you better make sure you have one.

Your system must have a 1GB+ RAM for running the emulator. Good graphics card and processor will obviously result in better rendering but a simple one would also do. Mac OS X or PC with XP SP3, Vista, 7 and 8 are supported.

Let’s Begin…

The steps shown below work for both PC and Mac. Just make sure you download the correct version of Bluestacks.
  • First up, download and install Bluestacks app player. It’s a straight forward installation. However it might want to download extra stuff so your internet connection better be working
  • Run the player from the desktop icon. You’ll get to a screen similar to the one shown below
BlueStacks
  • Click on the Search icon and enter WhatsApp
  • Select WhatsApp Messenger from the list and proceed to the installation. It might also ask you for a Google account, just provide that right away. Since it is an Android emulator, you’ll be navigated to Google Play. Click Install and it’ll start the download.
Download WhatsApp
  • And that’s it! WhatsApp will ask you to enter a valid phone number. The verification will also work through that number so you better enter it correctly.
  • Great! Now you can use WhatsApp the way you do it on a smartphone. You can customize your profile, contact all your friends regardless of which platform they are running the app on and also get live notifications of new messages from the emulator.
Use WhatsApp!

You can open up the app form the My Apps category in the main screen.

So why WhatsApp?

There are several other such messenger services available on the same platforms. You have Viber, Wechat, Kik and whatnot. Firstly, WhatsApp is the most popular app of the lot. Secondly, WhatsApp has got everything - you can communicate text, images or even high quality videos with friends. Plus, it’s simple and easy to use. And if your one-year free license expires, you can always reinstall the app to get it back.

WhatsApp is not officially released for PC/Mac but there are ways like the one mentioned above that make that happen. The methodology is simple but works quite well. WhatsApp is also the best of its kind which makes it a must-have. Just in case you were wondering throughout this tutorial, YES you can run any android app/game on the software mentioned. Guess your life just got better, much better!

Friday, 5 December 2014

how to open banned websites with proxy sites ?

Open Banned Websites WIth Proxy Sites
There are many sites which are blocked by government because of breaking laws of their country. The user downloads many softwares to open these sites but end up being infected by  malware, virus. Today i will share a trick with you guys which can help you easily open these banned sites without downloading anything. As you know that there are many online proxies but everyone need a proxy server which is faster and trusted. Here in this post I am revealing an online proxy and a tutorial to open banned sites with the help of these online proxies which is trusted and fast. Just follow my step to open banned sites.

Full Version


How To Open Banned Site ?

1. Open www.incloak.com in your browser.
You can also use any proxy site from list below
2. After that enter the URL of the site which you want to open like below.
Open Banned Websites WIth Proxy Sites
3. Now click the Hide Me button and enjoy

how does the free services and softwares can cost high ?


How Does The Free Services And Softwares  Can Cost High
Of course it is awesome to get something totally free of cost, isn’t it? But are you aware that the free thing can cost you much more in near future. How? Let us study. Many of the service and softwares are sold free of cost just to populate it in a large number of people. Some ‘business minded’ individuals thought that it would be ‘cool’ to add some advertisements to such applications to earn money. As ‘Excess of anything is bad’, too much of greed and rise in difficulty in advertising led to the birth of adware and spyware.

Full Version

Adware is type of malware, which misleads, corrupts and harasses the users by popping out unwanted or irrelevant advertisements. They sometimes consist of viruses and Trojans. While the spywares, justifying its name, spies on the user’s activities and online behaviour and reports to the concerned person.

How bad they can be?

Adwares and spywares being malware can affect you and your website or system to a greater extent.
  • They can help intruders add viruses and Trojans into website and system.
  • They can help other malwares to be injected into your website and system.
  • Can slow down your website/system’s performance.
  • Clashes with other softwares and tools.
  • Help hackers gain access to your credentials.
  • Can result in to theft of your valuable data and sometimes even money.
  • If you are an adware-spyware victimized website, you may become the source of spreading the viruses and Trojans and hence can get blacklisted and ultimately can lose reputation.

How can you prevent being a victim?

Now, that you aware regarding the ill-effects of the adwares and spywares, you should be cautious while exploring the Internet.

Following points will help you keep a safe distance from adwares and spywares:

  • Avoid visiting on suspicious website: Don’t get into those websites which is not trustworthy or is famous or experienced as a spreader of malwares. Stay away from Piracy; often the pirated softwares contain viruses and Trojans (avoid sites like warez).
  • Don’t click on the pop-ups and other ads: Never get drifted away by the pop-ups and ads especially those asking “click here” or “Yes or No” even asked while installing the software.
  • Give a little test to pass: Softwares like Spychecker can help you out to find whether the software you are going to install is bugged with a spyware or not.
  • Secure your system: Install anti-virus softwares and keep them updated. They will help you around detecting the viruses and Trojans and will also help remove them.
  • Use Firewall: Firewall helps prevent entry of hackers and will always ask permission before allowing any traffic to enter. As in the case of Adware and spyware they definitely need to deliver their information collected and with Firewall on, you can successfully stop them doing so.
  • Scan your website/system: Get a malware/adware/spyware scanner installed. Scanning will not only help you detect the injected malicious substance but also removes them, if found any. Ad-Aware is one such program.
Security is very sensitive matter for both the IT service providers and users. One should proceed very carefully. As for the IT service providers like software publishers, website owners, e-commerce website owners, e-mails service providers and so on should install SSL certificate for better performance and uninterrupted growth.
For users, well, always look for two symbols “https” and a green padlock in the address bar. Download softwares from the real authors only and stop propagating piracy.