![]() |
#2671 | |
Grand Sorcerer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 5,729
Karma: 103020299
Join Date: Apr 2011
Device: pb360
|
Quote:
|
|
![]() |
![]() |
![]() |
#2672 |
Bibliophagist
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 44,371
Karma: 167723581
Join Date: Jul 2010
Location: Vancouver
Device: Kobo Sage, Libra Colour, Lenovo M8 FHD, Paperwhite 4, Tolino epos
|
For the moment, I use Firefox and it's random password generator to generate passwords for don't really care sites. For other sites where security is more important to me, I use a pretty simple Python password generator called pw_generator.py. Looking at it I just realized that when I switched to using secrets, I never removed the other imports. It's not something that I use all that often but handy when I need it.
Code:
import string import random import secrets # Getting password length length = int(input("Enter password length: ")) password = ''.join((secrets.choice(string.ascii_letters + string.digits + string.punctuation) for i in range(length))) print(password) Code:
C:\Users\user\Desktop>python pw_generator.py Enter password length: 16 QSQMf7,"IrG&:7^3 C:\Users\user\Desktop>python pw_generator.py Enter password length: 24 Y6rBEU2DH>vj&b0o8!.hr5;A |
![]() |
![]() |
Advert | |
|
![]() |
#2673 | |
Guru
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 735
Karma: 10000000
Join Date: Oct 2016
Location: Somewhere in Time
Device: Forma, iPad Mini
|
Quote:
$ pwgen 8 1 xahS5ohx but I typically do this: $ pwgen -nsBy 16 1 F$`|]3hNmm^,VM+m or with some constraints when sites dislike certain non-alpha characters. |
|
![]() |
![]() |
![]() |
#2674 |
Bibliophagist
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 44,371
Karma: 167723581
Join Date: Jul 2010
Location: Vancouver
Device: Kobo Sage, Libra Colour, Lenovo M8 FHD, Paperwhite 4, Tolino epos
|
That one works too. Basically, not a task that I do that often since I reserve those passwords for what I consider to be high security sites so I wanted quick and dirty but decent randomness.
|
![]() |
![]() |
![]() |
#2675 | |
Guru
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 735
Karma: 10000000
Join Date: Oct 2016
Location: Somewhere in Time
Device: Forma, iPad Mini
|
Quote:
![]() |
|
![]() |
![]() |
Advert | |
|
![]() |
#2676 |
Resident Curmudgeon
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 78,894
Karma: 143095300
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
|
|
![]() |
![]() |
![]() |
#2677 |
Resident Curmudgeon
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 78,894
Karma: 143095300
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
|
|
![]() |
![]() |
![]() |
#2678 |
Still reading
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 13,618
Karma: 103503445
Join Date: Jun 2017
Location: Ireland
Device: All 4 Kinds: epub eink, Kindle, android eink, NxtPaper
|
Too obvious.
|
![]() |
![]() |
![]() |
#2679 |
Guru
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 735
Karma: 10000000
Join Date: Oct 2016
Location: Somewhere in Time
Device: Forma, iPad Mini
|
Yes you do: me. My daily carry is a Fjallraven passport wallet. Though I don't carry my passport all the time, just when traveling, it's very convenient for my daily carry for other items. It's also just large enough to fit my phone if I want.
|
![]() |
![]() |
![]() |
#2680 |
Resident Curmudgeon
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 78,894
Karma: 143095300
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
|
|
![]() |
![]() |
![]() |
#2681 |
Resident Curmudgeon
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 78,894
Karma: 143095300
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
|
What we are talking about it the type of wallet used for money and cards.
|
![]() |
![]() |
![]() |
#2682 | |
Guru
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 735
Karma: 10000000
Join Date: Oct 2016
Location: Somewhere in Time
Device: Forma, iPad Mini
|
Quote:
https://www.fjallraven.com/us/en-us/...ssport-wallet/ |
|
![]() |
![]() |
![]() |
#2683 |
Custom User Title
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 10,571
Karma: 74000001
Join Date: Oct 2018
Location: Canada
Device: Kobo Libra H2O, formerly Aura HD
|
I use Thunderbird filters to sort emails and such. So of course when an email newsletter changes the from address or subject line or something then the filters stop working.
|
![]() |
![]() |
![]() |
#2684 |
Bibliophagist
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 44,371
Karma: 167723581
Join Date: Jul 2010
Location: Vancouver
Device: Kobo Sage, Libra Colour, Lenovo M8 FHD, Paperwhite 4, Tolino epos
|
My passwords for low security accounts are unique, just not as complex as my high security account passwords. Do I really care if someone spends the hours needed to crack the password on my account for the local newspaper? Whereas my banking passwords are going to take a bit longer to crack. Yes, I do realize that yesterday's overkill is today's barely adequate and tomorrow's security breach waiting to happen. One site I use now allows a 1023 character password/passphrase but they have dropped all upper/lower/digits/special characters requirements though they do run your password through a quick dictionary words tool (rather unnecessary IMNSHO). The correcthorsebatterystaple password used in XKCD's example would not be accepted since it consists of a string of dictionary words.
|
![]() |
![]() |
![]() |
#2685 |
Still reading
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 13,618
Karma: 103503445
Join Date: Jun 2017
Location: Ireland
Device: All 4 Kinds: epub eink, Kindle, android eink, NxtPaper
|
|
![]() |
![]() |
![]() |
Thread Tools | Search this Thread |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
The Vent and Rant Thread | TadW | Lounge | 38143 | Today 11:54 AM |
Query about moderation in the Vent & Rant Thread. | Hitch | Feedback | 14 | 07-16-2016 05:05 PM |
Seriously thoughtful why did the vent and rant thread get moved? | kindlekitten | Lounge | 10 | 04-05-2011 04:47 PM |