aboutsummaryrefslogtreecommitdiffstats
path: root/security/ssh2
Commit message (Collapse)AuthorAgeFilesLines
* - Cast the arguments of ssh_conn_send_channel_data_type() andmarius2006-08-2813-9/+220
| | | | | | | | | | | | | | | | | | | | ssh_encode_{array_alloc,buffer}() calls as appropriate in order to fix argument size problems on 64-bit platforms and that manifest themselves on amd64 and ia64. [1] - Allow the tcsetattr(3) calls in ssh_rl_{restore,set}_tty_modes_for_fd() to be interrupted by signal. This fixes occasional problems when connecting to a host for the first time. - Use the base zlib instead of the one shipping with SSH; although the latter has an enhancement allowing a minor SSH-specific optimization, using the base one has the benefit of not needing to track security vulnerabilities of zlib in this port (SSH 3.2.9.1 ships with zlib 1.1.4 which is not know to be vulnerable though). - Try to make the description of the WITHOUT_X11 option of the port Makefile to be more sentence-like. PR: 98016 [1] Approved by: netchild Obtained from: NetBSD [1]
* Add a patch which fixes a format string vulnerability in the SFTP server.marius2006-03-052-1/+22
| | | | | | Submitted by: Jarkko Santala <jake@iki.fi> Approved by: portmgr (erwin) Security: http://vuxml.freebsd.org/594ad3c5-a39b-11da-926c-0800209adf0e.html
* - Switch to a rc.d startup script.marius2006-02-208-93/+114
| | | | | | | | | | | | - Move the generation of the host key (if not present) from the package/ port installation to the startup script in order to be in line with what the base OpenSSH and the OpenSSH-portable port do. - Flush stdout when updating the transfer progress bar of sftp2 and scp2 so the info displayed is up to date. [1] - Remove obsolete USE_REINPLACE, remove trailing white space in Makefile. PR: 91262 [1] Approved by: netchild
* SHA256ifyedwin2006-01-241-0/+1
| | | | Approved by: krion@
* Replace ugly "@unexec rmdir %D... 2>/dev/null || true" with @dirrmtryedwin2006-01-221-3/+3
| | | | | Approved by: krion@ PR: ports/88711 (related)
* Remove obsolete mastersites.linimon2005-10-071-6/+0
| | | | | Source: distfile survey Approved by: maintainer
* - Add the X_WINDOW_SYSTEM={xorg,xfree86-4,xfree86-3} variable to bsd.port.mk,anholt2004-07-241-4/+2
| | | | | | | | | | | | and make XFREE86_VERSION map to it. XFREE86_VERSION is now deprecated. - Make xorg the default X_WINDOW_SYSTEM on -current. - Add several new X_*_PORT variables which point to various pieces of X11 based on the setting of X_WINDOW_SYSTEM, and make ports use them. - Add information to CHANGES about how to handle the transition. PR: ports/68763 Approved by: portmgr (marcus) Approved by: re (scottl)
* - Register dependency on x11/XFree86-4-clients for xauth(1).netchild2004-04-231-1/+8
| | | | | | | | - Make configure explicitly look in X11BASE/bin for xauth(1) in order to also catch non-standard locations. Submitted by: maintainer (marius) Approved by: portmgr (marcus)
* Use the @FreeBSD.org address of the maintainer.netchild2004-04-201-1/+1
| | | | Approved by: marius
* - Display the available build knobs via a pre-everything target.netchild2004-04-201-4/+34
| | | | | | | | | | - Remove the autodetection for X11 support and the WITH_X11 knob, instead always build with X11 support and add a WITHOUT_X11 knob. Together with an additional ssh2-nox11 slave port this allows easier handling of these two variants and to have pre-compiled packages for both (ssh2 with X11 support depends on X11 libraries). Submitted by: maintainer (marius)
* Add SIZE info.netchild2004-03-271-0/+1
| | | | Submitted by: trevor via maintainer
* ---snip---netchild2004-01-253-2/+35
| | | | | | | | | | | | | | | | | | | | | | | Improve Kerberos support in ssh2: - Change the WITH_KERBEROS knob into a WITHOUT_KERBEROS knob so kerberized ssh2 automatically is built when MIT Kerberos is installed, unless the WITHOUT_KERBEROS knob is defined. - Check for a library unique to MIT Kerberos to make sure it's not Heimdal that KRB5_HOME accidentally points to. - Add dependency on security/krb5 when built with Kerberos support. - When compiled with Kerberos support also turn it on by default in client and server config files and set "PermitRootLogin" to "nopwd" to only allow those with root tickets declared in ~root/.k5login" to login as root. [1] Ssh2 now should work out of the box in an environment using MIT Kerberos. Submitted by: Peter Losher <Peter_Losher@isc.org> [1] (kerberos-patch-*) Tested by: Peter Losher <Peter_Losher@isc.org> ---snip--- Submitted by: maintainer Strange commit log formatting to prevent ambiguous "Submitted by" lines by: committer
* HEADS-UP: Traditionally this port automatically installs a start-up script fornetchild2004-01-0417-117/+839
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | sshd2 unless it detects an entry for ssh in /etc/inetd.conf. As there are three ways to automatically start sshd2 and /etc/rc.conf is the simplest one (at least on FreeBSD 4, with rcNG once /etc/rc.d/sshd is fixed to not be tailored to the base sshd) this version of the port is the last one to do so. Beginning with next version it will only install a sample start-up script. To prevent foot shooting when updating to the next version this port won't remove an existing start-up scripting on deinstall. Please see also the pkg-message that gets displayed on installation. - Update to 3.2.9.1. This is _not_ a security update. For the non-commercial version the only change worth mentioning since 3.2.5 is the addition of the config option "DisableVersionFallback", see sshd2_config(5) for further details. - Use sites from the official list of mirrors for MASTER_SITES. - Adjust COMMENT to justify why this port is security/ssh2, not security/ssh3. - Revise list of installed documentation. No longer install MANIFEST (list of source files) and INSTALL, install RFCs referenced in sshd2_config(5) and HOWTO.anonymous.sftp (patched to better fit FreeBSD). - Remove WITH_STATIC_SFTP knob. Using the internal sftp-server instead of the external (static) one is much simpler to set up and maintain (using the external one requires to install a copy of it in the home directory of the anonymous sftp user which has to be manually updated when installing a newer version of the port). - Remove WITHOUT_TCPWRAP knob, libwarp is part of FreeBSD since 3.2. - Install examples scripts for the ExternalAuthorizationProgram and AuthKbdInt.Plugin config options in EXAMPLESDIR. See sshd2_config(5) for further information. - Replace references to /etc/ssh2/* in config files with PREFIX/etc/ssh2/*. - Add a pkg-message displaying the different methods to automatically start sshd2. - Switch to the start-up script for Solaris which is part of the tarball, it handles the name of the pidfile better. - Fix detection of X11 headers, this enables compilation with support for X11 SECURITY extension. See TrustX11Applications in ssh2_config(5) for further information. - Add a test target to the Makefile of the port, the tests seem a bit outdated and buggy but it's enough to e.g. do a bit of speed comparison when building with different compilers. - Minor changes and clean-up (sort pkg-plist, don't add /usr/local/lib to the library search path when compiling, etc.). Revive some local modifications lost with the update to 3.1.0: - Use login_cap(3)/login_class(3) facilities to set environment variables, prority and shell, get motd, copyright, hushlogin and nologin, respect ignorenologin and requirehome. This changes are roughly based on former patch-ah and patch-ai and patches of security/openssh. - Don't print "No mail.", it's not FreeBSD login style. Submitted by: maintainer
* Rename PORTDOCS to MYPORTDOCS to avoid a conflict with the recently addedmarcus2003-11-071-2/+2
| | | | | | bsd.port.mk macro. Submitted by: Oliver Eikemeier <eikemeier@fillmore-labs.com>
* - add CONFLICTSdinoex2003-10-141-0/+1
| | | | | Submitted by: eikemeier@fillmore-labs.com Approved by: kris
* Fix plist.netchild2003-07-071-10/+10
| | | | | | No PORTREVISION update because of the short timeframe between the commits. Submitted by: maintainer
* Update to 3.2.5:netchild2003-07-074-42/+80
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixed a critical security bug with RSA signature verification. Mitigating factors: DSA is used by default (not vulnerable). Also, the attack requires that attacker has the public key and the attacker needs to precompute the signature data so, that it looks like a valid PKCS#1 signature. This is a non-trivial task to perform without the private key. Nonetheless, all users should update their servers and clients as soon as convenient. Workarounds are to not use RSA keys as host keys (though connecting to existing hosts with RSA hostkeys poses a serious risk with a vulnerable client), and disabling publickey authentication. Update your clients and servers. Update MASTER_SITES, remove sites that are down or no langer carry ssh2 and add some new. - Turn Kerberos and group writeability support into knobs so one hasn't to edit the Makefile. - Remove dependency on security/tcp_wrapper for tcp-wrapper support on systems < FreeBSD 4.0, that port is no longer persistent. - Fix pkg-plist for WITH_STATIC_SFTP case. - Replace referneces to /etc/ssh2/* in man pages with references to PREFIX/etc/ssh2/* in order to better fit for FreeBSD. - Replace "$(ETCDIR)" in ssh_dummy_shell.out with PREFIX/etc. - Remove duplicated mechanism for generating the host key if an old one isn't found in the post-install target in the Makefile of the port, this is already done by the generate-host-key target in WRKSRC/apps/ssh/Makefile. - Fix differences between the install action done when installing the package versus installing the port. I.e. make the package create the host key with what ever bits ssh-keygen2 defaults to (currently 2048) instead of 1024 bits, copy over the configuration files for ssh2 and sshd2 from the examples if not already existent and create the directories for the global host keys and known hosts files. - Add some foo to pkg-plist to remove as much as possible from PREFIX/etc/ssh2, i.e. configuration files that don't differ from the corresponding examples and empty directories. Inform the user to remove what's left over if any. - Use _PATH_STDPATH instead of _PATH_DEFPATH so that the default PATH gets set to "/usr/bin:/bin:/usr/sbin:/sbin:PREFIX/bin" instead of "/usr/bin:/bin:PREFIX/bin". Using _PATH_STDPATH is consistent with OpenSSH and seems more usefull. One might want to patch ssh2 to also use login_cap(3) so that e.g. PATH gets picked up from whatever is defined in /etc/login.conf. - Change MAINTAINER. - Replace "share/doc/ssh2" with %%DATADIR%% in pkg-plist. Submitted by: Marius Strobl <marius@alchemy.franken.de> Approved by: maintainer
* Update port: security/ssh2 3.2.2 -> 3.2.3edwin2003-02-243-19/+13
| | | | | PR: ports/48542 Submitted by: Lars Eggert <larse@isi.edu>
* De-pkg-comment.knu2003-02-212-1/+1
|
* 1.) If WITH_STATIC_SFTP is defined, ssh-chrootmgr works.ijliao2003-01-032-7/+13
| | | | | | | | | | 2.) If libX11.a exists and xauth not, the build of ssh2 fails. This patch fix this. 3.) ssh2/files/sshd.sh looks for the wrong pid file in /var/run. This patch fix this and adds 2> /dev/null to the sshd2 startup PR: 46012 Submitted by: maintainer
* upgrade to 3.2.2ijliao2003-01-032-2/+2
| | | | | PR: 45876 Submitted by: maintainer
* Update to 3.2.0pat2002-06-193-7/+3
| | | | | PR: 39491 Submitted by: maintainer
* Update to 3.1.2 which fixes a recent security problem described at:petef2002-05-292-3/+2
| | | | | | | http://www.ssh.com/products/ssh/advisories/authentication.cfm PR: 38592 Submitted by: maintainer
* Oops, ".include <bsd.port.pre.mk>" line must be placed here.sada2002-05-171-2/+2
|
* Install default config files as *.sample instead of overwriting existing ones.sada2002-05-172-25/+46
| | | | | | | | Note: The PR includes diffs to cope with WITHOUT_X11 env, but this was already committed by knu-san. So I just added CONFIGURE_ARGS line, please verify it. PR: ports/35385 Submitted by: maintainer
* ssh_askpass2 is built only when X11 is installed. Supportknu2002-04-022-1/+9
| | | | | | | {WITH,WITHOUT}_X11 and detect ${X11BASE}/lib/libX11.a. Reported by: bento Obtained from: security/ssh (partly)
* - Update to 3.1.0.knu2002-02-2214-326/+45
| | | | | | | | | | | PR: ports/34740 Submitted by: larse@ISI.EDU - Add %%PORTDOCS%% to pkg-plist. - Assign MAINTAINER to the submitter. Requested by: issei (previous MAINTAINER)
* Remove myself from MAINTAINERissei2002-02-161-1/+1
|
* Remove extra file from pkg-plist to fix package buildingdwcjr2001-09-141-1/+0
|
* Unrestrict to match the ssh port.obrien2001-02-171-1/+1
|
* Don't install etc/rc.d/sshd.sh if sshd is being started from inetd.conf.steve2000-10-301-1/+3
| | | | | | PR: 15691 Submitted by: Roger Marquis <marquis@roble.com> Reviewed by: maintainer
* Upgrade to ssh-2.3.0.kris2000-09-0215-152/+109
| | | | | PR: ports/20869 Submitted by: Issei Suzuki <issei@issei.org> (Maintainer)
* Remove redundant/inappropriate CATEGORIES. People need to start readingwill2000-06-021-1/+1
| | | | the Porter's Handbook. :-)
* Update to version 2.1.0pl2.steve2000-05-2912-100/+119
| | | | | PR: 18620 Submitted by: maintainer
* Correct whitespace introduced during PORTNAME conversion and portlintmharo2000-04-211-3/+3
|
* Standardize all user defined options to the booleans WITH_FOO andreg2000-04-171-16/+14
| | | | | | | WITHOUT_FOO. Begin the process of reserving these prefixes for user defined options. No comment by: ports
* Sorry to everyone, the commits previously broke installing for these ports.will2000-04-141-1/+1
| | | | | | | | Thanks to those who reported this. PRs: 17927, 17937 Submitted by: Keith Davey <redlance@primenet.com> maintainer (ssh2)
* Update with the new PORTNAME/PORTVERSION variablescpiazza2000-04-101-3/+3
|
* Add better sshd startup scripts; specifically, allow restarting andwill2000-04-062-2/+29
| | | | | | | | | | | | | stopping the server. Martti's submission did not include -h, which I added because if I had added the scripts the way he submitted them, the server wouldn't be started on startup. PR: 10196 Submitted by: Martti Kuparinen <martti.kuparinen@ericsson.com> Reviewed by: kris (partially) No response: maintainers (PR opened February 22, 1999)
* Support OpenSSH in the base system as the ssh1 component.obrien2000-03-111-2/+10
|
* Make pkgname match the directory the port lives in, and to reduce collsionobrien2000-01-291-2/+3
| | | | | | | with the ssh1 port. Asked for by: several on the ports list over time [the maintainer has not responded to multiple emails asking about this change]
* remove --prefix=${PREFIX} when GNU_CONFIGURE=yes and other minor cleanupsmharo1999-12-252-12/+2
| | | | | PR: 14759 Submitted by: Jeremy Lea <reg@shale.csir.co.za>
* Forgot a linecpiazza1999-11-261-0/+1
|
* Patches are now available from www.ssh.org/patchescpiazza1999-11-261-0/+3
| | | | Submitted by: Issei Suzuki <issei@jp.freebsd.org>
* Removed an obsoleted patch.sada1999-11-251-4/+0
| | | | | PR: 15059 Submitted by: Maintainer
* Path for problem with tty ownership with chflags and chown in BSD 4.4cpiazza1999-09-032-0/+5
| | | | | | | | variants. Fixes a security bug in tty allocation. PR: 13515 PR: 13536 Submitted by: Issei Suzuki <issei@jp.FreeBSD.org> (ssh2 maintainer)
* FreeBSD.ORG -> FreeBSD.orgmharo1999-08-311-1/+1
| | | | | Prompted by PR: 13476, 13477 Submitted by: KATO Tsuguru
* $Id$ -> $FreeBSD$peter1999-08-311-1/+1
|
* chmod -> ${CHMOD}mharo1999-08-231-16/+10
| | | | chown -> ${CHOWN}
* #4/4 enforcing Caps, no periodhoek1999-06-271-1/+1
| | | | | | | | | | | | [Has anyone figured-out what makes the number 393 so interesting to PW, now?] I wonder what was going through Jordan's head during his infamous $Id$-smashing commit. Before I forget.... Thanks to naddy@mips.rhein-neckar.de (Christian Weisgerber) for prompting this commit. See msg-id: 7geokh$tje$1@mips.rhein-neckar.de
* Add comment that USE_TCPWRAP ==> YES if /usr/include/tcpd.h exists.obrien1999-06-251-2/+2
|
* upgrade to 2.0.13ache1999-06-1911-62/+70
| | | | | | | XXXtgetent from original PR fixed PR: 12279 Submitted by: Issei Suzuki <issei@issei.org>
* Add WWW: to DESCR filesmharo1999-05-031-1/+1
|
* detect/use -current libwrapache1999-04-031-1/+5
|
* Re-order definition of a couple of variables so the ssh1 dependencysteve1999-03-151-10/+11
| | | | | | | is picked up correctly. PR: 10577 Submitted by: maintainer
* Use setusercontext() now to set all sort of login things including env.ache1999-02-063-5/+138
| | | | | | variables and priority! Enable light debugging for compatibility with -v option Don't print "No mail." - not in BSD login style.
* remove lines which do chmod -x on recently installed rc.d/sshd.shache1999-02-061-4/+1
|
* upgrade to 2.0.12ache1999-02-056-20/+42
|
* remove curses bloatache1999-01-291-0/+20
|
* 1. Update base ssh2 version from 2.0.9 to 2.0.11obrien1998-12-017-33/+79
| | | | | | | | | | | | | | | | | Ssh 2.0.9 has bugs abount updating utmp/wtmp file. 2. Now you can compile ssh2 to support TCP_Wrapper (security/tcp_wrapper) when you define USE_TCPWRAP=YES 3. Fix typo in MASTER_SITES (Thanks to Chris Piazza <norn@home.net>) 4. Use /usr/lib/libz.so.* instead of libz in ssh2 source file. 5. Delete some obsolute pathes. PR: ports/8916 Submitted by: issei@jp.FreeBSD.ORG
* fix typo in a URLobrien1998-12-011-2/+2
|
* Oops, I forgot to remove old patches...kuriyama1998-11-236-598/+0
|
* Secure shell client and server (remote login program).kuriyama1998-11-236-318/+172
| | | | | PR: ports/8204 Submitted by: Issei Suzuki <issei@jp.FreeBSD.ORG>
* Mark this broken as it awaits upgrade after repository copy.asami1998-11-231-1/+3
|
* add official kerberos patchache1998-11-101-0/+286
|
* configure with "--without-x" if X11BASE/bin/xauth is missing.obrien1998-10-301-1/+5
| | | | Requested by: Studded@gorean.org
* Um, be careful when you copy stuff around -- change the secondasami1998-10-081-2/+2
| | | | | | CONFIGURE_ARGS defintion to use "+=" so it won't override the first. While I'm here, GNU_CONFIGURE implies --prefix=${PREFIX} so take it out.
* Better depends.jkh1998-10-081-2/+3
| | | | Also Suggested by: asami
* Clean this file up a bit.jkh1998-10-081-7/+5
| | | | Suggested by: asami
* Properly reference the rsaref sources, which are required during the buildjkh1998-10-082-7/+10
| | | | | of ssh now. If anyone knows of a way of making the build dependency here less gross, I'm listening! :)
* Depend on ports collection rsaref, since we have it now alreadyjkh1998-10-081-8/+3
| | | | available "broken out."
* Make RSA stuff work on alpha (or on any other 64bit architecture)dima1998-09-261-1/+2
|
* tcp_wrapper is now converted to ELF. While I'm here, fix smail Makefile:asami1998-09-171-2/+2
| | | | | libwrap is a shared library so it should be LIB_DEPENDS, and delete some spaces and tab-only lines.
* Use ${PERL5} wherever appropriate. Largely untested; hope my eyeballasami1998-09-161-4/+3
| | | | | | checks haven't missed anything. Submitted by: dima
* Repair a linkage problem, whereis the ssh port was trying tochuckr1998-09-141-186/+121
| | | | | specify the location of system libs. Reviewed by: Mark Murray, David O'Brien
* The pkg_create(1) handles symlinks correctly. Delist manpages.hoek1998-08-202-42/+20
|
* Use ${PERL_VERSION} on perl version.vanilla1998-08-171-4/+4
| | | | Reminded by: asami
* Change perl version to 5.00502.vanilla1998-08-171-4/+4
|
* If KRB5_HOME is defined, compile ssh with krb5 support.dima1998-08-021-1/+5
|
* Fix up slogin1.1 -> ssh1.1 symlink too.asami1998-07-261-1/+3
|
* upgrade to 1.2.26 for security improvementsimp1998-07-122-3/+3
|
* Do not install slogin1.1 manpage, no such programache1998-06-121-3/+1
|
* Fix all *1 linksache1998-06-121-16/+30
|
* 1.2.22 -> 1.2.25dima1998-06-125-436/+176
| | | | | | | Somebody needs to go through patch-af to check it, since I'm not sure about some of the stuff. This version fixes a security flaw in previous version.
* Two "/usr/local" --> ${PREFIX}obrien1998-05-231-2/+2
|
* Allow use of Phil Karn's patchkit that implements DES/DES3 inmph1998-05-222-1/+11
| | | | | | | | fast assembly code. Patchfile must be manually placed in DISTDIR, as described in the Makefile. PR: 6446 Submitted by: Jonathan Hanna <pangolin@rogers.wave.ca>
* Further adjustments to english.jkh1998-03-101-4/+4
|
* Clean up and clarify some english user prompts in the Makefile whichjkh1998-03-101-6/+6
| | | | have been bugging me for many months. :)
* Fix rare DES empty passwords bugache1998-02-141-0/+13
|
* Don't print "No mail" for FreeBSD , just print nothingache1998-01-221-3/+15
|
* Fix .hushlogin supportache1998-01-221-48/+74
| | | | | | Remove FreeBSD mail check, now done elsewhere in the code Use bsdi code to warn about expired/changed passwords Move misplaced login_close up
* Upgrade to ssh 1.2.22. Please send problems with the upgrade to me.imp1998-01-213-426/+359
| | | | | | | 1.2.22 fixes a security hole with ssh-agent, so users are encouraged to upgrade. OK'd by: Torsten Blum (torstenb@freebsd.org)
* Merge in change requested by theo:imp1997-12-251-1/+1
| | | | | | OpenBSD and FreeBSD now both use rresvport. This is a nop for FreeBSD, but for OpenBSD this picks random port numbers. Submitted by: deraadt@cvs.openbsd.org
* Make the SOCKS support from USE_SOCKS play nicely with the socks5 port.imp1997-12-251-2/+2
|
* Change to use perl5.004_04markm1997-11-211-4/+4
|
* ftp.dsi.unimi.it -> idea.sec.dsi.unimi.itdima1997-11-111-2/+2
|
* fixed little typo.rse1997-10-101-2/+2
|
* Upgrade to 1.2.21torstenb1997-09-163-65/+67
|
* mv -> ${MV}.max1997-09-121-2/+2
|
* Update name of perl executable in dependencies to "perl5.00401".asami1997-07-181-4/+4
| | | | | Use USE_PERL5 when appropriate (i.e., defined in both BUILD_DEPENDS and RUN_DEPENDS).
* typo in commentadam1997-07-011-2/+2
|
* Handle expired and changed password timeouts nowache1997-06-111-19/+70
|
* Don't remove the host key on pkg_delete. It is irreplaceable.jdp1997-06-021-1/+0
|
* Upgrade all ports requiring perl5.003 to perl5.004jfitz1997-05-241-4/+4
| | | | Remove p5-CGI.pm and p5-ExtUtils-Embed; they are now part of the perl5.004 distribution.
* login_getclass() -> login_getpwclass().davidn1997-05-111-2/+2
|
* Fix 3 error with login.confache1997-05-031-24/+38
| | | | | | | 1) pw->pw_class was always zero since not copied 2) login_getuserclass() used instead of login_getclass(), so default class always returned 3) env pointer can be redefined at the moment of setusercontext() call
* Update from ssh-1.2.19 to ssh-1.2.20. All patches applied still, I justpeter1997-04-258-84/+93
| | | | | | | | | regenerated them to fix the line numbers. Also, I added two commented out options in Makefile, one to tell sshd that a group writeable homedir is OK because all users are in their own group, and the other is to allow an unencrypted connection (which is dangerous since it can lead to compromise of keys), but on a secure network it's damn useful for backups etc.
* Add virtual category 'perl5'.wosch1997-04-201-2/+2
|
* Disable extended LOGIN_CAP $MAIL processing until it will be fixedache1997-04-171-1/+1
| | | | | properly. In old variant /var/mail/root was always checked instead of /var/mail/<user>
* Upgrade to 1.2.19ache1997-04-178-90/+163
|
* Back out previous patch, I got confused by an old sshd.conf filepst1997-04-011-2/+2
|
* Fix argument parsing loop in ssh-agent (original 1.2.18 bug)ache1997-04-011-0/+13
|
* Generate host key in /etc to match the portpst1997-04-011-2/+2
|
* Upgrade to 1.2.18ache1997-03-299-211/+209
|
* Add LOGIN_CAP abilitiesache1997-02-276-52/+294
| | | | Submitted by: davidn
* Make one of our changes for -current work on 2.1. In -current, rresvport()peter1996-12-271-1/+2
| | | | | | | ignores it's argument (it's meaningless, the kernel keeps the state), but 2.1.x use it. ssh was effectively giving a random port to 2.1. Originally noticed by: John Polstra <jdp@polstra.com>
* 1.2.16 --> 1.2.17adam1996-11-204-31/+34
| | | | (new agent forwarding protocol that is said to work this time)
* Use MAN? macros. CATEGORIES+= -> CATEGORIES.asami1996-11-181-5/+6
|
* Remove my ptys patch, because this code is unused, openpty is used insteadache1996-11-121-15/+35
| | | | | | Mimic login more closely now: 1) Put usual Copyright line 2) You have mail
* Use BSD naming convention for pty names, it fixes two problems:ache1996-11-121-0/+19
| | | | | 1) Too many false open syscalls on pty allocation 2) (more serious) ssh not use about half of available ptys
* Use system shared libgmp nowache1996-10-254-108/+213
|
* It fixes a really annoying errorache1996-10-181-0/+32
| | | | | | | | reporting bug which happens if the remote end uses tcp_wrappers to control sshd access (it says something like "read: no such file or directory" or "read: permission denied" instead of "connection closed"). I already sent it in to the ssh mailing list. Submitted by: fenner
* Upgrade to official 1.2.16ache1996-10-166-75/+104
| | | | Fix PLIST
* Oh my goodness! Satoshi is finally fed up and decided to "clean up"asami1996-10-101-1/+1
| | | | | | | | | | all the COMMENTs! No package names, no version numbers, no "this is absolutix-3.1.2" type comments that have zero information contents. Now, without any bad examples to follow, nobody has an excuse to import a port with those kind of comments. :) Phew! 238 ports modified!
* Remove LIB_DEPENDS on libz, it's in /usr/src now.asami1996-08-191-2/+1
|
* Have ssh use rresvport() to get a privileged socket instead of doing itpeter1996-08-121-0/+26
| | | | itself. This means it obeys the portrange sysctl's.
* Several fixes/improvements :-peter1996-08-082-5/+14
| | | | | | | | | | | | | | | | - protect the secret RSA etc/ssh_host_key. It is now generated on install (either by pkg_add or make install) if not already present and is not ever added to a package since it's your host's credentials. It should not be removed on pkg_delete, since you are in big trouble if you did this (for example) pkg_delete ssh-1.2.14; pkg_add ssh-1.2.15.tgz. - fix the broken manpage symlink when compressing man pages (slogin.1 has been causing /etc/weekly to generate cron messages) - zlib 1.0.4 is now "blessed" again, the ssh working sources now use this instead of v0.95. The decompression problem was fixed in either 1.0.3 or 1.0.4. Also, the current version of cvs uses zlib 1.0.4 as well.. - perl5.002 -> perl5.003 Reviewed by: torstenb
* Turn off the unconditional use of USE_PIPES as it prevents rdist from usingpeter1996-08-081-0/+30
| | | | | | | ssh for transport. FreeBSD does not have the implementation bugs that some other systems appear to have, this option only hurts us. Reviewed by: torstenb
* The checksum for the ssh tarball was out of date - fix it.jkh1996-07-291-1/+1
|
* If using socks, make sure you find socks librarypst1996-07-231-7/+5
|
* Back out andrews change - 1.2.14.1 is not an official ssh release.torstenb1996-07-185-87/+77
|
* Use += for USA_RESIDENT MASTER_SITESache1996-07-181-3/+2
|
* Upgrade to 1.2.14.1ache1996-07-165-75/+86
| | | | Misc bugfixes
* Add back checksum for rsaref2, used only while building in the US.asami1996-07-051-0/+1
| | | | | | | People, if you do a "make makesum" on a non-US machine, don't forget to add this line back before commiting it: MD5 (rsaref2.tar.gz) = 0b474c97bf1f1c0d27e5a95f1239c08d
* Remove reminder about host key generation, it autogenerated on installache1996-06-201-5/+1
|
* If hostname > UT_HOSTSIZE, write its numeric address instead to keepache1996-06-181-0/+24
| | | | valid information in utmp and lastlog
* Install an sshd.sh startup file.jkh1996-06-162-1/+9
|
* Path on master site has changedtorstenb1996-06-151-2/+2
|
* Return back to distributed libz 0.95ache1996-06-091-2/+1
| | | | | All libzs 0.99-1.0.2 produce deflate error on certain files (with ssh) I don't know, is it ssh error or libz error
* Update ssh-1.2.13 -> ssh-1.2.14peter1996-06-074-101/+53
| | | | | | | ssh-askpass no longer uses wish, so chop the make rules that attempt to locate it. Go further to try and protect the ssh_host_key, since it's critical to the operation and security of the machine.
* Update the hack for locating wish/wish4.0 to also look for wish4.1 nowpeter1996-05-251-3/+7
| | | | that we have that one too.
* Change NO_PACKAGE to RESTRICTED.asami1996-04-171-2/+2
|
* Auto-sense installed perl & wishache1996-03-251-3/+7
|
* Move perl depends under USE_PERLache1996-03-241-2/+12
|
* Check USE_WISH for YES value as other parts of Makefile doesache1996-03-211-2/+2
|
* Use wish only if USE_WISH defined.ache1996-03-211-2/+2
|
* Update for perl5.002markm1996-03-171-2/+2
|
* Use libz 1.0ache1996-02-201-2/+2
|
* Checksum for rsaref2.tar.gz. Only used if you are compiling this in USA.asami1996-02-191-0/+1
|
* Upgrade to 1.2.13ache1996-02-173-16/+16
|
* Fix patch typo.pst1996-02-071-1/+1
| | | | Found by: Andrzej Tobola <san@iem.pw.edu.pl>
* Upgrade to snapshot of ssh. 1.1.12a was recalled due to even worsepst1996-02-064-17/+77
| | | | | | | security problems. Also re-do the method we use for disconnecting ourselves from the supplied gmp and z libraries so that this can be maintained in the future (sigh!).
* Understands shared libwrap nowache1996-01-251-2/+3
|
* Autopick any wish present even wish4.0ache1996-01-251-9/+23
| | | | Autopick libwrap.a
* Damn. Forgot to include the makefile diffs in the last lot.markm1996-01-231-1/+2
| | | | Make the Makefile aware of libz dependancies.
* Remove ftp.funet.fi from master list, it not contains rsarefache1996-01-211-2/+1
| | | | | and not contains ssh in this directory. Another directory there have obsoleted ssh version.
* Add BUILD_DEPENDS of wish and perl5, both checked exactly in build processache1996-01-211-1/+3
|
* Upgrade to 1.2.12a (security bugfix)ache1996-01-213-8/+7
| | | | | Fix installation bug too (scripts not installed) Fix PLIST (missing files)
* Update ssh from 1.2.10 to 1.2.12.. This is for two reasons:peter1995-11-243-3/+6
| | | | | | 1) It eliminated the need for my horrible kludge patch-ad 2) 1.2.12 has data stream compression (like gzip). (I'm talking with the author about the remining three patches)
* Change category "networking" to "net".asami1995-11-221-2/+2
|
* two minor adjustments to ssh for freebsd specific issues:peter1995-11-211-0/+14
| | | | | | | | | | | patch-ac: call setsid() before setlogin() in the child (when emulating rsh) otherwise the setlogin() will fail when/if the proposed setlogin() changes go in. Otherwise it silently fails and may leave the login name of the user session as "root" (depending on how sshd was started). Without the proposed kernel change, it harmlessly sets the login name of the user's session. patch-ad: patch the #ifdef botch that stopped a ssh login from using and updating the lastlog file. This is because we have struct lastlog defined inside utmp.h rather than a lastlog.h include file like it was expecting.
* Add torstenb as maintainer.asami1995-11-091-1/+3
|
* Fix tcp_wrapper supportache1995-10-111-4/+5
|
* add "networking" to the categories listtorstenb1995-10-071-2/+2
|
* Ssh is a secure rlogin/rsh/rcp replacement with strong authenticationtorstenb1995-10-077-0/+246
(.rhosts together with RSA based host authentication, and pure RSA authentication) and improved privacy (all communications are automatically and transparently encrypted).