Results 1 to 15 of 15
  1. #1
    flameswor10's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    12,528
    Reputation
    981
    Thanks
    10,409
    My Mood
    In Love

    [Release] Password Generator Source Code

    Ever wanted a snazzy Password Generator in your multi tool? Well here is a Password Generator Source Code..

    Code:
    Imports System.IO
    
    Public Class Form1
        Const chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890 09876543210 flameswor10 rulzorz xD"
        Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
            Dim r, i
            Dim x As String
    
            For i = 1 To NumericUpDown1.Value
                Randomize()
                r = Int((Rnd() * 61) + 1)
    
                x = x & Mid(chars, r, 1)
    
            Next i
            TextBox1.Text = (x)
        End Sub
    
        Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    msgbox("Flameswor10 made this Password Generator Source Cdoe")
    Button1.text = "Generate"
        End Sub
    End Class
    Just add 1 Textbox and 1 button and 1 numericupdown and your good to go.

    Have fun
    Last edited by flameswor10; 08-26-2010 at 10:57 PM.
    No I do not make game hacks anymore, please stop asking.

  2. The Following User Says Thank You to flameswor10 For This Useful Post:

    tempta43 (08-27-2010)

  3. #2
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    Nextgen also released a OS Project.



  4. #3
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Convert to function = win.

    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)

  5. The Following 3 Users Say Thank You to Jason For This Useful Post:

    'Bruno (08-26-2010),Blubb1337 (08-26-2010),Illuminatus (08-26-2010)

  6. #4
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    [php]Private Function randompw(ByVal chars As String, ByVal length As Integer)
    Dim r, i
    Dim x As String = ""

    For i = 1 To length
    Randomize()
    r = Int((Rnd() * 61) + 1)

    x = x & Mid(chars, r, 1)

    Next i

    Return (x)
    End Function[/php]

    [php] Private Const chars As String = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvw xyz1234567890 09876543210!§$%&/()=?ß}][{²³"


    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    msgbox(randompw(chars, 10))
    End Sub
    [/php]



  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
    Quote Originally Posted by Blubb1337 View Post
    [php]Private Function randompw(ByVal chars As String, ByVal length As Integer)
    Dim r, i
    Dim x As String = ""

    For i = 1 To length
    Randomize()
    r = Int((Rnd() * 61) + 1)

    x = x & Mid(chars, r, 1)

    Next i

    Return (x)
    End Function[/php]

    [php] Private Const chars As String = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvw xyz1234567890 09876543210!§$%&/()=?ß}][{²³"


    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    msgbox(randompw(chars, 10))
    End Sub
    [/php]
    I already did that, I meant a general statement. I <3 functs, makes shit so much cleaner! Why do people make shit so hard to re-use!

    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. #6
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    Hmmmm, This should really be a snippet.


     


     


     



    The Most complete application MPGH will ever offer - 68%




  9. #7
    'Bruno's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Portugal
    Posts
    2,883
    Reputation
    290
    Thanks
    1,036
    My Mood
    Busy
    Quote Originally Posted by J-Deezy View Post


    I already did that, I meant a general statement. I <3 functs, makes shit so much cleaner! Why do people make shit so hard to re-use!
    because most of these people is not experienced enough with long quantities of code...
    Light travels faster than sound. That's why most people seem bright until you hear them speak.

  10. #8
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    Quote Originally Posted by J-Deezy View Post


    I already did that, I meant a general statement. I <3 functs, makes shit so much cleaner! Why do people make shit so hard to re-use!
    So do I. That is why I modified his code a little.

    I know what you are talking about.

    I already mentioned this in my "Improve your code" tutorial. Why reusing a lot of repetitive code if you can build functions easily?



  11. The Following User Says Thank You to Blubb1337 For This Useful Post:

    Comebahck (08-29-2015)

  12. #9
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Quote Originally Posted by Blubb1337 View Post
    So do I. That is why I modified his code a little.

    I know what you are talking about.

    I already mentioned this in my "Improve your code" tutorial. Why reusing a lot of repetitive code if you can build functions easily?
    Not just that, but when people cram everything into a "Button1_click" sub procedure it annoys me, makes code so much harder to follow because you don't know what they're trying to do, seeing a nice simple function call then following that function is orgasmic...well not quite.

    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)

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

    Blubb1337 (08-26-2010)

  14. #10
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    I cannot disagree.



  15. #11
    mnpeepno2's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    In a barren wasteland
    Posts
    905
    Reputation
    10
    Thanks
    81
    this is only the 29802350th password gen on here -.-


    -----------------------------------------------

    My site: here
    My Blog: here
    My member's area: here
    Minecraft Sever Forum: here


    Minecraft Servers:

    Public:



    Private:



  16. #12
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    Password Generator <> Spammer tho.



  17. #13
    tempta43's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Posts
    980
    Reputation
    23
    Thanks
    295
    My Mood
    Bored
    Quote Originally Posted by Blubb1337 View Post
    Password Generator <> Spammer tho.
    <>? <> is equal to "=" :P

    Neways.
    Thx for sharing, Flame.

  18. #14
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    <> = unequal
    = = equal



  19. #15
    Lolland's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    Lolland!
    Posts
    3,156
    Reputation
    49
    Thanks
    868
    My Mood
    Inspired
    Let's stay on topic

    Also, mathematically =\= means inequal.

Similar Threads

  1. [Release] Crossfire hack source codes
    By omgigotbanned in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 24
    Last Post: 10-30-2011, 02:52 AM
  2. [RELEASE] Drag Central Source Code
    By BodyByVTAK in forum General Gaming
    Replies: 6
    Last Post: 06-09-2011, 03:12 PM
  3. [Release] Blackout Hack Source Code
    By ac1d_buRn in forum Piercing Blow Discussions
    Replies: 21
    Last Post: 01-12-2011, 07:27 PM
  4. [Kinda Release]AVA Chams Source Code
    By noleash in forum Alliance of Valiant Arms (AVA) Coding / Source Code
    Replies: 14
    Last Post: 11-30-2010, 02:14 PM
  5. [Release] ****** DLL Source Code
    By OneWhoSighs in forum WarRock - International Hacks
    Replies: 20
    Last Post: 10-25-2007, 07:41 AM