Jump to content

Recommended Posts

Posted (edited)

Hi guys.

Ive create a program that generates a random password.

Downloa Link: http://www.mediafire.com/file/fp8t81g253s2959/Random+Password+Generator+V1.01.rar

Virus Total Link: https://www.virustotal.com/en/file/9ca5bbd2d5b074c367a64c7d5abbea40536187918fff73bfa49816e395a89ada/analysis/1483453829/

For V1.01

 

How to use:

1) Open the .exe

2) Press Enter

3) A new password.txt will be generated with ur new code

 

To use it again u dont need to delete the password.txt.

The program will just delete the old password and regenerate a new one.

A foto: ( http://imgur.com/a/FAmGY ) (Outdated from V1)

Made with C++

I need feedback in order to improve it :)

 

Updates for V1.01:

Added Help and you can choose for Big or Small Password

Edited by ganjaradio
Posted (edited)

You should add options such , what the password you need to contains...

Letter,numbers,both,uppercase and lowercase etc...

Good job anyway

Edited by melron
Posted (edited)
If you don't mind installing Python (btw, even if you can't code in it, it's the best available calculator)
#!/usr/bin/env python

CHARACTERS = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
LENGTH = 10

from random import seed, choice
seed()
print "".join([choice(CHARACTERS) for i in xrange(LENGTH)])


Or maybe even better (taking length and chars from commandline arguments):

#!/usr/bin/env python

from sys import argv, stderr
from random import seed, choice

def usage():
    print >> stderr, "Usage: %s [LENGTH] [CHARACTERS]" % (argv[0], )
    raise SystemExit(1)

LENGTH = 10
CHARACTERS = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"

if len(argv) > 3: usage()

if len(argv) == 2 and argv[1] in ["-h", "--help", "/h", "-?", "/?"]: usage()

if len(argv) > 1:
    try:
        LENGTH = int(argv[1])
    except:
        usage()

if len(argv) > 2:
    CHARACTERS = argv[2]

seed()

print "".join([choice(CHARACTERS) for i in xrange(LENGTH)])


Edited by eressea
Posted

Ah, then good job :)

 

I've looked into your code (thanks for added pdb file :)) and I've noticed this:

  • you should call srand only once
  • you shouldn't use just time() as parameter to srand, use something like srand(time(0) + _getpid()) or you'll generate the same password on two different machines when you run it in the same second
  • you should get the characters from one string like "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789", not from 10 different "random" strings
  • you should generate the result to some std::string (just push_back those chars there until you have password long enough)

Simply (pseudocode, not tested):


#include <windows.h>
#include <string>
#include <stdlib.h>

int main(int argc, char **argv)
{
    srand(time(0) + _getpid()); // it would be better to obtain some more random seed - in UNIX, you should get this value from /dev/random
    std::string result;
    const std::string chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
    for (size_t i = 10 ; i ; --i) {
        result.push_back(chars[rand() % chars.size()]); // even this could be written better, using lowest bits isn't good for some pseudorandom generators
    }
    std::cout << "Random password: " << result << std::endl;
    return 0;
}


Posted

Interesting,such thing may be very usefull in some situations.i would like an updated version with more,thanks for sharing with us.

Not only you made 300 posts in 3 days but you write down some big bullshit. 

Share what? He downloaded a code from stackoverflow, you don't even know him. Check his profil and stop write bullshit please. 

Posted (edited)

Your repository is private (or at least I can't see it)

ah sry forgot to change ill fix it now :)

 

 

 

Also ill update it

 

Νow its public

Edited by ganjaradio
Posted (edited)

Added:
Size (chosen from the user)
Type of the password (chosen of the user)

Uploaded in BitBucket

Download Link (the .exe only): http://www.mediafire.com/file/1xsa4f2rjkakemw/Random+Password+Generator.exe

Virus Total: https://www.virustotal.com/en/file/151fc70416fd06f6d45aab9b76b6a01612f90927c581a8ecc1e02e067662d6d3/analysis/1483804023/

 

Need feedback if possible :)

 

Ive also created a client, that can be connected with a server (Easy way to make a cheating program for l2, the basic packets are ready, you just need to create the rest)

And Math Program that rights in a notepad the XP for next LvL (Can be changed easily for other math)

I can share them if u want

Edited by ganjaradio

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


  • Posts

    • Hello everyone, we now have Adena for these projects: l2rebon signature x1 - 1kk = $0.8 l2reborn x10 - 500kk = $3.5 E-Global x Lu4 - 1kk = $1.8 ElmoreLab x5 - 1kk = $1.7 DISCORD - GODDARDSHOP
    • 2 euros/h I will need you to mostly follow my main with 3 chars logged from same computer and respond to my messages. Payments daily via paypal. Estimated number of hours needed: 30 I basically need someone to help me boost my supports first 3 days of server's grand opening. Server is opening this Friday at 6pm Paris time and I need you until midnight on Friday and ~12h on Saturday and ~12h on Sunday. Add me on telegram if interested @nikola91ns
    • 📢 L2Elixir Open Beta Announcement Get ready! The Open Beta starts on Saturday, November 15th at 21:00 (UTC +2). Don’t miss it — follow the countdown on our official website! Now then, we present to you our OPEN BETA exclusive event:   Here’s how it works briefly: 1) An NPC named ‘The Judge’ will spawn in Giran for the first 30 minutes of the OPEN BETA. This NPC will spawn at exactly 21:00 UTC+2 on Saturday 15th November 2025. 2) Interact with this NPC and your master account will be given special privileges to obtain Legendary starter pack for all game accounts created. 3) Having spoken to the NPC will allow for all new characters to start with a legendary starter pack on the official launch day on 28th November 2025, 21:00 UTC+2. 4) ‘The Judge’ will reward the first 2 players and 2 more Random participants with a PREMIUM Account which will be activated on 28th November 2025!!! 4) Send message to @Ray on Forum or Discord with your Forum name to get Legendary Role on Discord! Good luck! Legendary starter pack:
    • Hello everyone!   The gates of Aden are opening, prepare for the ultimate adventure and claim your place among legends. Our server launch is getting closer.. Adventurers of Aden, the wait is over! On November 28th, 2025, a new era begins. Get ready to step into the epic world of Lineage 2, where legends are forged, battles are relentless, and glory awaits the brave. https://www.l2ertheia.eu/news:server-launch/
    • - New Features in Anosim https://anosim.net -   You can now share your numbers with others via a unique link - no need to give them access to your account! How to Share Number https://prnt.sc/K83lxOjS-Fyb   How to Revoke Accsess: https://prnt.sc/jkVIQS2lhxvA   --- --- --- --- --- --- --- New OTP / SMS Activation Locations: - USA  - Australia - Honduras - Kenia
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock