Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- ##########################
- #Demo : http://openfbdns.webuda.com//twitter-search-dirct.php
- ##########################
- error_reporting(0);
- ?><html>
- <link href='https://fonts.googleapis.com/css?family=Eater' rel='stylesheet' type='text/css'>
- <style>
- html, body {
- background-color:#FFFFFF;
- font-family:monospace;
- height: 100%;
- text-decoration: none;
- background: url(http://cdn.twitrcovers.com/wp-content/uploads/2013/03/Chicago-night-lights-l.jpg) no-repeat center center fixed;
- -webkit-background-size: cover;
- -moz-background-size: cover;
- -o-background-size: cover;
- background-size: cover;
- font-family: Ampersand, Georgia, serif;
- }
- h1,h3{
- font-family: 'Eater', cursive;
- color:red;
- }
- textarea,input {
- resize:none;
- // color: #4099FF ;
- border: 4px solid #3B5998;
- font-family: Ampersand, Georgia, serif;
- }
- input {
- color: ##33CCFF;
- border:1px dotted #33CCFF;
- }
- table{
- color: #FFFFFF;
- border: 4px solid #3B5998;
- }
- th,tr,td{
- border: 4px solid #3B5998;
- }
- </style>
- <br></br>
- <center>
- <h1>Twitter Search User Directory<img src='http://www.anthonyjastrow.com/graphics/Twitter.png' height="100" width="100"></h1>
- <form action="" method="POST">
- <h3>UserNames</h3> <br></br><textarea name="key" style="margin: 0px; height: 479px; width: 263px;" ><?php echo"hello\r\nadmin\r\nnotadmin\r\nverwalter\r\nanyone\r\nboss\r\nnew\r\napache\r\nbin\r\nmysql\r\ninfo\r\nubnt\r\njenkins\r\nbash\r\nmp3\r\napp\r\naditza\r\nadmin1\r\nnobody\r\noperator\r\navouni\r\nberila\neggbreaker\r\nluis\r\nmsr\r\nnetwork\r\nnews\r\nnmrsu\r\nnologin\r\nftpuser\r\nftptest\r\nwebmail\r\nsysadmin\r\nteamspeak\r\nmysqladmin\r\nvmware\r\nbaltasar"; ?></textarea>
- <br></br>
- <input type="submit" value="START">
- </form>
- </center>
- <?php
- set_time_limit(0);
- if(isset($_POST['key']))
- {
- function getSslPage($url,$sckey) {
- $ch = curl_init();
- curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
- curl_setopt($ch, CURLOPT_HEADER, false);
- curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
- curl_setopt($ch, CURLOPT_URL, $url);
- curl_setopt($ch, CURLOPT_REFERER, $url);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
- $result = curl_exec($ch);
- $output = json_decode($result);
- print"<tr><td>".$output->{'msg'}."</td>";
- print"<td>".$output->{'desc'}."</td>";
- echo"<td><a href=\"https://twitter.com/$sckey\" class=\"twitter-follow-button\" data-show-count=\"true\" data-size=\"large\" data-dnt=\"true\">Follow @$sckey</a>
- <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script></td></tr>";
- curl_close($ch);
- }
- $key = explode("\n", $_POST["key"]);
- echo"<center><table style=\"width:70%\" border=\"1\" ;>
- <tr>
- <th>Status</th>
- <th>Description</th>
- <th>Follow</th>
- </tr>";
- echo"<tr>";
- foreach($key as $sckey) {
- $sckey = @trim($sckey);
- $url="https://twitter.com/users/username_available?context=signup&custom=true&email=&full_name=&suggest=1&suggest_on_username=true&username=$sckey";
- echo getSslPage($url,$sckey);
- flush();@ob_flush();
- }
- echo"</tr>";
- echo"</table></center>";
- } // end of button click
- ?>
- <center><h3>Coded By H4T3D</h3></center>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement