forked from openssh/openssh-portable
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- [email protected] 2003/06/02 09:17:34 [auth2-hostbased.c auth.c auth-options.c auth-rhosts.c auth-rh-rsa.c] [canohost.c monitor.c servconf.c servconf.h session.c sshd_config] [sshd_config.5] deprecate VerifyReverseMapping since it's dangerous if combined with IP based access control as noted by Mike Harding; replace with a UseDNS option, UseDNS is on by default and includes the VerifyReverseMapping check; with itojun@, provos@, jakob@ and deraadt@ ok deraadt@, djm@ - (djm) Fix portable-specific uses of verify_reverse_mapping too
- Loading branch information
Showing
16 changed files
with
91 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,17 @@ | ||
20030603 | ||
- (djm) Replace setproctitle replacement with code derived from | ||
UCB sendmail | ||
- (djm) OpenBSD CVS Sync | ||
- [email protected] 2003/06/02 09:17:34 | ||
[auth2-hostbased.c auth.c auth-options.c auth-rhosts.c auth-rh-rsa.c] | ||
[canohost.c monitor.c servconf.c servconf.h session.c sshd_config] | ||
[sshd_config.5] | ||
deprecate VerifyReverseMapping since it's dangerous if combined | ||
with IP based access control as noted by Mike Harding; replace with | ||
a UseDNS option, UseDNS is on by default and includes the | ||
VerifyReverseMapping check; with itojun@, provos@, jakob@ and deraadt@ | ||
ok deraadt@, djm@ | ||
- (djm) Fix portable-specific uses of verify_reverse_mapping too | ||
|
||
20030602 | ||
- (djm) Fix segv from bad reordering in auth-pam.c | ||
|
@@ -1648,4 +1659,4 @@ | |
save auth method before monitor_reset_key_state(); bugzilla bug #284; | ||
ok provos@ | ||
|
||
$Id: ChangeLog,v 1.2764 2003/06/03 00:14:28 djm Exp $ | ||
$Id: ChangeLog,v 1.2765 2003/06/03 00:25:48 djm Exp $ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
/* $OpenBSD: servconf.h,v 1.60 2003/05/15 01:48:10 jakob Exp $ */ | ||
/* $OpenBSD: servconf.h,v 1.61 2003/06/02 09:17:34 markus Exp $ */ | ||
|
||
/* | ||
* Author: Tatu Ylonen <[email protected]> | ||
|
@@ -112,7 +112,7 @@ typedef struct { | |
int max_startups_rate; | ||
int max_startups; | ||
char *banner; /* SSH-2 banner message */ | ||
int verify_reverse_mapping; /* cross-check ip and dns */ | ||
int use_dns; | ||
int client_alive_interval; /* | ||
* poke the client this often to | ||
* see if it's still there | ||
|
Oops, something went wrong.