Results 1 to 12 of 12
  1. #1
    GiGux's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    Eastern Finland.
    Posts
    887
    Reputation
    -64
    Thanks
    231
    My Mood
    Bored

    Thumbs up Password Generator

    GiGusPassGen

    Yo guys, this is a little program I made.
    It simply generates passwords! , you can also choose the length.
    NOTE : It crashes if you dont have anything in length

    Pic
    [IMG]https://i700.photobucke*****m/albums/ww2/Gigu345/Passgen.jpg[/IMG]

    Virus Scans
    VirusTotal
    VirusScan

    Credits : Me and some random guy from youtube for the list of keys
    Last edited by GiGux; 06-22-2011 at 03:18 PM. Reason: More Info

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

    MrVin3030 (08-08-2014)

  3. #2
    Nathan's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    In a magical place
    Posts
    6,113
    Reputation
    394
    Thanks
    363
    Hmm...
    Seems like something from a tutorial

    But anyway good job?

  4. The Following User Says Thank You to Nathan For This Useful Post:

    GiGux (06-22-2011)

  5. #3
    GiGux's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    Eastern Finland.
    Posts
    887
    Reputation
    -64
    Thanks
    231
    My Mood
    Bored
    Quote Originally Posted by Cookie. View Post
    Hmm...
    Seems like something from a tutorial

    But anyway good job?
    buhh THE ONLY thing that was copy/pasted was the numbers & letters

  6. #4
    Jabuuty671's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    21,229
    Reputation
    1468
    Thanks
    4,098
    approved .


  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
    Spend more time working on a nicer GUI, try out some really subtle gradients etc. Also, maybe spend more time making a single application with multiple features rather than releasing 1 function programs :/

    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
    GiGux's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    Eastern Finland.
    Posts
    887
    Reputation
    -64
    Thanks
    231
    My Mood
    Bored
    Yeah you're right
    but I think I'm going to make something USEFUL now

  9. #7
    Lyoto's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Posts
    14
    Reputation
    10
    Thanks
    0
    My Mood
    Amused
    If txtLenght.Text.length > 0 Then

    ' SHit

    Else
    MsgBox("Invalid Lenght")
    End if

  10. #8
    GiGux's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    Eastern Finland.
    Posts
    887
    Reputation
    -64
    Thanks
    231
    My Mood
    Bored
    Eww nice but my prob is that it crashes if theres nothing on the length

  11. #9
    Lyoto's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Posts
    14
    Reputation
    10
    Thanks
    0
    My Mood
    Amused
    Quote Originally Posted by GiGux View Post
    Eww nice but my prob is that it crashes if theres nothing on the length
    If there is nothing on the Lenght will open up a msgbox ..

  12. #10
    GiGux's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    Eastern Finland.
    Posts
    887
    Reputation
    -64
    Thanks
    231
    My Mood
    Bored
    UsableChars = Split(CharsList, ",")
    FinalPassword = ""
    Number = 0
    For i As Integer = 1 To txtLength.Text
    Number = RandomClass.Next(0, 61)
    FinalPassword = FinalPassword + UsableChars(Number)
    Next
    txtPassword.Text = FinalPassword
    If txtLength.Text > 0 Then
    Else
    MsgBox("Password length MUST be more than 0!")
    It pops up the MsG if there is a "0" but how can I make it so that it pops up a message when theres nothing in the box?I've tried to replace the
    If txtLength.Text > 0 Then
    with
    If txtLength.Text >" " Then
    but it complains that its infinite..

  13. #11
    Lyoto's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Posts
    14
    Reputation
    10
    Thanks
    0
    My Mood
    Amused
    Quote Originally Posted by GiGux View Post
    It pops up the MsG if there is a "0" but how can I make it so that it pops up a message when theres nothing in the box?I've tried to replace the
    with but it complains that its infinite..
    Code:
    If TextBox1.Text.Lenght > 0 Then
    
    'You Code
    
    Else
    
    MsgBox("Invalid Lenght")
    
    End If
    Its that.

    It checks if the textbox1 got more then 0 caracters..


    And use it on the right pLACE!

  14. #12
    willrulz188's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Ohio?
    Posts
    1,786
    Reputation
    35
    Thanks
    231
    My Mood
    Amazed
    [highlight=vb]
    Try
    Dim what As Integer
    what = TextBox1.Text
    Catch ex As Exception
    MsgBox("INVALID")
    End Try[/highlight]

    it makes sure its even a number
    Last edited by willrulz188; 06-23-2011 at 09:35 AM.
    Question ALL statements! ?
    You're in denial that you're in denial. ?
    [img]https://i360.photobucke*****m/albums/oo45/blood188/Untitled-3.jpg?t=1284590977[/img]

Tags for this Thread