summaryrefslogtreecommitdiff
path: root/usr.bin/ssh
AgeCommit message (Expand)Author
2023-05-10Remove now-unused prototypes for ssh1 RSA functions. From lengyijun viaDarren Tucker
2023-05-01Import regenerated moduli.Darren Tucker
2023-04-30adjust ftruncate() logic to handle servers that reorder requests.Damien Miller
2023-04-26Check for ProxyJump=none in CanonicalizeHostname logic.Damien Miller
2023-04-12remove duplicate signal.h includeJonathan Gray
2023-04-12fix double wordsJonathan Gray
2023-04-06simplify sshsig_find_principals() similar to what happened toDamien Miller
2023-04-06remove redundant ssh!=NULL check; we'd already dereferenced itDamien Miller
2023-04-06match_user() shouldn't be called with user==NULL unlessDamien Miller
2023-04-06don't care about glob() return value here.Damien Miller
2023-04-03Move null check up and simplify process_escapes. Based on Coverity CIDDarren Tucker
2023-03-31Explicitly ignore return from waitpid here too.Darren Tucker
2023-03-31Explictly ignore return codes where we don't check them. From DmitryDarren Tucker
2023-03-31Return immediately from get_sock_port if sock <0 so we don't callDarren Tucker
2023-03-31don't leak arg2 on parse_pubkey_algos error path; ok dtucker@Damien Miller
2023-03-31clamp max number of GSSAPI mechanisms to 2048; ok dtuckerDamien Miller
2023-03-31don't print key if printing hostname failed; with/ok dtucker@Damien Miller
2023-03-31remove redundant testDamien Miller
2023-03-31don't attempt to decode a ridiculous number of attributes;Damien Miller
2023-03-31remove unused variable; prompted by Coverity CID 291879Damien Miller
2023-03-31Check fd against >=0 instead of >0 in error path. The dup couldDarren Tucker
2023-03-30Ignore return value from muxclient(). It normally loops without returning,Darren Tucker
2023-03-30return SSH_ERR_KEY_NOT_FOUND if the allowed_signers file is empty,Damien Miller
2023-03-30Remove dead code from inside if block. The only way the if statement canDarren Tucker
2023-03-29Explicitly ignore return value from sshpkt_disconnect since we set ourDarren Tucker
2023-03-29Plug another potential mem leak in process_put. It allocates abs_dstDarren Tucker
2023-03-29fix memory leak; Coverity CID 291848, with/ok dtucker@Damien Miller
2023-03-28Plug more mem leaks in sftp by making make_absolute_pwd_glob work inDarren Tucker
2023-03-28Remove compatibility code for OpenSSL versions prior to 1.1.* sinceDarren Tucker
2023-03-27Add tilde and environment variable expansion to RevokedHostKeys.Darren Tucker
2023-03-27fix test: getnameinfo returns a non-zero value on error,Damien Miller
2023-03-27scp: when copying local->remote, check that source file exists beforeDamien Miller
2023-03-15openssh-9.3Damien Miller
2023-03-14Free KRL itself in addition to its contents. From Coverity CID 291841,Darren Tucker
2023-03-14Check pointer for NULL before attempting to deref. None of the existingDarren Tucker
2023-03-12Put upper bound on number of entries in SSH2_MSG_EXT_INFO request.Darren Tucker
2023-03-12calloc can return NULL but xcalloc cannot. From Coverity CID 291881,Darren Tucker
2023-03-10Explicitly ignore return from fcntl(... FD_CLOEXEC) here too.Darren Tucker
2023-03-10Plug mem leak on error path. Coverity CID 405026, ok djm@.Darren Tucker
2023-03-10Expliticly ignore return code from fcntl(.. FD_CLOEXEC) since there'sDarren Tucker
2023-03-10Like sshd_config, some ssh_config options are not first-match-wins.Damien Miller
2023-03-10Remove no-op (int) > INT_MAX checks since they can never be true.Darren Tucker
2023-03-09modify parentheses in conditionals to make it clearer what is beingJoshua Stein
2023-03-09Re-split the merge of the reorder-hostkeys test.Darren Tucker
2023-03-09include destination constraints for smartcard keys too.Damien Miller
2023-03-08Plug mem leak. Coverity CID 405196, ok djm@Darren Tucker
2023-03-08ssh-pkcs11: synchronize error messages with errorsTheo Buehler
2023-03-08Delete obsolete /* ARGSUSED */ lint comments.Philip Guenther
2023-03-08use RSA/SHA256 when testing usability of private key in agent;Damien Miller
2023-03-08use RSA/SHA256 when testing usability of private key;Damien Miller