[Image: E3jJJ.png]
Description

Why pay when you can make your own.
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, while working for stresser we needed an inhouse resolver not just some Api so I started investigating on how such a feat could be accomplished, well I came up with this, I will explain everything in this thread...

Requirements
 

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.
 

The checklist
 

☐ Get a windows VPS
 
☐ Compile the program I will let you download later
☐ Install httpd
☐ Follow the setup Guide

Setup guide
 

1. Install Microsoft .NET Framework 4 on your VPS: 

http://www.microsoft.com/en-gb/download/...x?id=17718
 

2. install WAMP or httpd in a DIR:
 
http://www.wampserver.com/
 
http://httpd.apache.org/
 

3. Navigate to C:\wamp\bin\apache\Apache(whatever)\bin\ and run httpd.exe. You can also run it from CMD if you prefer...
 

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.
 

5. Open your C:\wamp\www\ or wherver ou put your Httpd install folder and copy index.php and the 'skype' folder into it.
 

6. Open the 'logging.reg' file in C:\wamp\www\skype\ or wherver you installed httpd dir and add it to the registry.
 

7. Run skypepatched.exe and register a new account.
 

8. Compile the Skype resolver project that you can find in the RAR and place it in WWW dir where the index.php is.
 

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.
 

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...
 

Example php to request a Username
 

Code:
<body bgcolor="33" TEXT="C2CCC2"></body>
<center> <img src="http://i.imgur.com/E3jJJ.png" alt="Empire">
<form action="index.php?action=submit" method="post">
<input type="text" name="username" />
<input type="submit" value="Get Ip." /><center>
<?php
$username = $_POST['username'];

switch($_GET['action']){
    case 'submit':
        echo file_get_contents("http://ip of your resolver goes here/index.php?name=".$username);
    break;
}
?>

Download Link
 

You can get all you need here 
Download

Questions


Ask them on the post I'll do my best to reply to them.
 

T.O.S
 

I take absolutely no responsibility for what you do with the knowledge you gain by reading this.
 

Credits

Regards:-ANONYMOUS