Page 1 of 2 12 LastLast
Results 1 to 15 of 22
  1. #1
    Woodhouse's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    Swagtown, Yoloville
    Posts
    2,832
    Reputation
    228
    Thanks
    3,247
    My Mood
    Sick

    Post How To Prevent DDoS Attacks Through Skype

    I've been noticing the amount of people putting their Skype names out in the open and then claiming that they are getting DDoSed (at least in this section) so I decided to post this here.


    Skype resolvers? What are they?

    Skype resolvers are tools that can get your IP just with your username. You don't even need to be added to have them get your IP.

    Why do I want to be unresolvable?

    Because you don't want to be DoS/DDoSed.


    There are other methods out there, what's the difference?

    Most methods require gathering a new proxy after it dies. TOR cycles through proxies, and it doesn't require you to painfully change after it dies.

    What is TOR?

    TOR is what we will be using as our proxy.

    Tor is free software and an open network that helps you defend against a form of network surveillance that threatens personal freedom and privacy, confidential business activities and relationships, and state security known as traffic analysis

    You can also browse the web with TOR, available at the TOR website.

    How do I become unresolvable?

    Open your favorite text editing tool, and copy and paste:
    Code:
    Set objShell = WScript.CreateObject("WScript.Shell")
    ss= objShell.RegRead ("HKEY_CURRENT_USER\Software\Skype\Phone\SkypePath")
    ss= """" + ss + """"
    'Add Block rule
    objShell.run "netsh advfirewall firewall add rule name=""SkypeBlockTCP"" dir=out action=block program=" + ss + " enable=yes protocol=any profile=any"
    'Add Allow rule
    objShell.run "netsh advfirewall firewall add rule name=""SkypeAllowToProxy"" dir=out action=allow program=" + ss + " enable=yes remoteip=127.0.0.1"
    'Turn On firewall
    objShell.run "Netsh advfirewall set allprofiles state on"
    msgbox "Your Skype is now TOR'd."
    1. Save it as a .VBS file. It doesn't matter what you choose as the file name, as long as it ends in a .VBS file, you're fine.
    2. In your Skype window, go to Tools -> Options -> Advanced -> Connections
    3. At the top where it says 'Use port (port) for incoming connections', replace the current port with '9050'. Where it says 'Automatic Proxy Detection', change it to 4. SOCKS 5. The host should be '127.0.0.1' and the port should be '9050'. Fill those in.
    5. Restart Skype and try out a online Skype resolver!

    If you want to become resolvable, undo all the steps that you've done, and open your favourite text editor. Copy and paste:
    Code:
    Set objShell = WScript.CreateObject("WScript.Shell")
    objShell.run "netsh advfirewall firewall delete rule name=""SkypeBlockTCP"""
    objShell.run "netsh advfirewall firewall delete rule name=""SkypeAllowToProxy"""
    msgbox "Skype isn't TOR'd."
    Once again, save it as a .VBS and run it. Restart your Skype for changes to become in effect.

    What it should look like once you're done

  2. The Following 5 Users Say Thank You to Woodhouse For This Useful Post:

    Daelso (02-04-2013),Skipsy (02-04-2013),gogicaa (02-13-2013),Kinster (02-04-2013),thefit200 (03-03-2013)

  3. #2
    Kinster's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Posts
    63
    Reputation
    10
    Thanks
    19
    Great Tut, Thanks!

  4. #3
    Woodhouse's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    Swagtown, Yoloville
    Posts
    2,832
    Reputation
    228
    Thanks
    3,247
    My Mood
    Sick
    Quote Originally Posted by Kinster View Post
    Great Tut, Thanks!
    np. I did this a while back. Didn't feel like typing all of it up so I just copied and pasted someone else's tut.

  5. The Following User Says Thank You to Woodhouse For This Useful Post:

    Kinster (02-04-2013)

  6. #4
    Kinster's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Posts
    63
    Reputation
    10
    Thanks
    19
    Quote Originally Posted by chickeninabiskit View Post
    np. I did this a while back. Didn't feel like typing all of it up so I just copied and pasted someone else's tut.
    Well it's still very helpful and hopefully users on MPGH will use it and not have as many issues

  7. #5
    Woodhouse's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    Swagtown, Yoloville
    Posts
    2,832
    Reputation
    228
    Thanks
    3,247
    My Mood
    Sick
    Quote Originally Posted by Kinster View Post
    Well it's still very helpful and hopefully users on MPGH will use it and not have as many issues
    Thanks. And yeah, hopefully.

  8. #6
    maximusdkcz's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    Denmark
    Posts
    528
    Reputation
    13
    Thanks
    74
    My Mood
    Cool
    Thank you this is very usefull
    Last edited by maximusdkcz; 02-04-2013 at 11:24 PM.

  9. #7
    Skipsy's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    Kamchatka
    Posts
    1,701
    Reputation
    74
    Thanks
    659
    My Mood
    Cynical
    Thanks man. Really hope this gets stickied in the Buying/Selling section.

  10. #8
    maximusdkcz's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    Denmark
    Posts
    528
    Reputation
    13
    Thanks
    74
    My Mood
    Cool
    Damn doesnt work for me.. Ill just see if it works later.

  11. #9
    Woodhouse's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    Swagtown, Yoloville
    Posts
    2,832
    Reputation
    228
    Thanks
    3,247
    My Mood
    Sick
    Quote Originally Posted by maximusdkcz View Post
    Damn doesnt work for me.. Ill just see if it works later.
    You're using TOR?

  12. #10
    maximusdkcz's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    Denmark
    Posts
    528
    Reputation
    13
    Thanks
    74
    My Mood
    Cool
    Quote Originally Posted by chickeninabiskit View Post
    You're using TOR?
    Yep its not working..
    Last edited by maximusdkcz; 02-05-2013 at 03:24 AM.

  13. #11
    DinoScripter's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0
    Dam when i try logging into skype now it wont log it can you help me?

    After a very long time it just says skype countn't connect
    Last edited by DinoScripter; 02-12-2013 at 06:44 PM.

  14. #12
    Woodhouse's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    Swagtown, Yoloville
    Posts
    2,832
    Reputation
    228
    Thanks
    3,247
    My Mood
    Sick
    Quote Originally Posted by DinoScripter View Post
    Dam when i try logging into skype now it wont log it can you help me?

    After a very long time it just says skype countn't connect
    Just undo what you did a.k.a. become resolvable.

  15. #13
    Peakz's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Posts
    30
    Reputation
    10
    Thanks
    26
    this doesnt work anymore.

    just saying.

  16. #14
    LanceArmstrong's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Posts
    51
    Reputation
    10
    Thanks
    4
    My Mood
    Bored
    Quote Originally Posted by Peakz View Post
    this doesnt work anymore.

    just saying.
    Can @chickeninabiskit confirm? I wanted to try this.

  17. #15
    Woodhouse's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    Swagtown, Yoloville
    Posts
    2,832
    Reputation
    228
    Thanks
    3,247
    My Mood
    Sick
    Quote Originally Posted by LanceArmstrong View Post
    Can @chickeninabiskit confirm? I wanted to try this.
    I did it a couple of months ago but became resolvable again because I wanted to test my resolver. I'll try it out again though..

Page 1 of 2 12 LastLast

Similar Threads

  1. PAYING 10$ TO ANYONE WHO WALKS ME THROUGH ON HOW TO HACK THROUGH SKYPE!
    By mollydog1 in forum DayZ Mod & Standalone Hacks & Cheats
    Replies: 5
    Last Post: 08-09-2012, 03:56 PM
  2. how to prevent ddos?
    By kbtokes in forum Piercing Blow Discussions
    Replies: 0
    Last Post: 04-13-2011, 11:24 AM
  3. How to prevent (or reduce the chances of) getting banned in Combat Arms
    By @ echo off in forum Combat Arms Hacks & Cheats
    Replies: 68
    Last Post: 07-08-2009, 03:22 AM
  4. how to prevent server connection lost thing
    By mgrung in forum Combat Arms Hacks & Cheats
    Replies: 12
    Last Post: 10-29-2008, 10:57 AM
  5. TUTORIAL - How to prevent Warrock from crashing!
    By Darky in forum WarRock - International Hacks
    Replies: 25
    Last Post: 07-06-2007, 09:31 PM

Tags for this Thread