Results 1 to 15 of 15
  1. #1
    ken53406's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Location
    In your moms slop hole :D
    Posts
    151
    Reputation
    9
    Thanks
    97
    My Mood
    Aggressive

    Exclamation Vbulletin Hack loader login system

    Vbullettin Hack loader/Login system


    Ok, its 6 am and i havent slept so i figured i may as well post this to keep me awake.

    First make a new project name it whatever you want to.

    Then change form1's form border style to fixed single. After that change form1's text to whatever you want, either use your own icon or set the show icon to false.

    youll need a combo box, 1 textbox, a checkbox and a module. Double click "My Project" then click "settings" and create a setting called mystring with type System.Collections.Specialized.StringCollection

    Then

    open the module and put in

    Code:
    Imports System.Security.Cryptography
    Imports System.Text
    Imports System.Net
    Imports System.IO
    Module Module1
        Public Function Login(ByVal Username As String, ByVal Password As String)
    
            Password = MD5(Password)
            Dim valid As Boolean = False
            Dim data As String = "vb_login_username=" & Username & "&vb_login_password=&s=&do=login&vb_login_md5password=" & Password & "&vb_login_md5password_utf=" & Password
    
            Try
                Dim request As HttpWebRequest = WebRequest.Create("YOURURLHERE/login.php?do=login")
                request.Method = WebRequestMethods.Http.Post
                reques*****ntentType = "application/x-www-form-urlencoded"
                request.UserAgent = "-- vBulletin Vaidation  --"
    
    
    
                reques*****ntentLength = data.Length
    
                Dim rStream As New StreamWriter(request.GetRequestStream)
    
                rStream.Write(data)
                rStream.Flush()
                rStream.Close()
    
                Dim response As HttpWebResponse = request.GetResponse
                Dim resReader As New StreamReader(response.GetResponseStream)
    
                Dim str As String = resReader.ReadToEnd
    
    
                If str.Contains("Successful Login!") Then
                    valid = True
                Else
                    valid = False
                End If
    
    
                response.Close()
    
            Catch ex As Exception
                MessageBox.Show(ex.Message, "Error URFORUMNAME Forums-Login!", MessageBoxButtons.OK, MessageBoxIcon.Error)
    
            End Try
    
            Return valid
    
        End Function
    
        Public Function MD5(ByVal number As String) As String
    
            Dim ASCIIenc As New ASCIIEncoding
            Dim strReturn As String = String.Empty
    
            Dim ByteSourceText() As Byte = ASCIIenc.GetBytes(number)
            Dim Md5Hash As New MD5CryptoServiceProvider
            Dim ByteHash() As Byte = Md5Hash.ComputeHash(ByteSourceText)
    
            For Each b As Byte In ByteHash
                strReturn &= b.ToString("x2")
            Next
    
            Return strReturn
    
        End Function
    End Module
    After putting that into your module double click form1 and under
    Code:
     Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    Put

    Code:
    MsgBox("STARTING MESSEGE OF YOUR CHOICE GOES HERE")

    Then

    double click your checkbox (which will be the remember username checkbox)
    and put in

    Code:
       If CheckBox1.Checked Then
                My.Settings.mystring.Add(ComboBox1.Text)
                ComboBox1.Items.Add(ComboBox1.Text)
                My.Settings.Save()
            End If
        End Sub
    Then double click the button and put in

    Code:
    If Login(ComboBox1.Text, TextBox1.Text) Then
                MsgBox("Successfully Logged In! WELCOME!")
                Form2.Show()
                Me.Close()
    
            Else
                MsgBox("Incorrect Username/Password")
            End If
    And thats your login form using your vbulletins user accounts.

    To make a hack loader/injector read https://www.mpgh.net/forum/161-progra...ck-loader.html and use the basic injector source i beleive that tut also has a "stream" dll ability or something similar. just add a second form if using that tutorial and make it open when the login is successful. and form 2 will be the injector. Im sleepy as hell it is now 6:23 am so if this is a bit hard to understand i apologize, im extremely tired. If you need help reply and ill help you out
    troll says: FUK YO COUCH NIGGA!
    V
    [img]https://www.******************/forums/images/smilies/troll_run.gif[/img]


    My goals list:
    Legend:

    Complete - Incomplete -

    30 Posts: [] | 50 Posts: []
    70 Posts: [] | 100 Posts: []
    500 Posts: [] | 1,000 Posts: []
    Release a CA NA pub: [] | Release a CFNA Pub: []
    Pro C++ Coder: [] | Pro VB Coder: []
    [IMG]https://images.encyclopediadramatic*****m/images/5/57/Pedobear_a.gif[/IMG]

    Don't forget:

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

    ♪~ ᕕ(ᐛ)ᕗ (07-01-2011),Lexer37 (08-15-2014),UKnownError (07-02-2011)

  3. #2
    pushdis15's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    spokane washington
    Posts
    923
    Reputation
    20
    Thanks
    170
    My Mood
    Twisted
    where did u get the source codes from ? i know u didnt make them
    PlayStation ID:
    Boxing509

    Quote Originally Posted by pushdis15
    Women now have choices. They can be married, not married, have a job, not have a job, be married with children, unmarried with children. Men have the same choice we've always had: work, or prison.

  4. #3
    ken53406's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Location
    In your moms slop hole :D
    Posts
    151
    Reputation
    9
    Thanks
    97
    My Mood
    Aggressive
    Actually it is mine... Im currently using this login method for my personal loader. If you like to flame gtfo
    troll says: FUK YO COUCH NIGGA!
    V
    [img]https://www.******************/forums/images/smilies/troll_run.gif[/img]


    My goals list:
    Legend:

    Complete - Incomplete -

    30 Posts: [] | 50 Posts: []
    70 Posts: [] | 100 Posts: []
    500 Posts: [] | 1,000 Posts: []
    Release a CA NA pub: [] | Release a CFNA Pub: []
    Pro C++ Coder: [] | Pro VB Coder: []
    [IMG]https://images.encyclopediadramatic*****m/images/5/57/Pedobear_a.gif[/IMG]

    Don't forget:

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

    Lyoto Machida (07-01-2011)

  6. #4
    ♪~ ᕕ(ᐛ)ᕗ's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Uterus
    Posts
    9,119
    Reputation
    1096
    Thanks
    1,970
    My Mood
    Doh
    1 word. SUPERB!
    Srsly proud to have coders like you here.

  7. #5
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Looks pretty similar to something I posted a while ago.

    https://www.mpgh.net/forum/33-visual-...se-forums.html

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

  8. The Following User Says Thank You to Jason For This Useful Post:

    sythe179 (07-01-2011)

  9. #6
    pushdis15's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    spokane washington
    Posts
    923
    Reputation
    20
    Thanks
    170
    My Mood
    Twisted
    lmao its not his lmao bcz i got the same one all the code the same. lame leechers
    and i got mine from @flameswor10
    Last edited by pushdis15; 07-01-2011 at 08:56 AM.
    PlayStation ID:
    Boxing509

    Quote Originally Posted by pushdis15
    Women now have choices. They can be married, not married, have a job, not have a job, be married with children, unmarried with children. Men have the same choice we've always had: work, or prison.

  10. #7
    NOOB's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    3,843
    Reputation
    425
    Thanks
    8,616
    wouldn't work for a loader if you just download the DLL and save it to some folder because someone could take the hack and leech away. you would have to use manual mapping.

  11. #8
    hustelboy's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Underground Cave System Posts: 4,435,765
    Posts
    312
    Reputation
    28
    Thanks
    39
    Quote Originally Posted by NOOB View Post
    wouldn't work for a loader if you just download the DLL and save it to some folder because someone could take the hack and leech away. you would have to use manual mapping.
    Since when u kinda more in the vb.net section ?
    Anyway nice code

  12. #9
    ken53406's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Location
    In your moms slop hole :D
    Posts
    151
    Reputation
    9
    Thanks
    97
    My Mood
    Aggressive
    Jason yours is to browse forums and register, etc. mine is used to login and authenticate.

    And I know flameswor10, i didnt get this from him, ask him yourself. This i made by myself not using any tutorials. like i said you like to flame? gtfo your skills with VB are in the toilet. so please kindly gtfo my thread.

    also @ This is jut the login system, read the link i left to the other thread it shows how to "stream" the dll or include it in the program itself, there are ways to do it in VB.
    troll says: FUK YO COUCH NIGGA!
    V
    [img]https://www.******************/forums/images/smilies/troll_run.gif[/img]


    My goals list:
    Legend:

    Complete - Incomplete -

    30 Posts: [] | 50 Posts: []
    70 Posts: [] | 100 Posts: []
    500 Posts: [] | 1,000 Posts: []
    Release a CA NA pub: [] | Release a CFNA Pub: []
    Pro C++ Coder: [] | Pro VB Coder: []
    [IMG]https://images.encyclopediadramatic*****m/images/5/57/Pedobear_a.gif[/IMG]

    Don't forget:

  13. #10
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Herpy derp did you read mine or just the title -.-, the VERY FIRST method is a login method 0.o

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

  14. #11
    ken53406's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Location
    In your moms slop hole :D
    Posts
    151
    Reputation
    9
    Thanks
    97
    My Mood
    Aggressive
    Quote Originally Posted by Jason View Post
    Herpy derp did you read mine or just the title -.-, the VERY FIRST method is a login method 0.o
    As i said i didnt use your tutorial, this is simply something ive had in my VB projects folder for about a year now. and i figured id post it to keep me awake
    troll says: FUK YO COUCH NIGGA!
    V
    [img]https://www.******************/forums/images/smilies/troll_run.gif[/img]


    My goals list:
    Legend:

    Complete - Incomplete -

    30 Posts: [] | 50 Posts: []
    70 Posts: [] | 100 Posts: []
    500 Posts: [] | 1,000 Posts: []
    Release a CA NA pub: [] | Release a CFNA Pub: []
    Pro C++ Coder: [] | Pro VB Coder: []
    [IMG]https://images.encyclopediadramatic*****m/images/5/57/Pedobear_a.gif[/IMG]

    Don't forget:

  15. #12
    T0P-CENT's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Posts
    88
    Reputation
    14
    Thanks
    17
    My Mood
    Stressed
    Fail , i saw this posted on another forum long time ago
    GTFO fail asshole
    u didn't even change anything in it
    Last edited by T0P-CENT; 07-02-2011 at 08:11 AM.

  16. #13
    pushdis15's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    spokane washington
    Posts
    923
    Reputation
    20
    Thanks
    170
    My Mood
    Twisted
    Quote Originally Posted by T0P-CENT View Post
    Fail , i saw this posted on another forum long time ago
    GTFO fail asshole
    u didn't even change anything in it
    thanks man thats what i was trying to say but he didnt catch on i guess
    PlayStation ID:
    Boxing509

    Quote Originally Posted by pushdis15
    Women now have choices. They can be married, not married, have a job, not have a job, be married with children, unmarried with children. Men have the same choice we've always had: work, or prison.

  17. #14
    ken53406's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Location
    In your moms slop hole :D
    Posts
    151
    Reputation
    9
    Thanks
    97
    My Mood
    Aggressive
    @T0P-CENT and @pushdis15


    You do know there a various methods to do this. Many people do it the way i posted. So does this mean all the previous people that have made this type of login system all leeched as well? Pushdis15 ive got two words for you, FUCK OFF. also your an idiot that cant make a simple login system using a text file LOL so stfu before you try to say anything. just because this is what i made you dont need to get all pissy because im better than you I didnt leech, thats that. many people have the same styles of coding. how about you release your own method of my login system, if not you have no room to bitch.
    troll says: FUK YO COUCH NIGGA!
    V
    [img]https://www.******************/forums/images/smilies/troll_run.gif[/img]


    My goals list:
    Legend:

    Complete - Incomplete -

    30 Posts: [] | 50 Posts: []
    70 Posts: [] | 100 Posts: []
    500 Posts: [] | 1,000 Posts: []
    Release a CA NA pub: [] | Release a CFNA Pub: []
    Pro C++ Coder: [] | Pro VB Coder: []
    [IMG]https://images.encyclopediadramatic*****m/images/5/57/Pedobear_a.gif[/IMG]

    Don't forget:

  18. #15
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Thread closed. Warning on the flame.

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

  19. The Following User Says Thank You to Jason For This Useful Post:

    sythe179 (07-08-2011)