http://earn4youth.com/?ref=96141
flowerup
Friday, 20 February 2015
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](https://lh3.googleusercontent.com/blogger_img_proxy/AEn0k_tTSTpEFAq6vA3q3VtL2fW61uvNC1Lo_HoZBfyVWIM_Td7c6ioz2n96s0MTrYl_cHCuLRDIafB0wZOAXAihKnqb-thhvHsWPM7U15Dib6uUCXijnt1L=s0-d)
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
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](https://lh3.googleusercontent.com/blogger_img_proxy/AEn0k_tTSTpEFAq6vA3q3VtL2fW61uvNC1Lo_HoZBfyVWIM_Td7c6ioz2n96s0MTrYl_cHCuLRDIafB0wZOAXAihKnqb-thhvHsWPM7U15Dib6uUCXijnt1L=s0-d)
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
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
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.
rm -r to remove file recursively which can not be removed by rmdir
rm - We use this command to remove files
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 directoryEg 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](https://lh3.googleusercontent.com/blogger_img_proxy/AEn0k_tTSTpEFAq6vA3q3VtL2fW61uvNC1Lo_HoZBfyVWIM_Td7c6ioz2n96s0MTrYl_cHCuLRDIafB0wZOAXAihKnqb-thhvHsWPM7U15Dib6uUCXijnt1L=s0-d)
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:
3. Insert the disc into drive and restart you computer.
4. If everything goes right you will see screen like below.
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.
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.
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.
3. Insert the disc into drive and restart you computer.
4. If everything goes right you will see screen like below.
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.
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
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.
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 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](https://lh3.googleusercontent.com/blogger_img_proxy/AEn0k_tTSTpEFAq6vA3q3VtL2fW61uvNC1Lo_HoZBfyVWIM_Td7c6ioz2n96s0MTrYl_cHCuLRDIafB0wZOAXAihKnqb-thhvHsWPM7U15Dib6uUCXijnt1L=s0-d)
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! Run WhatsApp on your desktop computer!](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjLJ0Dy6VRD0R3JXBxLELwAZNFWNwDD4qs2oikL9lzrcE29hp07RmKVSMSeu1U32g1b_4BBANoOdK23CV2KDPd_-F1Y1k9fgJVJ0OeZNXHScA6t12BBvd-c7la27z6usJqsAFZFY1YRm5Rt/s320/MAIN.png)
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](https://lh3.googleusercontent.com/blogger_img_proxy/AEn0k_tTSTpEFAq6vA3q3VtL2fW61uvNC1Lo_HoZBfyVWIM_Td7c6ioz2n96s0MTrYl_cHCuLRDIafB0wZOAXAihKnqb-thhvHsWPM7U15Dib6uUCXijnt1L=s0-d)
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
- 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.
- 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.
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!
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!
Subscribe to:
Posts (Atom)