包含openssh8.3p1.tar.gz openssh8.9p1.tar.gz openssl-1.1.1g.tar.gz
2022-04-06 00:17:18 12.68MB linux 服务器
1
主要介绍了ubuntu16.04下安装openssh-server报依赖错误的完美解决方法(非常不错)的相关资料,需要的朋友可以参考下
2022-03-26 10:05:38 53KB ubuntu opensshserver ubuntu 解决依赖
1
IBM AIX 5.3/6.1/7 上可用的openssh + openssl 工具包。 安装方法: 1、解压rar 2、ftp上传到aix主机 3、使用 gunzip 或 uncompress 解压为tar文件 4、使用tar指令解压 5、使用 smit installp 进行安装
2022-03-25 15:04:15 11.81MB openssh openssl
1
untrusted comment: signature from openbsd 5.5 base secret key RWRGy8gxk9N930mZSNhSVZg9DPFLNT0qQcEGhQeQ55awDf4RfJqPXB6lz71jQatqYzr3XkzyUyckpP4nSCE+XmoICZEPwVhjhA8= OpenBSD 5.5 errata 2, Apr 8, 2014: Missing bounds checking in OpenSSL's implementation of the TLS/DTLS heartbeat extension (RFC6520) which, if exploited, can result in a leak of memory contents. After patching, private keys and certificates exposed to services running this code (for example web/mail server SSL certificates) should be replaced and old certificates revoked. Only SSL/TLS services are affected. Software that uses libcrypto alone is not affected. In particular, ssh/sshd are not affected and there is no need to regenerate SSH host keys that have not otherwise been exposed. Apply patch using: signify -Vep /etc/signify/openbsd-55-base.pub -x 002_openssl.patch.sig \ -m - | (cd /usr/src && patch -p0) Then build and install libssl cd /usr/src/lib/libssl/ssl make obj make make install Also recompile any statically-linked binaries depending on it - in the base OS, this is just ftp(1): cd /usr/src/usr.bin/ftp make obj make clean make make install Then restart services which depend on SSL. Index: lib/libssl/src/ssl/d1_both.c =================================================================== RCS file: /cvs/src/lib/libssl/src/ssl/d1_both.c,v retrieving revision 1.2 diff -u -p -r1.2 d1_both.c --- lib/libssl/src/ssl/d1_both.c 27 Feb 2014 21:04:57 -0000 1.2 +++ lib/libssl/src/ssl/d1_both.c 8 Apr 2014 00:22:22 -0000 @@ -1459,26 +1459,36 @@ dtls1_process_heartbeat(SSL *s) unsigned int payload; unsigned int padding = 16; /* Use minimum padding */ - /* Read type and payload length first */ - hbtype = *p++; - n2s(p, payload); - pl = p; - if (s->msg_callback) s->msg_callback(0, s->version, TLS1_RT_HEARTBEAT, &s->s3->rrec.data[0], s->s3->rrec.length, s, s->msg_callback_arg); + /* Read type and payload length first */ + if (1 + 2 + 16 > s->s3->rrec.length) + return 0; /* silently discard */ + hbtype = *p++; + n2s(p, payload); + if (1 + 2 + payload + 16 > s->s3->rrec.length) + return 0; /* silently discard per RFC 6520 sec. 4 */ + pl = p; + if (hbtype == TLS1_HB_REQUEST) { unsigned char *buffer, *bp; + unsigned int write_length = 1 /* heartbeat type */ + + 2 /* heartbeat length */ + + payload + padding; int r; + if (write_length > SSL3_RT_MAX_PLAIN_LENGTH) + return 0;
2022-03-25 14:39:45 1.06MB openssh5.8
1
OpenSSH 3.8.1p1 Portable 绿色版 For Windows --- openssh的绿化版本 初次使用: 在bin目录中运行 mkgroup -l >> ..\etc\group 这是加入本地组的命令。 'mkgroup -d >> ..\etc\group 这是加入域组的命令,可不执行。 mkpasswd -l [-u ] >> ..\etc\passwd 这是加入本地用户的命令。 'mkpasswd -d [-u ] >> ..\etc\passwd 这是加入域用户的命令,可不执行。 是你的电脑中有的用户名称,比如Administrator: mkpasswd -l -u Administrator >> ..\etc\passwd 不知道是否支持中文。 开始运行: 执行bin目录中的sshd.exe 配置文件: etc目录中的group、passwd文件可以删除重建。 sshd_config文件可以改变端口等服务端的配置。 退出: 使用任务管理器结束所有sshd.exe进程。 与原版的区别: 原版使用了系统服务的方式运行,可以方便的结束所有相关进程,但需要环境变量支持。 绿色版不使用系统服务,绿色运行,带原版系统服务工具,但未研究出使用方法。
2022-03-21 14:32:26 1.54MB OpenSSH Windows Portable 绿色版
1
最新的openssh 8.9p1 rpm安装包,适用于redhat 7.x操作系统。 基于redhat 7.9操作系统编译成rpm包
2022-03-21 10:23:17 4.78MB linux redhat
1
只需要执行根目录下的update_ssh.sh文件,即可升级成功(depend文件夹存放所需依赖,sopenssh-8.9p1文件夹存在相关rpm文件)
2022-03-20 15:18:31 6.63MB ssh 运维
1
java中建立sftp服务连接所需的jar包 支持OpenSSH_7.1p1, OpenSSL 1.0.1e-fips 11 Feb 2013
2022-03-18 12:15:45 272KB sftp jsch-0.1.53 jar Java
1
本资源为rk3399 的openssh的依赖库,只需按照文件夹中的路径拷入3399开发板对应的目录.生成key后,最后运行"/usr/local/sbin/sshd"即可.
2022-03-11 15:22:59 6.07MB rk3399 ssh移植依赖库
1
由源码生成的openssh 7.4p1
2022-03-02 19:57:39 1.46MB openssh 7.4p1 rpm
1