| Commit message (Collapse) | Author | Age | Files | Lines |
| | |
|
| |
|
|
| |
Notes:
svn path=/releng/BETA_2_0/; revision=4743
|
| |
|
|
| |
Notes:
svn path=/releng/ALPHA_2_0/; revision=4294
|
| |
|
|
| |
Notes:
svn path=/head/; revision=4289
|
| |
|
|
| |
Notes:
svn path=/head/; revision=4288
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This effectively changes the non-DES password algoritm.
If you have the "securedist" installed you will have no problems with this.
(Though you might want to consider using this password-encryption instead
of the DES-based if your system is likely to be hacked)
If you are running a -current system without the "securedist" installed:
YOU WILL NEED TO CHANGE ALL PASSWORDS !! There is no backwards mode.
Suggested procedure is:
Update your sources
cd /usr/src/lib/libcrypt
make clean
make all
make install
passwd root
<set roots new password>
change password for any other users on the system.
This algorithm is expected to be much better than the traditional DES-
based algorithm. It uses the MD5 algorithm at what it is best at, as
opposed to the DES algorithm at something it isn't good at at all. The
algorithm is designed such that it should very hard to shortcut the
calculations needed to build a dictionary, and to make partial knowledge
(Hmm, his password starts with a 'P'...) useless. Of course if somebody
breaks the MD5 algorithm this looses too.
The salt is 48 bits (8 char @ base64).
The encrypted password is 128 bits.
And I am positively delighted to say that it takes 34 msec to crypt() a
password on a Pentium/60Mhz, so building a dictionary is not really an
option for hackers at the moment.
Notes:
svn path=/head/; revision=4246
|
| |
|
|
| |
Notes:
svn path=/head/; revision=4245
|
| |
|
|
| |
Notes:
svn path=/head/; revision=4241
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
Given the right circumstances, a call to kvm_open can result in a core
dump.
The diff belows fixes this (note that this change is already in the
NetBSD code). Could somebody apply this?
Gary J.
Submitted by: gj
Notes:
svn path=/head/; revision=4231
|
| |
|
|
|
|
|
| |
if insert_character is available or don't print, if not
Notes:
svn path=/head/; revision=4212
|
| |
|
|
| |
Notes:
svn path=/head/; revision=4206
|
| |
|
|
| |
Notes:
svn path=/head/; revision=4205
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
From: Chris Torek <torek@bsdi.com>
Here is a semi-official patch (apply to /usr/src/lib/libc/stdio/fseek.c,
rebuild libc, install). The current code fails when the seek:
- is optimized, and
- is to just past the end of the block currently in the buffer, and
- is followed by another seek with no intervening read operation, and
- the destination of subsequent seek is within the block left in the
buffer (seeking to the beginning of a block does not force a read,
so the buffer still contains the previous block)
so it is indeed rather obscure.
I may have a different `final' fix, as this one `loses' the buffer
contents on a seek that goes just past the end of the current block.
[Footnote: seeks are optimized only on read-only opens of regular
files that are buffered by the file's optimal I/O size. This is
what you get with fopen(path, "r") and no call to setvbuf().]
Obtained from: [ BSDI mailing list ]
Notes:
svn path=/head/; revision=4169
|
| |
|
|
|
|
|
| |
this change must not affect other curses pgms
Notes:
svn path=/head/; revision=4141
|
| |
|
|
|
|
|
|
|
| |
I know that many of these entries are bogus and need to be revisited,
but let's get the tree working again for now and then do a pass through
looking at all the __FreeBSD__ entries, shall we?
Notes:
svn path=/head/; revision=4131
|
| |
|
|
| |
Notes:
svn path=/head/; revision=4095
|
| |
|
|
| |
Notes:
svn path=/head/; revision=4043
|
| |
|
|
| |
Notes:
svn path=/head/; revision=4023
|
| |
|
|
| |
Notes:
svn path=/head/; revision=4022
|
| |
|
|
| |
Notes:
svn path=/head/; revision=4021
|
| |
|
|
| |
Notes:
svn path=/head/; revision=3984
|
| |
|
|
| |
Notes:
svn path=/head/; revision=3982
|
| |
|
|
|
|
|
|
| |
vi(1). Remove DB from curses.h and still implement it provide
this variable for programs that expect it in any case.
Notes:
svn path=/head/; revision=3981
|
| |
|
|
|
|
|
|
| |
check ultrix for example. Real place for fix will be vi(1),
wait for next commit.
Notes:
svn path=/head/; revision=3980
|
| |
|
|
| |
Notes:
svn path=/head/; revision=3977
|
| |
|
|
|
|
|
| |
Nice to see that people test their fixes before they commit :-(
Notes:
svn path=/head/; revision=3976
|
| |
|
|
| |
Notes:
svn path=/head/; revision=3960
|
| |
|
|
| |
Notes:
svn path=/head/; revision=3944
|
| |
|
|
|
|
|
| |
(I still wait for apologies)
Notes:
svn path=/head/; revision=3941
|
| |
|
|
| |
Notes:
svn path=/head/; revision=3934
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
While trying to figure out why rlogind wasn't working right for root,
I noticed that man wouldn't come back with a man page for iruserok, but
it would for ruserok. Checking the lib/net directory's Makefile.inc
file shows that the link to the rcmd man page just isn't getting
created.
>How-To-Repeat:
Do a 'man iruserok' and notihing will come back, where a 'man ruserok'
will.
Submitted by: Brian Moore <ziff@houdini.eecs.umich.edu>
Obtained from: NetBSD-bugs mailing list
Notes:
svn path=/head/; revision=3932
|
| |
|
|
| |
Notes:
svn path=/head/; revision=3929
|
| |
|
|
| |
Notes:
svn path=/head/; revision=3928
|
| |
|
|
|
|
|
| |
Submitted by: pete@pelican.pelican.com
Notes:
svn path=/head/; revision=3909
|
| |
|
|
| |
Notes:
svn path=/cvs2svn/branches/unlabeled-1.1.1/; revision=3904
|
| |
|
|
|
|
|
| |
Obtained from: netlib.att.com
Notes:
svn path=/cvs2svn/branches/ATT/; revision=3902
|
| |
|
|
|
|
|
| |
Obtained from: netlib.att.com
Notes:
svn path=/cvs2svn/branches/ATT/; revision=3900
|
| |
|
|
| |
Notes:
svn path=/head/; revision=3886
|
| |
|
|
|
|
|
| |
to match setjmp.S.
Notes:
svn path=/head/; revision=3851
|
| |
|
|
|
|
|
|
| |
that calls setjmp(), since returning from the function usually
clobbers the saved environment.
Notes:
svn path=/head/; revision=3850
|
| |
|
|
|
|
|
| |
Set IGNPAR, clear NOFLSH, PENDIN, TOSTOP, ECHOE, ECHOK
Notes:
svn path=/head/; revision=3799
|
| |
|
|
| |
Notes:
svn path=/head/; revision=3760
|
| |
|
|
| |
Notes:
svn path=/head/; revision=3709
|
| |
|
|
| |
Notes:
svn path=/head/; revision=3702
|
| |
|
|
| |
Notes:
svn path=/head/; revision=3682
|
| |
|
|
| |
Notes:
svn path=/head/; revision=3667
|
| |
|
|
|
|
|
|
| |
fields in the utsname structure are too small to hold their
corresponding MIB variables. Don't return an error in this case.
Notes:
svn path=/head/; revision=3565
|
| |
|
|
| |
Notes:
svn path=/head/; revision=3527
|
| |
|
|
| |
Notes:
svn path=/head/; revision=3526
|
| |
|
|
|
|
|
| |
cmp redirection removed
Notes:
svn path=/head/; revision=3525
|