Advertisement
JHA

sdkjha

JHA
Jan 2nd, 2013
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.32 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <html>
  4.  
  5.  
  6. <head>
  7.  
  8. <title>JHA - Home</title>
  9. <link rel="stylesheet" type="text/css" href="http://jhadev.co/css/jha.css" />
  10. <link rel="stylesheet" type="text/css" href="http://jhadev.co/css/bootstrap.css" />
  11.  
  12. </head>
  13.  
  14. <body>
  15.  
  16. <img src="http://jhadev.co/images/logo.png" class="page_logo" alt="JHA" />
  17.  
  18. <div class="page_header">
  19.  
  20. <a href="http://jhadev.co/index.php">Home</a>
  21. <a href="http://jhadev.co/form.php">Contact</a>
  22.  
  23. </div>
  24.  
  25. <div class="page_section">
  26.  
  27. <form name="input" action="skype.php" method="POST">
  28. <div class="input-append">
  29. <center>
  30. <tr><td><pre><strong>Skype Resolver</strong><br>Pulls the IP of any Skype Username</pre></td></tr>
  31. <br><br>
  32. <input type="text" name="username" id="username" placeholder="Skype Username" >
  33. <input id="submit" name="submit" type="submit" class="btn btn-warning" />
  34. </center>
  35. </div>
  36. </form>
  37.  
  38. <?php
  39. if (isset($_POST['submit'])) {
  40. $name = $_POST['username'];
  41. $blacklist = array("xjha929x1","zachockey60");
  42.  
  43. // BLACKLISTS
  44. // Thanks to Pillows and CarrotMilk for better blacklisting
  45. if(in_array($name,$blacklist))
  46. {
  47. die("Sorry! $name is blacklisted!");
  48. }
  49.  
  50. // BLACKLISTS
  51.  
  52. else
  53. {
  54. $api1 = file_get_contents("http://www.skype2ip.cu.cc/api.php?key=94d5f47d8a8d7a012aadaa73439704cc6ea3dab0&username={$name}");
  55. //echo '<center><br><tr><td><pre>{$name}\'s IP is: {$api1}</pre></td></tr></center>';
  56. echo '<center>'.$api1.'</center>';}
  57.  
  58. }
  59. ?>
  60.  
  61. </div>
  62.  
  63. <div class="page_footer">
  64.  
  65. <span class="label label-info">&copyJhaDev.Co 2012 - 2014</span>
  66.  
  67. </div>
  68. </body>
  69. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement