The setup of OpenBSD Amsterdam
openbsd.amsterdam
The setup of OpenBSD Amsterdam
1–10 of 21 posts
Re: The setup of OpenBSD Amsterdam
#2Re: The setup of OpenBSD Amsterdam
#3Re: The setup of OpenBSD Amsterdam
#4Can somebody explain what this is?
Re: The setup of OpenBSD Amsterdam
#5Re: The setup of OpenBSD Amsterdam
#6This has nothing to do with an official OpenBSD or Amsterdam project, does it?
Re: The setup of OpenBSD Amsterdam
#7Can somebody explain what this is?
Re: The setup of OpenBSD Amsterdam
#8The consequence is that the range of possible passwords is probably smaller than was intended, and furthermore seeing previous passwords (or the random MAC) may help in predicting passwords. Of course without seeing their entire setup it's hard to say to what extent that is the case here.
This module may be useful (it even uses the same alphabet by default): https://metacpan.org/pod/Session::Token
Re: The setup of OpenBSD Amsterdam
#9Perl's rand() is not a great way to generate values that should be unpredictable. It is seeded with only 4 bytes from /dev/urandom and is an LFSR like rand(3). The consequence is that the range of possible passwords is probably smaller than was intended, and furthermore seeing previous passwords (or the random MAC) may help in predicting passwords. Of course without seeing their entire setup it's hard to say to what…