Advertisement
BaSs_HaXoR

How to make a Skype Resolver [Windows VPS]

Feb 26th, 2015
918
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 6.65 KB | None | 0 0
  1. #########################################################################################################################################################################################  
  2. #########################################################  HOW TO MAKE A SKYPE RESOLVER USING A WINDOWS VPS AND Debugged Skype  #########################################################
  3. #########################################################################################################################################################################################  
  4. #       // ORIGINAL LINK: https://webcache.googleusercontent.com/search?q=cache:rc_kxfJ5t9cJ:www.hackforums.net/showthread.php%3Ftid%3D4376551+&cd=1&hl=en&ct=clnk      #
  5. #       // ORIGINAL LINK (Non-cache): http://www.hackforums.net/showthread.php?tid=4376551                                          #
  6. #########################################################################################################################################################################################
  7. # Credit Goes to Tutorial Writer i have just found it and searched on HF but no one posted it so here you go guys. DO NOT ASK FOR HELP REGARDING THIS TUTORIAL.
  8. # Don't forget to say thanks. Enjoy!
  9. #########################################################################################################################################################################################
  10.  
  11. #########################################################################################################################################################################################
  12. # Why pay when you can make your own.
  13. # Most of you guys must already know what a Skype resolver is but for those that just arrived, a Skype resolver is a way to send a request to Skype node and retrieve an IP address, It is mostly incorporated into Booters and Stressers nowadays and it is one of the main selling points of said things.
  14. ########################################################################################################################################################################################
  15.  
  16. #########################################################################################################################################################################################
  17. # Requirements:
  18. # Well as this relies on the decrypted Skype userland runtimes, it will require a windows vps to host it, and apart from that you don't need anything in particular apart from knowing how to set up httpd and registering some service with your windows VPS.
  19. # -----------------------
  20. # -    The checklist    -
  21. # -----------------------
  22. # ☐ Get a windows VPS
  23. # ☐ Compile the program I will let you download later
  24. # ☐ Install httpd
  25. # ☐ Follow the setup Guide
  26. #########################################################################################################################################################################################
  27. # Setup guide
  28. # ------------------------------------------------------------------------------------------------------------------------------------------
  29. # - 1. Install Microsoft .NET Framework 4 on your VPS: http://www.microsoft.com/en-us/download/details.aspx?id=17851                 -
  30. # -                     2. install WAMP or httpd in a DIR:                           -
  31. # -                     WAMP : http://www.wampserver.com/                            -
  32. # -                     HTTPD : http://httpd.apache.org/                             -
  33. # ------------------------------------------------------------------------------------------------------------------------------------------
  34. # 3. Navigate to C:\wamp\bin\apache\Apache(whatever)\bin\ and run httpd.exe. You can also run it from CMD if you prefer...
  35.  
  36. # 4. Copy the 'SDK' folder to the root of C: drive. You now have C:\SDK\skype\Skype4COM.dll and C:\SDK\skype\Skype4COMLib.dll.
  37.  
  38. # 5. Open your C:\wamp\www\ or wherver ou put your Httpd install folder and copy index.php and the 'skype' folder into it.
  39.  
  40. # 6. Open the 'logging.reg' file in C:\wamp\www\skype\ or wherver you installed httpd dir and add it to the registry.
  41.  
  42. # 7. Run skypepatched.exe and register a new account.
  43.  
  44. # 8. Compile the Skype resolver project that you can find in the RAR and place it in WWW dir where the index.php is.
  45.  
  46. # 9. Open a webrowser on the vps and go to http://localhost/index.php?name=Whatever. Skype should come up and show that SkypeResolver.exe is asking to communicate with Skype, you should allow it.
  47.  
  48. # 10. You can now resolve online usernames by going to http://localhost/index.php?name=Username , you can IP lock it so that no one else can use it...
  49. #########################################################################################################################################################################################
  50. # ------------------------------------------
  51. # -   Example php to request a Username:   -
  52. # ------------------------------------------
  53.  
  54. <body bgcolor="33" TEXT="C2CCC2"></body>
  55. <center> <img src="http://i.imgur.com/E3jJJ.png" alt="Empire">
  56. <form action="index.php?action=submit" method="post">
  57. <input type="text" name="username" />
  58. <input type="submit" value="Get Ip." /><center>
  59. <?php
  60. $username = $_POST['username'];
  61.  
  62. switch($_GET['action']){
  63.     case 'submit':
  64.       echo file_get_contents("http://ip of your resolver goes here/index.php?name=".$username);
  65.     break;
  66. }
  67. ?>
  68. #########################################################################################################################################################################################
  69. # Everything you need-> http://www.mediafire.com/?mq2a8qu2y30w8kk
  70.  
  71. # =================================================================================================================================================================================================
  72. # = ***********************************************************************************************************************************************************************************   =
  73. # = ***        ATTENTION THIS DL WAS NOT VERIFIED CLEAN BY ME (BaSs_HaXoR), SO BEFORE YOU DOWNLOAD AND EXECUTE ANYTHING, MAKE SURE YOU DO THE SMART THING AND VIRUS SCAN IT!        ***   =
  74. # = ***********************************************************************************************************************************************************************************   =
  75. # =================================================================================================================================================================================================
  76.  
  77. #########################################################################################################################################################################################
  78. # //BaSs_HaXoR
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement