summaryrefslogtreecommitdiff
path: root/usr.bin/ssh
AgeCommit message (Expand)Author
2023-12-08prevent leak in sshsig_match_principals; ok djm@Markus Friedl
2023-12-06short circuit debug log processing early if we're not going toDamien Miller
2023-11-24Plug mem leak of msg when processing a quit message.Darren Tucker
2023-11-23Include existing mux path in debug message.Darren Tucker
2023-11-20set errno=EAFNOSUPPORT when filtering addresses that don't matchDamien Miller
2023-11-15when connecting via socket (the default case), filter addresses byDamien Miller
2023-11-15when deciding whether to enable keystroke timing obfuscation,Damien Miller
2023-11-13Make sure sftp_get_limits() only returns 0 if 'limits' was initialized.Tobias Heider
2023-10-25Import regenerated moduli.Darren Tucker
2023-10-16Move declaration of "len" into the block where it's used. This letsDarren Tucker
2023-10-1264 %-expansion keys ought to be enough for anybody; ok dtuckerDamien Miller
2023-10-12don't dereference NULL pointer when hashing jumphostDamien Miller
2023-10-12add %j token that expands to the configured ProxyJump hostname (orDamien Miller
2023-10-12release GSS OIDs only at end of authentication; bz2982, ok dtucker@Damien Miller
2023-10-12mask SIGINT/TERM/QUIT/HUP before checking quit_pending and use ppoll()Damien Miller
2023-10-11sync usage() with ssh.1; spotted by kn@Damien Miller
2023-10-11ssh -Q does not make sense with other command-line options, so giveDamien Miller
2023-10-11add ChannelTimeout support to the client, mirroring the same optionDamien Miller
2023-10-11add support for reading ED25519 private keys in PEM PKCS8 format;Damien Miller
2023-10-11mention "none" is a valid argument to IdentityFile; bz3080Damien Miller
2023-10-11in olde rcp/scp protocol mode, when rejecting a path from the serverDamien Miller
2023-10-11s/%.100s/%s/ in SSH- banner construction as there's no reason toDamien Miller
2023-10-10Garbage collect cipher_get_keyiv_len()Theo Buehler
2023-10-10Reserve a range of "local extension" message numbers that OpenSSH promisesDamien Miller
2023-10-04spelling fix;Jason McIntyre
2023-10-04openssh-9.5Damien Miller
2023-10-04add some cautionary text about % token expansion and shell metacharacters;Damien Miller
2023-10-03fix link to agent draft; spotted by Jann HornDamien Miller
2023-09-19typo; from Jim SpathTheo de Raadt
2023-09-10rename remote_glob() -> sftp_glob() to match other APIDamien Miller
2023-09-10typo in commentDamien Miller
2023-09-10randomise keystroke obfuscation intervals and average interval rate.Damien Miller
2023-09-08fix sizeof(*ptr) instead sizeof(ptr) in realloc (pointer here isDamien Miller
2023-09-08fix recursive remote-remote copies of directories that contain symlinksDamien Miller
2023-09-08the sftp code was one of my first contributions to OpenSSH and itDamien Miller
2023-09-08fix scp in SFTP mode recursive upload and download of directoriesDamien Miller
2023-09-06allow override of Sybsystem directives in sshd Match blocksDamien Miller
2023-09-06allocate the subsystems array as necessary and remove the fixed limit ofDamien Miller
2023-09-06preserve quoting of Subsystem commands and arguments. This may changeDamien Miller
2023-09-06downgrade duplicate Subsystem directives from being a fatal errorDamien Miller
2023-09-06handle cr+lf (instead of just cr) in sshsig signature filesDamien Miller
2023-09-04Generate Ed25519 keys when invoked without argumentsJob Snijders
2023-09-04trigger keystroke timing obfucation only if the channels layer enqueudDamien Miller
2023-09-04avoid bogus "obfuscate_keystroke_timing: stopping ..." debugDamien Miller
2023-09-04make channel_output_poll() return a flag indicating whether channelDamien Miller
2023-09-03set interactive mode for ControlPersist sessions if they originallyDamien Miller
2023-08-29make PerSourceMaxStartups first-match-wins; ok dtucker@Damien Miller
2023-08-28descriptive text shouldn't be under .CmDamien Miller
2023-08-28limit artificial login delay to a reasonable maximum (5s) and don'tDamien Miller
2023-08-28add spacing for punctuation when macro args;Jason McIntyre