aboutsummaryrefslogtreecommitdiff
path: root/secure/usr.bin
Commit message (Collapse)AuthorAgeFilesLines
* Fixed world breakage in previous commit. -lpam must never be usedBruce Evans2001-05-091-4/+4
| | | | | | | | | | | | directly (except in the definition of MINUSLPAM in bsd.libnames.mk) since it doesn't give all the libraries necessary for static linkage. Fixed missing ${LIBPAM} in DPADD. Fixed some style bugs in DPADD and LDADD. Notes: svn path=/head/; revision=76408
* Add PAM support to SRA authentication. Cribbed mostly from ftpd. ThisNick Sayer2001-05-071-1/+1
| | | | | | | | doesn't solve the problem of root being allowed to log in, but that sort of thing is something PAM should be doing anyway. Notes: svn path=/head/; revision=76337
* Follow the OpenSSH 2.9 upgrade with the infrastructure. Two newBrian Feldman2001-05-048-12/+37
| | | | | | | programs are now included: sftp(1) and ssh-keyscan(1). Notes: svn path=/head/; revision=76264
* Bye-bye /usr/lib/libtelnet.a. This should fix ``make release'' brokeness.Ruslan Ermilov2001-03-281-1/+1
| | | | | | | Approved by: markm Notes: svn path=/head/; revision=74928
* secure/ build fixes:Ruslan Ermilov2001-03-268-54/+22
| | | | | | | | | | | | | | | | | | | | | | | - TELNETOBJDIR is gone. `buildworld' already installs libtelnet.a in ${WORLDTMP}/usr/lib, and we have LIBRARY_PATH pointing there. - SSHDIR (formerly SSHSRC) is now shared between all SSH modules. New LIBSSH is introduced for libssh.a (an internal static lib). Previously, build without prior `obj' was broken; SSH modules always looked for libssh.a in ${.OBJDIR}. Also, the dependancies on the libssh.a were missing. - libtelnet/ did not install the crypto version of telnet.h into /usr/include/arpa. - Removed BINOWN, BINMODE, BINDIR and SRCS with default values. Reviewed by: markm - MAN[1-9] -> MAN. Notes: svn path=/head/; revision=74818
* man(7) -> mdoc(7).Ruslan Ermilov2001-01-161-140/+173
| | | | Notes: svn path=/head/; revision=71115
* Disable /usr/bin/ssh being setuid root by default. Let the variableBrian Feldman2000-11-141-0/+2
| | | | | | | | | | | | | ENABLE_SUID_SSH being defined reenable it for those that want it. This follows discussion favoring the change from September. It is not usually necessary to be setuid root, possibly less safe, and less convenient (cannot use $HOSTALIASES, for example). Submitted by: jedgar Notes: svn path=/head/; revision=68705
* Update for OpenSSL 0.9.6Kris Kennaway2000-11-131-5/+6
| | | | Notes: svn path=/head/; revision=68655
* Update for OpenSSH 2.2.0Kris Kennaway2000-09-101-2/+2
| | | | Notes: svn path=/head/; revision=65675
* Add missing quotes around xauth pathAndrey A. Chernov2000-08-231-1/+1
| | | | Notes: svn path=/head/; revision=65029
* Respect X11BASE to derive the location of xauth(1)Kris Kennaway2000-08-231-0/+4
| | | | | | | | PR: 17818 Submitted by: Bjoern Fischer <bfischer@Techfak.Uni-Bielefeld.DE> Notes: svn path=/head/; revision=65020
* Install the openssl(1) manpage with an MLINK from ssl(8) to at least putKris Kennaway2000-08-031-6/+12
| | | | | | | something in the location where OpenSSH likes to point. Notes: svn path=/head/; revision=64177
* Add missing $FreeBSD$ to files that are NOT still on vendor a branch.Peter Wemm2000-07-162-0/+6
| | | | Notes: svn path=/head/; revision=63248
* MFI. This is a documentation-only, diffreducing patch, that ifMark Murray2000-06-241-1/+1
| | | | | | | | invoked will cause breakage. US Users - DO NOT try to turn on IDEA - the sources are not included. Notes: svn path=/head/; revision=62030
* Update for OpenSSH 2.1Kris Kennaway2000-05-151-1/+2
| | | | Notes: svn path=/head/; revision=60577
* Update for OpenSSL 0.9.5a and clean up a bit.Kris Kennaway2000-04-131-5/+5
| | | | Notes: svn path=/head/; revision=59196
* Missed a fix for the new openssh; this fixes make world.Kris Kennaway2000-03-261-1/+1
| | | | Notes: svn path=/head/; revision=58639
* Update for latest OpenSSHKris Kennaway2000-03-261-1/+1
| | | | Notes: svn path=/head/; revision=58586
* Buildworld fixes for NO_OPENSSH and NO_OPENSSLKris Kennaway2000-03-091-2/+2
| | | | | | | Approved by: jkh Notes: svn path=/head/; revision=57841
* MFI: Make ssh and sshd link in the krb5 part of make release.John Hay2000-03-031-2/+2
| | | | | | | Reviewed by: markm Notes: svn path=/head/; revision=57743
* New distribution names.Mark Murray2000-02-281-2/+4
| | | | Notes: svn path=/head/; revision=57569
* Merge from internat.freebsd.org repo, minus change to rsa_eay.c (missing)Peter Wemm2000-02-261-7/+0
| | | | | | | | | | Reorganize and unify libcrypto's interface so that the RSA implementation is chosen at runtime via dlopen(). This is a checkpoint and may require more tweaks still. Notes: svn path=/head/; revision=57511
* Merge from internat.freebsd.org; deal with -DRSAref the same way asPeter Wemm2000-02-251-7/+9
| | | | | | | libcrypto - not that it means much on the US code tree. Notes: svn path=/head/; revision=57485
* Don't pull in libRSAglue for the rsaref case. Since this is linkedPeter Wemm2000-02-256-21/+1
| | | | | | | | dynamically by default, we use the dlopen() calls to load librsaref.so on US code trees. Notes: svn path=/head/; revision=57475
* Build everything properly. This means:Mark Murray2000-02-242-4/+7
| | | | | | | | | | | | | | o Don't b uild libdes. o Crypto is now housed in libcrypto (with a compatability symlink to libdes) o RSA may depend on RSAREF at your locale. o OpenSSH is now a part of the base system. Notes: svn path=/head/; revision=57437
* Add the OpenSSH userland-building Makefiles.Mark Murray2000-02-245-0/+129
| | | | Notes: svn path=/head/; revision=57434
* Diff reducer. Comes from Internat.Mark Murray2000-02-241-0/+2
| | | | Notes: svn path=/head/; revision=57411
* Remove useless whitespace.Mark Murray2000-02-241-13/+0
| | | | | | | Part of big commit OK'ed by: JKH Notes: svn path=/head/; revision=57410
* Back out the previous commit - it broke world and was not approved.Kris Kennaway2000-02-141-2/+2
| | | | | | | I don't know what I was thinking committing without approval - sorry. Notes: svn path=/head/; revision=57202
* Link dynamically, not statically.Kris Kennaway2000-02-131-2/+2
| | | | Notes: svn path=/head/; revision=57175
* Add NO_OPENSSL knob to turn off building of opensslKris Kennaway2000-01-301-1/+4
| | | | | | | Requested by: wollman Notes: svn path=/head/; revision=56899
* another tcp apps IPv6 updates.(should be make world safe)Yoshinobu Inoue2000-01-271-0/+3
| | | | | | | | | | ftp, telnet, ftpd, faithd also telnet related sync with crypto, secure, kerberosIV Obtained from: KAME project Notes: svn path=/head/; revision=56668
* Don't search for libraries in ${LOCALBASE}. This should fix the problemsKris Kennaway2000-01-201-1/+1
| | | | | | | people were seeing with conflicts with the openssl port. Notes: svn path=/head/; revision=56317
* The wrong version of the file was committed previously which explains theKris Kennaway2000-01-161-4/+17
| | | | | | | problems seen here. Notes: svn path=/head/; revision=56124
* Turn back on openssl building.Kris Kennaway2000-01-161-1/+1
| | | | Notes: svn path=/head/; revision=56090
* Add MAINTAINER tag so people don't feel the need to randomly frob with this.Kris Kennaway2000-01-161-0/+2
| | | | Notes: svn path=/head/; revision=56080
* We cannot have libcrypto, and therefore OpenSSL at all, without RSA.Brian Feldman2000-01-151-1/+1
| | | | | | | | If you need examples of breakage, I'm ready to provide more than a few. Notes: svn path=/head/; revision=56050
* Connect OpenSSL to the build.Kris Kennaway2000-01-141-1/+1
| | | | Notes: svn path=/head/; revision=55956
* Build infrastructure for OpenSSLKris Kennaway2000-01-141-0/+29
| | | | Notes: svn path=/head/; revision=55950
* Revert -lmd changes now that libcrypt doesn't expose this binutils/ldPeter Wemm1999-12-181-2/+2
| | | | | | | bug any more. Notes: svn path=/head/; revision=54783
* Add libmd to DPADD and LDADD.Marcel Moolenaar1999-12-171-2/+2
| | | | Notes: svn path=/head/; revision=54737
* Dont build telenet if we are going for kerberised telnet; this justMark Murray1999-10-121-2/+4
| | | | | | | jumps all over kerberised telnet otherwise. Notes: svn path=/head/; revision=52167
* Make telnet with SRA work.Mark Murray1999-10-072-1/+17
| | | | | | | Submitted by: Nick Sayer Notes: svn path=/head/; revision=51993
* $Id$ -> $FreeBSD$Peter Wemm1999-08-283-3/+3
| | | | Notes: svn path=/head/; revision=50479
* Typo in comment.Kris Kennaway1999-04-251-1/+1
| | | | Notes: svn path=/head/; revision=46064
* Revert $FreeBSD$ to $Id$Peter Wemm1997-02-223-3/+3
| | | | Notes: svn path=/head/; revision=22990
* Make the long-awaited change from $Id$ to $FreeBSD$Jordan K. Hubbard1997-01-143-3/+3
| | | | | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise. Notes: svn path=/head/; revision=21673
* Secure telnet is now in eBones.Mark Murray1996-11-0719-12159/+0
| | | | Notes: svn path=/head/; revision=19502
* Bring in my changes for removing the pestilent obj links (unless youJordan K. Hubbard1996-06-241-3/+3
| | | | | | | | really want them) from /usr/src. This is the final version of the patches, incorporating the feedback I've received from -current. Notes: svn path=/head/; revision=16663
* Bring in a change that got lost when we spammed over the CVS repositoryNate Williams1996-06-052-12/+1
| | | | | | | | | | | | | | | | to fix the mega-commits spamming. pst 96/05/29 20:09:25 Modified: secure/usr.bin/telnet Makefile main.c Log: Remove obsolete SOCKSv4 support Submitted by: pst Obtained from: A mirrored CVS repository that will disappear next SUP Notes: svn path=/head/; revision=16150