summaryrefslogtreecommitdiffstats
path: root/crypto/openssh/packet.c
Commit message (Collapse)AuthorAgeFilesLines
* MFC r318242: Refine and update blacklist support in sshdlidl2017-05-171-1/+1
| | | | | | | | | | | | Adjust notification points slightly to catch all auth failures, rather than just the ones caused by bad usernames. Modify notification point for bad usernames to send new type of BLACKLIST_BAD_USER. (Support in libblacklist will be forthcoming soon.) Add guards to allow library headers to expose the enum of action values. Reviewed by: des Relnotes: yes Sponsored by: The FreeBSD Foundation
* MFC r305065: Add refactored blacklist support to sshdlidl2016-09-061-0/+2
| | | | | | | | | | | | | | | | | | Change the calls to of blacklist_init() and blacklist_notify to be macros defined in the blacklist_client.h file. This avoids the need for #ifdef USE_BLACKLIST / #endif except in the blacklist.c file. Remove redundent initialization attempts from within blacklist_notify - everything always goes through blacklistd_init(). Added UseBlacklist option to sshd, which defaults to off. To enable the functionality, use '-o UseBlacklist=yes' on the command line, or uncomment in the sshd_config file. Approved by: des Sponsored by: The FreeBSD Foundation
* Revert r301551, which added blacklistd(8) to sshd(8).gjb2016-06-241-6/+0
| | | | | | | | | | This change has functional impact, and other concerns raised by the OpenSSH maintainer. Requested by: des PR: 210479 (related) Approved by: re (marius) Sponsored by: The FreeBSD Foundation
* Add blacklist support to sshdlidl2016-06-071-0/+6
| | | | | | | | Reviewed by: rpaulo Approved by: rpaulo (earlier version of changes) Relnotes: YES Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D5915
* Upgrade to OpenSSH 7.2p2.des2016-03-111-160/+206
|\
* | Upgrade to OpenSSH 7.1p2.des2016-01-211-3/+4
| |
* | Upgrade to OpenSSH 7.0p1.des2016-01-201-1/+12
| |
* | Upgrade to OpenSSH 6.9p1.des2016-01-191-16/+34
|\ \ | |/
* | Upgrade to OpenSSH 6.8p1.des2016-01-191-1025/+1832
|\ \ | |/
* | Upgrade to OpenSSH 6.7p1, retaining libwrap support (which has been removeddes2016-01-191-18/+52
|\ \ | |/ | | | | | | | | upstream) and a number of security fixes which we had already backported. MFC after: 1 week
* | Retire the NONE cipher option.des2015-11-231-26/+0
| |
* | Remove /* $FreeBSD$ */ from files that already have __RCSID("$FreeBSD$").des2015-11-111-1/+0
| |
* | Upgrade to OpenSSH 6.6p1.des2014-03-251-8/+8
|\ \ | |/
* | Add a pre-merge script which reverts mechanical changes such as addeddes2014-03-241-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | $FreeBSD$ tags and man page dates. Add a post-merge script which reapplies these changes. Run both scripts to normalize the existing code base. As a result, many files which should have had $FreeBSD$ tags but didn't now have them. Partly rewrite the upgrade instructions and remove the now outdated list of tricks.
* | Upgrade to OpenSSH 6.5p1.des2014-01-311-15/+24
|\ \ | |/
* | MFV r257952:delphij2013-11-111-2/+2
| | | | | | | | | | | | | | | | Upgrade to OpenSSH 6.4p1. Bump VersionAddendum. Approved by: des
* | Upgrade to 6.3p1.des2013-09-211-24/+51
|\ \ | |/ | | | | Approved by: re (gjb)
* | Upgrade to OpenSSH 6.2p2. Mostly a no-op since I had already patcheddes2013-05-171-2/+2
| | | | | | | | the issues that affected us.
* | Silence "received disconnect" in the common case.des2013-04-141-2/+6
| |
* | Upgrade to OpenSSH 6.2p1. The most important new features are supportdes2013-03-221-41/+91
|\ \ | |/ | | | | for a key revocation list and more fine-grained authentication control.
* | Upgrade OpenSSH to 6.1p1.des2012-09-031-12/+7
| |
* | Upgrade to OpenSSH 5.9p1.des2011-10-051-16/+28
|\ \ | |/ | | | | MFC after: 3 months
* | Add support for dynamically adjusted buffers to allow the full use ofbrooks2011-08-031-0/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the bandwidth of long fat pipes (i.e. 100Mbps+ trans-oceanic or trans-continental links). Bandwidth-delay products up to 64MB are supported. Also add support (not compiled by default) for the None cypher. The None cypher can only be enabled on non-interactive sessions (those without a pty where -T was not used) and must be enabled in both the client and server configuration files and on the client command line. Additionally, the None cypher will only be activated after authentication is complete. To enable the None cypher you must add -DNONE_CIPHER_ENABLED to CFLAGS via the make command line or in /etc/make.conf. This code is a style(9) compliant version of these features extracted from the patches published at: http://www.psc.edu/networking/projects/hpn-ssh/ Merging this patch has been a collaboration between me and Bjoern. Reviewed by: bz Approved by: re (kib), des (maintainer)
* | Upgrade to OpenSSH 5.8p2.des2011-05-041-16/+37
|\ \ | |/
* | Upgrade to OpenSSH 5.6p1.des2010-11-111-2/+2
|\ \ | |/
* | Upgrade to OpenSSH 5.3p1.des2009-10-011-401/+572
|\ \ | |/
* | Upgrade to OpenSSH 5.2p1.des2009-05-221-7/+68
|\ \ | |/ | | | | MFC after: 3 months
* | Upgrade to OpenSSH 5.1p1.des2008-08-011-25/+123
|\ \ | |/ | | | | | | | | | | | | | | | | I have worked hard to reduce diffs against the vendor branch. One notable change in that respect is that we no longer prefer DSA over RSA - the reasons for doing so went away years ago. This may cause some surprises, as ssh will warn about unknown host keys even for hosts whose keys haven't changed. MFC after: 6 weeks
| * Properly flatten openssh/dist.des2008-07-221-1609/+0
| |
| * Revert part of 180714 - the intent was to flatten dist, not to nuke it.des2008-07-221-0/+1609
| |
| * Flatten the OpenSSH vendor tree for 3.x and newer.des2008-07-221-1609/+0
|/
* Vendor import of OpenSSH 4.4p1.des2006-09-301-25/+55
|
* Vendor import of OpenSSH 4.3p1.des2006-03-221-2/+2
|
* Vendor import of OpenSSH 4.2p1.des2005-09-031-5/+58
|
* Vendor import of OpenSSH 4.0p1.des2005-06-051-1/+5
|
* Vendor import of OpenSSH 3.9p1.des2004-10-281-27/+26
|
* Vendor import of OpenSSH 3.8p1.des2004-02-261-14/+8
|
* Vendor import of OpenSSH 3.7.1p2.des2004-01-071-34/+147
|
* Add a "return" that was missing from 3.6.1p1. Since it's been fixed indes2003-06-241-0/+1
| | | | the OpenSSH-portable CVS repo, I'm committing this on the vendor branch.
* Vendor import of OpenSSH-portable 3.6.1p1.des2003-04-231-38/+26
|
* Vendor import of OpenSSH-portable 3.5p1.des2002-10-291-2/+11
|
* Vendor import of OpenSSH 3.4p1.des2002-06-291-7/+8
|
* Vendor import of OpenSSH 3.3p1.des2002-06-271-3/+14
|
* Vendor import of OpenSSH 3.3.des2002-06-231-16/+129
|
* Vendor import of OpenSSH 3.1des2002-03-181-275/+184
|
* Say "hi" to the latest in the OpenSSH series, version 2.9!green2001-05-041-157/+244
| | | | Happy birthday to: rwatson
* Import of OpenSSH 2.3.0 (virgin OpenBSD source release).green2000-12-051-39/+33
|
* Initial import of OpenSSH post-2.2.0 snapshot dated 2000-09-09kris2000-09-101-11/+31
|
* Initial import of OpenSSH v2.1.kris2000-05-151-58/+496
|
* Vendor import of OpenSSH.markm2000-02-241-0/+845
OpenPOWER on IntegriCloud