Tuesday, 31 January 2017

How to hack WEP secured wifi?

Hack wifi (WEP) using kali linux 


Hi guys, in my last post i posted some detail of wifi encryption and how you can easily hack them with some simplest GUI tools. But today i will show you how you can done same thing with commands line on terminal. Believe me there are more chances of cracking wifi command lines than GUI.
Alright, i am assuming you have Kali Linux and running on your computer. If not, here is a post on hacking with kali linux.

Wifi Hacking: WEP using kali linux


To hack WEP wifi encrypted, just follow these simple steps-

1. Find out the name of your wireless adapter.

Alright, your computer has many network adapters; you need to know its name. Open a new terminal and type:
ifconfig 
and hit enter.


So there are basically the following results that you need to know-
lo - loopback.
eth - ethernet
wlan0or wlan1
 Note down your wlan(0/1/2) adapter.

2. Enable Monitor mode

To enable monitor mode just type:
airmon-ng check kill
airmon-ng start wlan0
 

Rememberin my wireless adapter is wlan0, vary with your wireless card.
Your new interface called monitoring mode will be created as mon0 in case of Kali linux version 1.0.
Note: If you are using kali 2.0 then your new interface will be wlan0mon.


3. Start capturing packets

Now, we'll use airodump-ng to capture the packets of the wifi. This tool gathers data from the wireless packets of the wifi.
Type in the terminal:

airodump-ng mon0


For kali 2.0, replace mon0 with wlan0mon.
You'll see many wifi as well as the name of the wifi you want to hack.


4. Store the captured packets in a file

This can be achieved by giving some more parameters with the airodump command:
airodump-ng mon0 --write name_of_file


Again for kali 2.0, replace mon0 with wlan0mon.

Now the captured packets will be stored in name_of_file.cap.  You will have to wait till you have enough data (10000 minimum)


5. Crack the wifi

When finally you've got 10000 packets (don't stop the packet capture yet). Now, you can use aircrack-ng to crack the password.
In a new terminal type:
aircrack-ng name_of_file-01.cap

The program will ask which wifi to crack, if there are multiple available. Choose the wifi. It'll do its job. If the password is weak enough, then you'll get it in front of you. If not, the program will tell you to get more packets. The program will retry again when there are 15000 packets, and so on.

You'll get the key, probably in this format-
xx:xx:xx:xx:xx
Remove the colons
xxxxxxxxxx is the password of the wireless network. If you have any question, comment freely.





continue reading How to hack WEP secured wifi?

Sunday, 29 January 2017

Hack Wifi In Kali Linux 2017 Methods

How to hack wifi in kali linux


When it comes to hacking, wifi hacking is one of the most popular topic, because everyone wants a free internet connection.  Many Hacking tools, software and techniques have been used by many hackers that crack a high secured Wi-Fi Network.
Kali linux is one of them, many people get confused, kali linux is not a cracking software instead it is a toolbox.
Note: Kali linux is tool kit, to hack wifi you have to choose right one. If one method don't work for you try another. I will cover all available tools in my upcoming posts.
Before hacking wifi, you must be aware of encryption technique used in order to secure wifi. It’s not only for knowledge although it will help you to choose different kind of suitable attack for different kind of encrypted networks.
There are different types of Encryption from which three basic security encryption are most common.

Wi-fi security: methods of encryption

 These three methods of encryption has different types of vulnerability associated with wireless networks and can be hacked with different methods. The different types of Wireless Encryption Security techniques include the following (not deep details):

WEP:WEP is Wired Equivalent Privacy that can be cracked easily when configured appropriately. This method of encryption can be cracked within 5 minutes.

WPA:WPA is Wi-Fi Protected Access that provides strong security. Even then, there is possibility to crack if the Wi-Fi password if short. However, wireless networks can be hacked easily using various tools

WPA2:WPA2 is Wi-Fi Protected Access 2 that also eventually provides high security. You can hack this method of Wi-Fi encryption at the time of packet generation from Wi-Fi access points.


Techniques to hack wi-fi network

If you are much interested in hacking high security encryption based Wi-Fi networks, you need to arrange few things that are required at the time of Hacking process. After arranging all the essential things, you can hack a Wi-Fi network using few tools and techniques that can be seen below:

REQUIREMENTS

  • Kali Linux OS    
  • External Wi-Fi Adapter or Inbuilt Wi-Fi Device

  (Don't be confused, if your computer doesn’t have a wifi device, then you have to buy an external one).  




METHOD 1: HACK Wi-Fi Network using Wifite


Wifite is a Linux-based platform tool that is available on variant Operating Systems like Kali, Backtrack 5, BlackBuntu, BackBox and Pentoo. Wifite is basically used to attack multiple encrypted networks (WEP, WPA/2 and WPS) in a row that is customized to be automated with only a few arguments.
Simply type ‘wifite’ in terminal. Here, you can see List of Available Wi-Fi Access Points.
 Wait for few seconds in order to notice nearby Wi-Fi points like WEP, WPA/WPA2.


Steps to Hack WEP Encryption based Wi-Fi Network

Step 1. Just choose the appropriate target NUM (1,2,3,..) in order to crack it.  
Step 2. Make sure that the attack is completed within 10 minutes. You need not worry if one WEP WiFi attack fails, the other will come into action automatically for succeeding 10 minutes.  Within few minutes the WEP Wi-Fi network gets hacked.


Step 3. You can see the WEP key that is present in the above image. It is a Hexadecimal representation of WEP WiFi’s password. That WEP Key can be used as the Wi-Fi password. You can also convert the Wi-Fi password into actual password using online Hex-to-ASCII converter.

Steps to Hack WPA Encryption based Wi-Fi Network


Hacking a Wi-Fi network that uses WPA security encryption is little bit tough when compared to WEP as this is highly protected encryption method. It takes less time to hack a Wi-Fi network that uses short passwords.
In order to hack this type of Wi-Fi network you need to use Handshake capture and wifite will capture it. I will post another method to capture Handshake file in my post.


Handshake Capture:

Handshake is a file that can be captured when Router and client(s) communicate to authenticate each other. You may have a doubt that, “What is the purpose of this Handshake file?” The main target is to hack Wi-Fi network. This Handshake file contain Wi-Fi password but in encrypted form. To get that password we need to perform different kinds of attack on Handshake file.

 Following attack can be done on Handshake file.



Brute-Forcing: As the password is in encrypted form, let us try some other password combination on the encrypted password to acquire the original password. This process is known as Brute Forcing that is done offline. By using Brute-Forcing, the password present in the handshake file can be captured easily within few minutes.

Dictionary File:  In the below image, you can see dictionary which is a file that contains all known words from various sources usually phrased as Wi-Fi password. 


As soon as you start WPA handshake capture, it displays a message as “Client Found”.  It generates a command using handshake capture (that contains password) as (TEST_C0-A0-BB-04-5C-A9.cap). The above command cracks the password file that must be saved at /root/DICTIONARY/. Till now, you have used two WPA attacks that are completed successfully.


A password file usually contains words that are created using combination of different characters, numbers and special symbols. A password requires a lot of computational power if it a strong password including numbers and other special characters. The above WPA Wi-Fi Security Encryption got cracked easily because of easy password. Suppose, if you are but dealing with strong password, it might take more hours to crack the password.




METHOD 2:  HACK Wi-Fi Network using WIFIPHISHER




Wifiphisher is a security tool that performs one kind of phishing attacks which are against WPA networks. Unlike other methods of hacking, Wifiphisher is a type of social engineering attack that does not include brute forcing.
Wifiphisher is a tool that is used to hack a Wi-FI network and this attack makes use of three phases:

PHASE 1: Victim is being deauthenticated from their access point.


Wifiphisher tries to jam all the target access point’s wifi devices continuously that are available within range by sending deauth packets to the client from the access point.
 Then it starts generating fake access points by copying an access point from a set of access points shown below:


PHASE 2:
 This is the second phase where the Victim joins our fake access point.
It asks for password authentication.
 Wifiphisher sniffs the area and copies the target access point’s settings.
 Now, this tool creates a fake wireless access point that is modeled on the target by setting a NAT/DHCP server and forwards the right ports.
 Consequently, because of the jamming, clients will start connecting to the fake access point. After this phase, the victim is Mitimed.


PHASE 3:
Victim is being served a realistic router config-looking page where the Wifiphisher tool employs a minimal web server that responds to HTTP & HTTPS requests.
    As soon as the victim requests a page from the Internet, wifiphisher responds with a realistic fake page that asks for WPA password confirmation due to a router firmware upgrade.






Step by step hacking tutorials are coming… 
continue reading Hack Wifi In Kali Linux 2017 Methods

Saturday, 14 January 2017

Hack clash of clans via wapka phishing

How to make clash of clans phishing site

clash of clans phishing site

Hi guys, hacker not only enjoy breaking systems, sometime hacker also enjoy game, ah correct me hacker also enjoy hacking a game. What if you can get other gamer's score, more clearly if you can have other player's coc village. Yes it is possible with the help of phishing. Today i am gonna show you how to make phishing of coc in wapka.
Sometime hacking is phishing people in your net, with your skills.
 I am assuming you already know various kind of phishingpopular on internet like facebook phishing, gmail phishing blah blah...
Let's continuous this series of phishing, since it is very easy even a small kid can perform such phishing attack with his mobile. All tedious part on such phishing is convincing victim to signup, which can be easily done by social engineering. The only disadvantage of phishing is very people know such kind of scam so not everyone will trap in your net. But never underestimate the phishing, if it is used with some skills. Anyway i leave all this part on you, and show you how to make phishing page of coc? For simplicity i am using wapka, there other method to make phishing.

Note:It is almost impossible to hack/crack coc. There is no online site which can hack coc and provide your thousands of gems for free. All sites about coc hacking are fake. Never believe on such sites. Yes, xmod and private servermay help you a bit.

Clash of Clans phishing tutorial




Step 1: Of course you need a wapka account, so register a new Wapka account or login with your existing account.

Step 2: Now create a new site, it is recommended don't use any existing site, because existing phishing link won't let victim to believe in your site. So create a new site with tempting url, such clash of clan hacking....

Then click on Manage.

Step 3: Now you have 2 modes available (admin mode and user mode), Click on Admin mode.

Step 4: As you click on Admin mode you redirects to a Blank page. It’s blank because till now you did nothing with your newly created site. You need to add codes in your site.

At the Lower right most corner you have a link ::EDIT SITE(#):: click on it.

clash of clans phishing code

Step 5: Now click on (WML/XHTML code).

clash of clans phishing code

Step 6:  Copy all the coc phishing code and paste it into (WML/XHTML code) box and click on Submit button.

clash of clans phishing code

Coc phishing script:





Step 7: It’s all over now send your site link which was created at Step 2 to your victim. Since most never believe on those sites which are ending at .wapka. So you need to short this link and send shorted link to your victim.



As your victim login to your page his/her E-mail and Password sends to your E-mail by which you have created your account at wapka at first step. Now you’ve your victim's email and his village ha ha ha..

continue reading Hack clash of clans via wapka phishing

Monday, 9 January 2017

Cyber war begins! Indian Hacker Hack Pakistani site.

Cyber War Begins! Pakistani Airport Websites Hacked by Indian Hackers


indian hacker image


I think many of you heard how Pakistani hackers hacked Indian National Security Guard (NSG) website. The hacker even posted anti-India content and a profanity-laden message against the Indian prime minister. This action of Pakistani hackers declares a cyber-war.

Hacker injected ransomware

indian hacker hakc pakistani site image

As we are busy celebrating the New Year, Indian and Pakistani hackers were busy in the cyber war. So, in return Indian hackers have hacked and injected ransomware (a type of malicious software designed to block access to a computer system until a sum of money is paid) on over three Pakistan airport websites.

Indian Hackers have claimed that they have hacked Islamabad, Peshawar, Multan International and Karachi Airport website:

www.peshawarairport.com.pk,
www.islamabadairport.com.pk,
www.multaninternationalairport.com.pk,
www.karachiairport.com.pk


Indian hackers not only managed to hack the website they have also injected it with a ransomware which restricted them to restore the websites. Indian hackers have demanded Bitcoins in exchange of unlocking the websites.

As reported by India Today, Indian hackers told Mail Today that last time the money they got for unlocking the websites of Pakistan was donated to needy kids and this time they will not share the key to unlocking the sites.

One of the Indian Hacker told Mail Today “We have been closely monitoring attacks coming from Pakistan. They have been engulfed in spreading hatred and abusing India and government. We have control of many Pakistani websites and each attack will get a stricter reply from our side.

Cyber Experts believes that hacking airport websites can be used to get information about flights, which can have serious consequences. Leaking the details is also dangerous.

Kislay Choudhary, Cyber-crime expert, said “Indian hackers have only replied after observing malicious intention of Pakistani hackers. Techies across the border targeted Indian sites result of which NSG’s website was hacked. Such fights are common but now the intensity of attacks has increased many folds as hackers from both the countries are targeting crucial websites.

Comment your view against such cyber wars.
continue reading Cyber war begins! Indian Hacker Hack Pakistani site.

Friday, 6 January 2017

Freecharge carding method 2017

Freecharge carding trick

Freecharge carding method 2017

Hi guys, cardings are all about using vulnerabilities for your profit. Today I will tell you, how you can card freecharge with the help of Snapdeal. I think everyone know that spandeal partnered with freecharge and Snapdeal refund in freecharge. This all knowledge is the base of our carding tutorial.
This is not direct freecharge carding instead with the help of snapdeal but we can say it is freecharge carding. If you are new in carding or want to know more detail of carding read here.

  Why freecharge carding?

Freecharge carding trick

 As I’ve already posted so many tutorial of carding, so why we are now going with freecharge. Actually carding freechage is much easier than other, this is not only the reason to card freecharge but there are many other useful features of Freecharge. Following are some benefits of using Freecharge.

·        As a wallet
·        Transferable to Bank account
·        Whatsapp payments
·        Split bill options
·        Chat and pay

Freechage is also used at over 10000+ online and offline sites such as cafĂ© coffee day, Bookmyshow, Mcdonald’s and snapdeal etc, so you can later use freecharge for shopping too.

Freecharge wallet carding tutorial


Freecharge carding trick latest

As i already mention above that freechage and snapeal are partner. It is not only reason of choosing snapdeal, snapdeal provide refund when customers cancel their order. So we are going use these feature of snapdeal as follow.

1. First you need to place an order and pay with card i.e snapdeal carding.

2. After carding Snapdeal product, just cancel the order.

Freecharge wallet carding


3. You would get a message of your cancellation reasons. Just write any obvious reason like delay in delivery. After that they ask for refund in Freecharge. Just say Yes.


4 You will get full of your money on Freecharge
Now you can use freecharge for recharges, bills, shopping or simply transfer this money to your bank account.

Freecharge wallet carding  image



Tags:  Freecharge Unlimited Hack,Freecharge carding,Freecharge carding tutorial, Freecharge carding latest,Freecharge Carding method,how to card Freecharge easily with AMEX, Freecharge carding method 2017,Freecharge carding hack,Freecharge, Carding at cheap rate,Freecharge carding video
continue reading Freecharge carding method 2017