DOSer

Posts 115 of 93 · Page 1 of 7
DOSer
Worked on it tonight. Password protected, and added extra protection against decompilers like .NET reflector to steal my pass

@Ravallo, here since Jonny Knoxville wouldn't do it.

Features:

*Password Protected Login








*User Friendly GUI



*Change font/color





*Resolve Host IP Address (google as an example)




Note: This is not a strong tool, so don't expect to demolish any websites with it.

PM me for Login Info.
THANK MY BITCH ASS NOW.
******
******


Fucking fail, forgot to add attachment
DOSer.rarattachment deleted · 330 downloads before removal
i kno the pw u jew ;D lolz xD i bypassd ur chit xD
Quote Originally Posted by TheRealVB View Post
i kno the pw u jew ;D lolz xD i bypassd ur chit xD
Says the guy who couldn't get the password before I added anti decompile.


Well....semi.
Quote Originally Posted by FUKO View Post


Says the guy who couldn't get the password before I added anti decompile.


Well....semi.
pfft i tol u i hadda download sht nerdo but i got it afterwards ;P lolz xD
Quote Originally Posted by TheRealVB View Post
pfft i tol u i hadda download sht nerdo but i got it afterwards ;P lolz xD
Not the second time.
Works good man! keep it up.
XD, Nice 1
ddoser or gtfo
and nice C+P you did thar
@FUKO
Thanks for making one!
Is there a possibility you can make it 'stronger' somehow?

And PM me the password
Quote Originally Posted by BassSR View Post
ddoser or gtfo
and nice C+P you did thar
Copy and paste my ass. Only thing I C+P was AeonHack's Class for the GUI, and I gave credits, something you don't do.

Go ahead and post your "premium" one.

Quote Originally Posted by Ravallo View Post
@FUKO
Thanks for making one!
Is there a possibility you can make it 'stronger' somehow?

And PM me the password
Don't think so, I think it's all based on your connection.
Sorry
ill post a premium one
Quote Originally Posted by BassSR View Post
ddoser or gtfo
and nice C+P you did thar
That's all you do...
Quote Originally Posted by BassSR View Post
ill post a premium one
Oh wait so now your not even going to put time into it your just going to post someone else's.

Stop hating.
I don't like using shells for attacking, but good share.
lol, all execpt 2 are by me so.......
and can you explain how you made this then? or should i go and goggle it myself.
Quote Originally Posted by BassSR View Post
lol, all execpt 2 are by me so.......
and can you explain how you made this then? or should i go and goggle it myself.
Here ******, this is how I added the login verification:
Code:
Private Sub BullionButton1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BullionButton1.Click
        Timer1.Start()
        Label2.Text = "Logging In"
        If TextBox1.Text = "" And TextBox2.Text = "" Then
            Label2.Text = "No Details"
            MsgBox("Please Enter a Username and Password", MsgBoxStyle.Information, "Multi Tool")
            ProgressBar1.Value = 0
            Timer1.Stop()
        Else
            If TextBox1.Text = "" Then
                MsgBox("Please Enter a Username", MsgBoxStyle.Information, "Multi Tool")
                ProgressBar1.Value = 0
                Timer1.Stop()
                Label2.Text = "No Username"
            Else
                If TextBox2.Text = "" Then
                    MsgBox("Please Enter a Password", MsgBoxStyle.Information, "Multi Tool")
                    ProgressBar1.Value = 0
                    Timer1.Stop()
                    Label2.Text = "No Password"
                Else
                    If TextBox1.Text = "USERNAME" And TextBox2.Text = "PASSWORD" Then
                        ProgressBar1.Value = 100
                        Me.Hide()
                        Form1.Show()
                    Else
                        MsgBox("Incorrect Login Credentials", MsgBoxStyle.Information, "Multi Tool")
                        ProgressBar1.Value = 0
                        Timer1.Stop()
                        Label2.Text = "Try Again"
                    End If
                End If
            End If
        End If
    End Sub
That pretty much speaks for itself.
If it doesn't match what you entered, then it won't show the second form.

Heres the resolve host function:
Code:
Private Sub BullionButton6_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BullionButton6.Click
        Try
            If TextBox2.Text.Contains("http://") Then
                Dim iphe As IPHostEntry = Dns.GetHostEntry(TextBox2.Text.Replace("http://", String.Empty))
                TextBox2.Text = iphe.AddressList(0).ToString()
            Else
                Dim iphe As IPHostEntry = Dns.GetHostEntry(TextBox2.Text)
                TextBox2.Text = iphe.AddressList(0).ToString()
            End If
        Catch ex As Exception
            MsgBox(ex)
        End Try
    End Sub
Heres the pinging shit:
Code:
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
        If TextBox1.Text = "" Then
            Timer1.Stop()
            MsgBox("Please Enter an IP", MsgBoxStyle.Information, "DOSer")
        End If
        BullionProgressBar1.Progress = BullionProgressBar1.Progress + 10
        BullionProgressBar1.UpdateProgress()
        Shell("Ping " + (TextBox1.Text + "-1" + "65000"))
        Timer1.Stop()
    End Sub
Not going to explain the rest of the shit, and break down every piece.
It's not that hard to understand.
Posts 115 of 93 · Page 1 of 7

Post a Reply

Tags for this Thread

None

Need help?