Python Forum
the making of mkpw - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Forum & Off Topic (https://python-forum.io/forum-23.html)
+--- Forum: Bar (https://python-forum.io/forum-27.html)
+--- Thread: the making of mkpw (/thread-985.html)

Pages: 1 2


RE: the making of mkpw - Larz60+ - Nov-26-2016

Frankly, I have never trusted password generators.
What a great program for a hacker to write.
Generate a password, and keep a copy for yourself!


RE: the making of mkpw - metulburr - Nov-26-2016

i usually think of a phrase, which is random or meaningful to me at that time. Then pick a sequence from it. And make sure to have at least 1 lower, 1 upper, 1 number, 1 special, and at least 8 characters long. 

Quote:I really hate the fact that NYS does not allow mail-in voting! 

Quote:I really hate the fact that NYS does not allow mail in voting


Quote:iR8tftNdnamiv!

and then sometimes add some random gibberish characters

Quote:iR8tftNdnamiv!76Y
for a end result of
Quote:iR8tftNdnamiv!76Y

In which 6 months later i redo the process again and change all my passwords manually slowly as i get to them when logging in naturally. Also in that way i usually have multiple passwords, sometimes i have to try.


RE: the making of mkpw - Skaperen - Nov-27-2016

(Nov-26-2016, 10:50 PM)Larz60+ Wrote: Frankly, I have never trusted password generators.
What a great program for a hacker to write.
Generate a password, and keep a copy for yourself!

that's why i want to write my own, or at least use one i get in source.


RE: the making of mkpw - wavic - Nov-27-2016

I don't remember passwords. I calculate them. I remember phrases for each site and pass them thru some hash functions and then I use the result as a password. If it is really important then base64 comes on the stage as one more step. For some sites, I calculate hashes for cropped snapshots of their pages. For forums like this one, that can't ruin my life, I use something much more simple


RE: the making of mkpw - Skaperen - Nov-27-2016

(Nov-27-2016, 05:32 AM)wavic Wrote: I don't remember passwords. I calculate them. I remember phrases for each site and pass them thru some hash functions and then I use the result as a password. If it is really important then base64 comes on the stage as one more step. For some sites, I calculate hashes for cropped snapshots of their pages. For forums like this one, that can't ruin my life, I use something much more simple

for sites like this, i do the phrase followed by a simple algorithm, such as fibonacci modulo len(word[n]) to select the letter..


RE: the making of mkpw - Skaperen - Nov-28-2016

(Nov-26-2016, 11:18 AM)Ofnuts Wrote:
(Nov-26-2016, 08:12 AM)Skaperen Wrote: want to have options to ensure that to avoid all-letter passwords for certain cases.

If this rule is known to the cracker, it actually reduces the set of possible passwords...

true, but the certain cases are sites that refuse such passwords.  generating what they accept can avoid complicated failures.