Suneo Ch:
will explain how to do a brute-forcer for Facebook (but can be used with other websites aswell). First, you have this code (got with inspect element from Facebook login page):
PHP Code:
<input type="email" class="inputtext" name="email" id="email" value="" tabindex="1">
Note down the id: email.
Now the password:
PHP Code:
<input type="password" class="inputtext" name="pass" id="pass" tabindex="2">
Note down the id: pass.
Now the login button:
PHP Code:
<input value="Log In" tabindex="4" type="submit" id="u_0_q">
Note down the id: u_0_q and type: submit
These will be used like this:
PHP Code:
If WebBrowser1.Document.GetElementById("email") IsNot Nothing Then
WebBrowser1.Document.GetElementById("email").SetAttribute("value", "your_email@yahoo.com")
End If