Results 1 to 10 of 10
  1. #1
    gabygamer's Avatar
    Join Date
    Mar 2015
    Gender
    male
    Posts
    58
    Reputation
    10
    Thanks
    761

    Post Skype Resolver V 1.0

    hi , this is my first project with visual basic is a Skype Resolver
    Screenshot:


    [Dark, Lime] HackerTheme
    https://www.mpgh.net/forum/showthread.php?t=884980

    app code:
    Code:
     
        Private Sub HackerButton1_Click(sender As Object, e As EventArgs) Handles HackerButton1.Click
            ProgressBar1.Value = 0
            ProgressBar1.Increment(20)
            HackerTextBox2.Clear()
            ProgressBar1.Increment(20)
            WebRequest.Create("https://api.predator.wtf/resolver/?arguments=" + HackerTextBox1.Text)
            ProgressBar1.Increment(20)
            HackerTextBox2.Text = New System.Net.WebClient().DownloadString("https://api.predator.wtf/resolver/?arguments=" + HackerTextBox1.Text)
            ProgressBar1.Increment(40)
        End Sub
    
        Private Sub HackerButton2_Click(sender As Object, e As EventArgs) Handles HackerButton2.Click
            Me.Close()
        End Sub

    Virus Scans:
    https://www.virustotal.com/en/file/0...is/1437963927/
    https://virusscan.jotti.org/en-US/fi...job/6h31qb7wio
    sorry for my english
    <b>Downloadable Files</b> Downloadable Files

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

    poorlunch (09-04-2015),SovietAgent (11-25-2015)

  3. #2
    Liz's Avatar
    Join Date
    Feb 2009
    Gender
    female
    Location
    179° 56′ 39.4″, +0° 2′ 46.2″, 7,940 ± 420 parsecs
    Posts
    37,181
    Reputation
    5621
    Thanks
    20,746
    My Mood
    Tired
    Content approved, personal 'site' link allowed so long as it remains as donation source only. The moment it becomes an actual site or anything like that, we have the right to delete the thread.

    If anyone claims to be me via any other source outside of MPGH private or visitor messages, IT'S NOT ME!
    They are trying to trick or scam you. Report them immediately and PM me here for verification.
    "Don’t confuse my personality with my attitude. My personality is who I am. My attitude depends on who you are." — Frank Ocean
    Moderator: 5/2009-10/2009 | GMod: 10/2009-10/2010 | Staff Administrator: 10/2010-Present
    I
    do not do requests via PM. Post in the appropriate section.
     
    Stupid/Pointless Private messages = SPAM, SPAM = BAN.

  4. #3
    gabygamer's Avatar
    Join Date
    Mar 2015
    Gender
    male
    Posts
    58
    Reputation
    10
    Thanks
    761
    Quote Originally Posted by Liz View Post
    Content approved, personal 'site' link allowed so long as it remains as donation source only. The moment it becomes an actual site or anything like that, we have the right to delete the thread.
    that link? my youtube channel?

  5. #4
    Raydenman's Avatar
    Join Date
    Nov 2013
    Gender
    male
    Location
    Italy
    Posts
    261
    Reputation
    10
    Thanks
    811
    My Mood
    Amused
    Quote Originally Posted by Liz View Post
    Content approved, personal 'site' link allowed so long as it remains as donation source only. The moment it becomes an actual site or anything like that, we have the right to delete the thread.
    No outside links or links to downloads/attachments, use the upload system instead. (Permanent Ban)
    You staffers have generalized, so you shouldn't approve it. It doesn't care if it's for donations, it is always an outside link.

    @gabygamer You could directly release the source. It's a simplest application.
    Btw. Why this?
    Code:
     WebRequest.Create("https://api.predator.wtf/resolver/?arguments=" & Me.HackerTextBox1.Text)
        Me.ProgressBar1.Increment(20)
        Me.HackerTextBox2.Text = New System.Net.WebClient().DownloadString("https://api.predator.wtf/resolver/?arguments=" & Me.HackerTextBox1.Text)
        Me.ProgressBar1.Increment(40)
    There isn't no need to use WebRequest.Create.
    And you should define globally the WebClient in your class.
    Last edited by Raydenman; 07-27-2015 at 06:24 PM.

  6. #5
    gabygamer's Avatar
    Join Date
    Mar 2015
    Gender
    male
    Posts
    58
    Reputation
    10
    Thanks
    761
    Quote Originally Posted by Raydenman View Post
    No outside links or links to downloads/attachments, use the upload system instead. (Permanent Ban)
    You staffers have generalized, so you shouldn't approve it. It doesn't care if it's for donations, it is always an outside link.

    @gabygamer You could directly release the source. It's a simplest application.
    Btw. Why this?


    Code:
     WebRequest.Create("https://api.predator.wtf/resolver/?arguments=" & Me.HackerTextBox1.Text)
        Me.ProgressBar1.Increment(20)
        Me.HackerTextBox2.Text = New System.Net.WebClient().DownloadString("https://api.predator.wtf/resolver/?arguments=" & Me.HackerTextBox1.Text)
        Me.ProgressBar1.Increment(40)
    There isn't no need to use WebRequest.Create.
    And you should define globally the WebClient in your class.
    ok , i am noob in visual basic :S , that decompiler did you use?

    app code:
    Code:
     
        Private Sub HackerButton1_Click(sender As Object, e As EventArgs) Handles HackerButton1.Click
            ProgressBar1.Value = 0
            ProgressBar1.Increment(20)
            HackerTextBox2.Clear()
            ProgressBar1.Increment(20)
            WebRequest.Create("https://api.predator.wtf/resolver/?arguments=" + HackerTextBox1.Text)
            ProgressBar1.Increment(20)
            HackerTextBox2.Text = New System.Net.WebClient().DownloadString("https://api.predator.wtf/resolver/?arguments=" + HackerTextBox1.Text)
            ProgressBar1.Increment(40)
        End Sub
    
        Private Sub HackerButton2_Click(sender As Object, e As EventArgs) Handles HackerButton2.Click
            Me.Close()
        End Sub

  7. #6
    Raydenman's Avatar
    Join Date
    Nov 2013
    Gender
    male
    Location
    Italy
    Posts
    261
    Reputation
    10
    Thanks
    811
    My Mood
    Amused
    Quote Originally Posted by gabygamer View Post
    that decompiler did you use?
    .NET Reflector.

    Quote Originally Posted by gabygamer View Post
    app code:
    Code:
     
        Private Sub HackerButton1_Click(sender As Object, e As EventArgs) Handles HackerButton1.Click
            ProgressBar1.Value = 0
            ProgressBar1.Increment(20)
            HackerTextBox2.Clear()
            ProgressBar1.Increment(20)
            WebRequest.Create("https://api.predator.wtf/resolver/?arguments=" + HackerTextBox1.Text)
            ProgressBar1.Increment(20)
            HackerTextBox2.Text = New System.Net.WebClient().DownloadString("https://api.predator.wtf/resolver/?arguments=" + HackerTextBox1.Text)
            ProgressBar1.Increment(40)
        End Sub
    
        Private Sub HackerButton2_Click(sender As Object, e As EventArgs) Handles HackerButton2.Click
            Me.Close()
        End Sub
    Edit with this:
    Code:
     
     
        Dim client As New WebClient()
        Private Sub HackerButton1_Click(sender As Object, e As EventArgs) Handles HackerButton1.Click
            ' Done.
            HackerTextBox2.Text = client.DownloadString("https://api.predator.wtf/resolver/?arguments=" & HackerTextBox1.Text)
    
        End Sub
    
        Private Sub HackerButton2_Click(sender As Object, e As EventArgs) Handles HackerButton2.Click
             Close()
        End Sub
    Please, now google ' Threading '
    Last edited by Raydenman; 07-27-2015 at 08:56 PM.

  8. #7
    Liz's Avatar
    Join Date
    Feb 2009
    Gender
    female
    Location
    179° 56′ 39.4″, +0° 2′ 46.2″, 7,940 ± 420 parsecs
    Posts
    37,181
    Reputation
    5621
    Thanks
    20,746
    My Mood
    Tired
    Quote Originally Posted by Raydenman View Post
    No outside links or links to downloads/attachments, use the upload system instead. (Permanent Ban)
    You staffers have generalized, so you shouldn't approve it. It doesn't care if it's for donations, it is always an outside link.
    Site owner approved it. Thanks for your concern.

    Also outside links refers to outside download sources, not just general links. Advertisement would have been the rule broken, had it not been approved.

    If anyone claims to be me via any other source outside of MPGH private or visitor messages, IT'S NOT ME!
    They are trying to trick or scam you. Report them immediately and PM me here for verification.
    "Don’t confuse my personality with my attitude. My personality is who I am. My attitude depends on who you are." — Frank Ocean
    Moderator: 5/2009-10/2009 | GMod: 10/2009-10/2010 | Staff Administrator: 10/2010-Present
    I
    do not do requests via PM. Post in the appropriate section.
     
    Stupid/Pointless Private messages = SPAM, SPAM = BAN.

  9. #8
    Raydenman's Avatar
    Join Date
    Nov 2013
    Gender
    male
    Location
    Italy
    Posts
    261
    Reputation
    10
    Thanks
    811
    My Mood
    Amused
    @Liz not a problem (edited , my bad )
    Last edited by Raydenman; 07-27-2015 at 11:26 PM.

  10. #9
    Dead's Avatar
    Join Date
    May 2015
    Gender
    male
    Location
    Warsaw
    Posts
    98
    Reputation
    20
    Thanks
    33
    My Mood
    Stressed
    I use the same api for my resolver. Your code could use a little work. Otherwise, its great.

  11. #10
    sandrino's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    13
    great source code

Similar Threads

  1. [Info] Skype resolvers
    By revird1634 in forum General Hacking
    Replies: 3
    Last Post: 03-07-2016, 10:51 AM
  2. Protect Your Self From Skype Resolver & DDoS
    By [SMA] Paradise` in forum General
    Replies: 27
    Last Post: 04-06-2013, 02:47 PM
  3. Anti-Skype resolver?
    By mrghettocraft in forum General Hacking
    Replies: 4
    Last Post: 03-24-2013, 07:44 AM
  4. Replies: 5
    Last Post: 02-26-2013, 08:05 PM
  5. Replies: 0
    Last Post: 08-08-2012, 03:17 PM

Tags for this Thread