Page 1 of 2 12 LastLast
Results 1 to 15 of 27
  1. #1
    Lyoto Machida's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    Far away with girls
    Posts
    3,734
    Reputation
    133
    Thanks
    1,621
    My Mood
    Aggressive

    Talking [Release][Opensource] Login System by -WØW''

    Hello
    This is a simple login system, With register..
    The usernames is the textfiles name and the password is the content

    You can register , It check if the users already exists and etc..(It check everything xD)

    Its all clean.

    Hope this help many begginers or something...


    Screen Shoot:



    Virus Scan:

    Login System by WOW.rar - Jotti's malware scan

    VirusTotal - Free Online Virus, Malware and URL Scanner


    Feel free to change everything ^^
    Check it out , The source code is very well explained

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

    @Jason Please Approved it

  2. #2
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Source is clean, scans match. /Approved.

    However, you might wanna play around with the different FormBorderStyles available as well as setting the "MaximizeBox" property to false on forms you don't want resized.

    Have at it!

    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)

  3. #3
    T0P-CENT's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Posts
    88
    Reputation
    14
    Thanks
    17
    My Mood
    Stressed
    well i tested it but i can't understand why it is login system ? it just create a text with username and password or what ever , it is kinda useless no offense
    Last edited by T0P-CENT; 02-12-2011 at 04:43 AM.

  4. #4
    topblast's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Far from around you Programmer: C++ | VB | C# | JAVA
    Posts
    3,607
    Reputation
    149
    Thanks
    5,052
    My Mood
    Cool
    if you are doing it this way, i think LINQ XML is the best way to go.. well

    Code:
    <root>
             <usernames> 
                      <topblast>
                               <password>yourpassword</password>
                               <info> what ever what ever</info>
                      </topblast>
    
                      <youruser>
                               <password>yourpassword</password>
                               <info> what ever what ever</info>
                      </youruser>
             </usernames>
    </root>
    I just like programming, that is all.

    Current Stuff:

    • GPU Programmer (Cuda)
    • Client/Server (Cloud Server)
    • Mobile App Development

  5. #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 topblast View Post
    if you are doing it this way, i think LINQ XML is the best way to go.. well

    Code:
    <root>
             <usernames> 
                      <topblast>
                               <password>yourpassword</password>
                               <info> what ever what ever</info>
                      </topblast>
    
                      <youruser>
                               <password>yourpassword</password>
                               <info> what ever what ever</info>
                      </youruser>
             </usernames>
    </root>
    Meh, this is just as easy for people with little XML knowledge.

    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)

  6. #6
    hitmen69's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    in croatia?
    Posts
    57
    Reputation
    10
    Thanks
    101
    My Mood
    Amazed
    this is good. but i have question:
    how to hide map "users" so you can't see usernames or passwords?

  7. #7
    Lyoto Machida's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    Far away with girls
    Posts
    3,734
    Reputation
    133
    Thanks
    1,621
    My Mood
    Aggressive
    lol i Said this is very simple..
    This can be used with a website then no one will see the files (If you protect them)

    This is just a simple way to do this...I did this for begginers or something..
    And idk XML


    @hitman69 You can change the folder to C:\BLABLA\BLABALBLA\BLABLABA\BALBALBA\BLABLA\files \Users\HERE!

    No one will find it :P , But if you do it with websites and protect them...Its the better way =)


    Exists many ways..


    PS: Next time will do with more security =)

  8. #8
    hitmen69's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    in croatia?
    Posts
    57
    Reputation
    10
    Thanks
    101
    My Mood
    Amazed
    Can you make code for me with the Website thing?
    I will be very grateful!

  9. #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 hitmen69 View Post
    this is good. but i have question:
    how to hide map "users" so you can't see usernames or passwords?
    Use a MD5 hash on the password when storing, and then store it externally (database, online secure files...etc)

    Then you simply hash the users entered password, if it matches the stored hash, password accepted.

    EDIT @hitmen69, keep personal discussion to VM's please and thank you.

    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)

  10. #10
    Lyoto Machida's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    Far away with girls
    Posts
    3,734
    Reputation
    133
    Thanks
    1,621
    My Mood
    Aggressive
    Quote Originally Posted by hitmen69 View Post
    Can you make code for me with the Website thing?
    I will be very grateful!
    @Jason This folder Users can be on my file resources? And edit it on runtime and etc..? PS: You give me a idea :P

    @hitman69 Maybe i found a better way..Just wait litle bit.

  11. #11
    Bombsaway707's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Gym
    Posts
    8,799
    Reputation
    791
    Thanks
    4,004
    My Mood
    Amused
    Hmm good for a very basic login but if you try to implement a banning system its going to fail. Not only because they can edit their username in the text file but also because this has no server interaction at all. Their really only editing their "database"

  12. The Following User Says Thank You to Bombsaway707 For This Useful Post:

    Hassan (02-12-2011)

  13. #12
    Lyoto Machida's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    Far away with girls
    Posts
    3,734
    Reputation
    133
    Thanks
    1,621
    My Mood
    Aggressive
    Quote Originally Posted by Bombsaway707 View Post
    Hmm good for a very basic login but if you try to implement a banning system its going to fail. Not only because they can edit their username in the text file but also because this has no server interaction at all. Their really only editing their "database"
    Yeah xD i didn learn database im almost there xD

    Next time i swear will be with that xDDD

  14. #13
    Bombsaway707's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Gym
    Posts
    8,799
    Reputation
    791
    Thanks
    4,004
    My Mood
    Amused
    Quote Originally Posted by -WØW'' View Post


    Yeah xD i didn learn database im almost there xD

    Next time i swear will be with that xDDD
    I wish you best of luck haha , but database is very hard to learn. Mostly the adding users part, not so much reading existing users.

  15. #14
    L3G3ND_KILL3R's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    4,828
    Reputation
    207
    Thanks
    651
    My Mood
    Bored
    Good Release


    Need help with CALL OF DUTY RELATED or anything just private message me and im willing to help ^____^ Have a nice day!
    Quote Originally Posted by HelpIsWanted View Post
    so i have a camp next month, and i am 12, now all boys in my class have a large dick with hari and i dont have that. who can help me please?
    i see in films people can grow hair and grow dicks.

    i know its weird question, but i need !

  16. #15
    ♪~ ᕕ(ᐛ)ᕗ's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Uterus
    Posts
    9,119
    Reputation
    1096
    Thanks
    1,970
    My Mood
    Doh
    can I make you a question?
    You used the settings to do this? I didn't checked the code
    Or what is the way that you used to make this?

Page 1 of 2 12 LastLast