search for: ssh_version

Displaying 20 results from an estimated 37 matches for "ssh_version".

Did you mean: zsh_version
2023 Aug 24
8
[Bug 3608] New: ssh version is different with sshd version
https://bugzilla.mindrot.org/show_bug.cgi?id=3608 Bug ID: 3608 Summary: ssh version is different with sshd version Product: Portable OpenSSH Version: 9.3p2 Hardware: amd64 OS: Linux Status: NEW Severity: normal Priority: P5 Component: sshd Assignee: unassigned-bugs at
2015 May 23
5
Name based SSH proxy
...nner(int connection_out, int minor1) +send_client_banner(int connection_out, int minor1, const char *host) { /* Send our own protocol version identification. */ if (compat20) { - xasprintf(&client_version_string, "SSH-%d.%d-%.100s\r\n", - PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2, SSH_VERSION); + xasprintf(&client_version_string, + "SSH-%d.%d-%.100s {\"SNI\": \"%.133s\"}\r\n", + PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2, SSH_VERSION, host); } else { xasprintf(&client_version_string, "SSH-%d.%d-%.100s\n", PROTOCOL_MAJOR_1, m...
2004 Nov 16
8
[Bug 954] configure w/PAM & tcp_wrapper crashes on Irix 6.5
http://bugzilla.mindrot.org/show_bug.cgi?id=954 Summary: configure w/PAM & tcp_wrapper crashes on Irix 6.5 Product: Portable OpenSSH Version: 3.8.1p1 Platform: MIPS OS/Version: IRIX Status: NEW Severity: normal Priority: P2 Component: Build system AssignedTo: openssh-bugs at mindrot.org
2020 Feb 16
3
'ssh -V' still shows 'OpenSSH_8.1' with version 8.2
Hi, I just built version 8.2 and it seems like the version has not been bumped. # ssh -V OpenSSH_8.1, LibreSSL 3.0.2 #
2002 Mar 07
0
OpenSSH-3.1p1 AIX packaging bug [patch]
Hello, The change in release number broke some some assumptions in buildbff.sh: * SSH_VERSION was always on the last line of version.h * The OpenSSH version number would give a valid installp version (which must have four parts). Thanks to Mandar Mirashi for pointing this out. Anyone affected can try the following patch which works for me and hopefully will behave sanely in future. -...
2002 Mar 08
1
buildpkg.sh in OpenSSH_3.1p1
Hi, version.h in OpenSSH_3.1p1 has an Newline after #define SSH_VERSION "OpenSSH_3.1p1" so tail -1 ../../version.h | sed -e 's/.*_\([0-9]\)/\1/g' | sed 's/\"$//' does give back a version number regards Oliver -- Oliver F?nger - Phone +49 201 8501 319 Cityweb Network GmbH & Co. KG Friedrichstr. 12 - Fax +49 201 8501 104 45...
2011 May 04
0
PATCH: update version to p2 in version.h
--- a/version.h +++ a/version.h @@ -2,5 +2,5 @@ #define SSH_VERSION "OpenSSH_5.8" -#define SSH_PORTABLE "p1" +#define SSH_PORTABLE "p2" #define SSH_RELEASE SSH_VERSION SSH_PORTABLE
2014 Apr 20
2
bad bignum encoding for curve25519-sha256@libssh.org
...============================= RCS file: /var/cvs/openssh/version.h,v retrieving revision 1.82 diff -u -p -r1.82 version.h --- version.h 27 Feb 2014 23:01:54 -0000 1.82 +++ version.h 20 Apr 2014 03:35:15 -0000 @@ -1,6 +1,6 @@ /* $OpenBSD: version.h,v 1.70 2014/02/27 22:57:40 djm Exp $ */ -#define SSH_VERSION "OpenSSH_6.6" +#define SSH_VERSION "OpenSSH_6.6.1" #define SSH_PORTABLE "p1" #define SSH_RELEASE SSH_VERSION SSH_PORTABLE Index: compat.c =================================================================== RCS file: /var/cvs/openssh/compat.c,v retrieving revision 1...
2019 Feb 20
5
[Bug 2971] New: Prevent OpenSSH from advertising its version number
...commonly for interoperability and it is also not good idea to remove it. OpenSSH software version advertising is part of the compiled code and do not have configuration options to alter or suppress them. You have to modify the below code and recompile the software. src/ssh/version.h -- #define SSH_VERSION "OpenSSH_7.6" ++ #define SSH_VERSION " " // length should be > 0 It will be good if you provide that option in sshd configuration file. Thanks & Regards, Nagesh -- You are receiving this mail because: You are watching the assignee of the bug.
2019 Feb 20
5
[Bug 2971] New: Prevent OpenSSH from advertising its version number
...commonly for interoperability and it is also not good idea to remove it. OpenSSH software version advertising is part of the compiled code and do not have configuration options to alter or suppress them. You have to modify the below code and recompile the software. src/ssh/version.h -- #define SSH_VERSION "OpenSSH_7.6" ++ #define SSH_VERSION " " // length should be > 0 It will be good if you provide that option in sshd configuration file. Thanks & Regards, Nagesh -- You are receiving this mail because: You are watching the assignee of the bug.
2004 Jan 07
13
[Bug 764] fully remove product and version information
...ftwareVersion VersionComments The first three are designed to allow (crazy) administrators to override the compiled defaults for the software. The last one is designed to provide distribution maintainers the ability to tack on additional version information, if they so choose, instead of patching SSH_VERSION. ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee.
2018 Dec 10
2
[PATCH] cleanup of global variables server/client_version_string in sshconnect.c
...nnection_out, int minor1, char **client_version_stringp) { /* Send our own protocol version identification. */ - xasprintf(&client_version_string, "SSH-%d.%d-%.100s\r\n", + xasprintf(client_version_stringp, "SSH-%d.%d-%.100s\r\n", PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2, SSH_VERSION); - if (atomicio(vwrite, connection_out, client_version_string, - strlen(client_version_string)) != strlen(client_version_string)) + if (atomicio(vwrite, connection_out, *client_version_stringp, + strlen(*client_version_stringp)) != strlen(*client_version_stringp)) fatal("write: %.1...
2004 Jan 19
3
Security suggestion concering SSH and port forwarding.
Hi, sorry if it is the wrong approuch to suggest improvments to OpenSSH, but here comes my suggestion: I recently stumbled upon the scponly shell which in it's chroot:ed form is an ideal solution when you want to share some files with people you trust more or less. The problem is, if you use the scponlyc as shell, port forwarding is still allowed. This can of course be dissallowed in
2005 Feb 24
3
Suggestion: SSHD pseudo/fake mode. Source available.
Hi, SSH brute force attacks seem to enjoy increasing popularity. Call me an optimist or a misrouted kind of contributer to the community, but on our company server I actually go through the logs and report extreme cases to the providers of the originating IP's. With the increasing number of these attacks, however, I have now decided that it's better to move the SSHd to a different
2013 May 15
2
Support for "ssh-rsa-sha256" and "ssh-dss-sha256" ?‏
Functionality request for supporting Digital Signatures for RSA and DSS Public Key Algorithms in alignment with NIST SP800-131A. I assume this has been asked before, but I could not find in the archives. Support of "ssh-rsa-sha256" and "ssh-dss-sha256" public key algorithms for OpenSSH? I know Suite B Algorithms and x509 SSH Extension Algorithms are supported, but not a
2001 Nov 14
6
[PATCH]: Patch to fix hang on exit bug under Linux and add optional exit delay
...2port(optarg); if (fwd_port == 0) { diff -ur openssh-3.0p1/version.h openssh-3.0p1J/version.h --- openssh-3.0p1/version.h Wed Oct 24 09:20:57 2001 +++ openssh-3.0p1J/version.h Tue Nov 13 16:11:16 2001 @@ -1,3 +1,3 @@ /* $OpenBSD: version.h,v 1.25 2001/10/15 16:10:50 deraadt Exp $ */ -#define SSH_VERSION "OpenSSH_3.0p1" +#define SSH_VERSION "OpenSSH_3.0p1J"
2001 Feb 08
0
sshd question:
Hello, I have sshd version:SSH_VERSION "OpenSSH_2.3.1p1" When I run (using inted.conf), at client-side I get error: Bad remote protocol version identification: 'sshd: no hostkeys available -- exiting. I have client: SSH Version 1.2.27 [i386--netbsd], protocol version 1.5. Compiled with RSAREF. What is the solution t...
2002 Mar 07
2
[Bug 140] Solaris 8 cannot create pkg in OpenSSH 3.1p1
http://bugzilla.mindrot.org/show_bug.cgi?id=140 ------- Additional Comments From mozilla at mediaone.net 2002-03-08 08:33 ------- Ok found the bug, In $openSSH/contrib/solaris/buildpkg.sh line 13: VERSION=`tail -1 ../../version.h | sed -e 's/.*_\([0-9]\)/\1/g' | sed 's/\"$//'` needs to change to line 13: VERSION=`tail -2 ../../version.h | sed -e
2002 Mar 07
0
[Bug 140] Solaris 8 cannot create pkg in OpenSSH 3.1p1 (fwd)
...ds to change to > line 13: > VERSION=`tail -2 ../../version.h | sed -e 's/.*_\([0-9]\)/\1/g' | sed 's/\"$//'` > > This fixes the pkgcreation problem on Solaris 8 This affected the AIX package build too (sigh) but I think we'd be better off with: VERSION=`grep SSH_VERSION ../../version.h | sed -e 's/.*_\([0-9]\)/\1/g' | sed 's/\"$//'` So next time someone adds an emply line somewhere it won't break again. -Daz.
2002 Mar 08
0
contrib/solaris/buildpkg.sh buglet
Hi, The line grabbing the version out of version.h is slightly broken in 3.1p1: VERSION=`tail -1 ../../version.h | sed [.....] because there's an extra blank line at the end of version.h. It would be more robust if the script did something like this instead: VERSION=`grep SSH_VERSION ../../version.h | sed [....] Cheers, Chris