Re: [Savannah-users] password must be more complicated

2013-05-07 Thread Luiji Maryo
Behold my ultimate password generator in Python: import random, string p = "" for i in range(0, 20): p += random.choice(string.printable) print p # print(p) in python 3 That works like a charm on virtually everything I've ever wanted a secure password on, including Savannah. On

Re: [Savannah-users] password must be more complicated

2013-05-07 Thread Karl Berry
$ echo Iephoo3i | pwqcheck -1 match=0 max=256 min=24,24,11,8,7 Bad passphrase (not enough different characters or classes for this length) That has three character classes, lower, upper, digits, and so should need N3=8 characters. It is 8 characters long and so should mee

Re: [Savannah-users] password must be more complicated

2013-05-07 Thread Bob Proulx
Hi Jan, Jan Owoc wrote: > I can confirm that the previous settings in Savannah (haven't > checked now) would not allow a few completely random passwords > because they were apparently based on dictionary words. The recent change should allow people to use paraphrases. Before those would have bee

Re: [Savannah-users] password must be more complicated

2013-05-07 Thread Bob Proulx
Ineiev wrote: > pwgen -1 -s 8 1|while read i;do echo $i|pwqcheck -1 min=24,24,11,8,7;done > |grep ^OK|wc -l > > 8698 Because traditional passwords were often eight characters we still often pick passwords that are eight characters long. So 87% of random passwords will be accepted. 13% will

Re: [Savannah-users] How to add files?

2013-05-07 Thread Julian
On 05/07/2013 12:16 PM, rsiddharth wrote: Hey Julian, I figured out how to do everything else, but I don't see how to add files to my project's directory in download.savannah.gnu.org/releases/. I don't see anything about this in the "Site Help" links. What did I miss? Check this out: http://sa

Re: [Savannah-users] password must be more complicated

2013-05-07 Thread Jan Owoc
On Tue, May 7, 2013 at 1:47 PM, Luiji Maryo wrote: > Behold my ultimate password generator in Python: > > import random, string > p = "" > for i in range(0, 20): p += random.choice(string.printable) > print p # print(p) in python 3 > > That works like a charm on virtually everythin

Re: [Savannah-users] How do you add files?

2013-05-07 Thread Tomasz Konojacki
Hi! http://savannah.gnu.org/maintenance/DownloadArea Regards, Tomasz > Date: Tue, 7 May 2013 09:34:25 -0400 > From: onp...@riseup.net > To: savannah-users@gnu.org > Subject: [Savannah-users] How do you add files? > > Looks like it didn't go through when I sent it yesterday, maybe I sent > it t

Re: [Savannah-users] How to add files?

2013-05-07 Thread rsiddharth
Hey Julian, > I figured out how to do everything else, but I don't see how to add > files to my project's directory in > download.savannah.gnu.org/releases/. I don't see anything about this > in the "Site Help" links. What did I miss? Check this out: http://savannah.gnu.org/maintenance/DownloadAr

[Savannah-users] How do you add files?

2013-05-07 Thread Julian
Looks like it didn't go through when I sent it yesterday, maybe I sent it too soon... sorry if it ends up a double-post. I figured out how to do everything else, but I don't see how to add files to my project's directory in download.savannah.gnu.org/releases/. I don't see anything about this i

[Savannah-users] How to add files?

2013-05-07 Thread Julian
I figured out how to do everything else, but I don't see how to add files to my project's directory in download.savannah.gnu.org/releases/. I don't see anything about this in the "Site Help" links. What did I miss?

Re: [Savannah-users] password must be more complicated

2013-05-07 Thread Jan Owoc
Hi Bob, On Tue, May 7, 2013 at 1:48 AM, Bob Proulx wrote: > Setting match=0 seems to help with the "dictionary" issue. > > $ echo ohtaOe0h | pwqcheck -1 match=0 max=256 min=disabled,24,11,8,7 > OK > > $ echo uChiel9m | pwqcheck -1 match=0 max=256 min=disabled,24,11,8,7 > OK > [...] > > Do

Re: [Savannah-users] password must be more complicated

2013-05-07 Thread Ineiev
On 05/07/2013 11:48 AM, Bob Proulx wrote: But playing around with things I find some crazy behavior. Check this out. I ran pwgen to create random passwords. I tried some. The first several I tried failed. Others did work. $ echo ohtaOe0h | pwqcheck -1 max=256 min=disabled,24,11,8,7 Bad

[Savannah-users] password must be more complicated

2013-05-07 Thread Bob Proulx
Hi Bruce, Bruce Korb wrote: > Now that passwords are a teeny tad more of a nuisance, The change posted should make them easier to use not harder to use. Let me explain and then perhaps you can describe your problems. Because I also see problems and am about to propose an additional change. We we