Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-10-20 | add zap-to-char and zap-up-to-char; bind zap-to-char to M-z. | Omar Polo | |
ok florian@ | |||
2022-10-17 | Preserve marked pane when renumbering windows. | Nicholas Marriott | |
2022-10-15 | replace ewprintf("") calls with eerase(): no functional difference. | Omar Polo | |
ok florian@ | |||
2022-10-15 | typo in comment: Funtion -> Function | Omar Polo | |
2022-10-14 | Document missing cases of variable substitution | Klemens Nanni | |
Feedback OK op | |||
2022-10-14 | remove the unsightly plural from Nd: | Jason McIntyre | |
audio files manipulation tool -> audio file manipulation tool | |||
2022-10-13 | controm terminql -> controlling terminal; | Jason McIntyre | |
2022-10-13 | use correct type with sizeof | Jonathan Gray | |
ok djm@ | |||
2022-10-11 | Vox populi says "cdio:" prefix is useful so switch back to using | Kenneth R Westerback | |
warnx(), but with required "\n" manually output to stderr before calling warnx(). Requested by tb@ and OP Michael Siegel. | |||
2022-10-11 | fix unintended sizeof pointer introduced in 1.10 | Jonathan Gray | |
ok cheloha@ miod@ matthieu@ martijn@ | |||
2022-10-10 | Use warnx(), not warn(), when 'errno' is not relevant. | Kenneth R Westerback | |
2022-10-10 | Don't leak 'sec' in error path. | Kenneth R Westerback | |
2022-10-07 | Fix some error output, replacing some silly 'warnx("\n...")' with | Kenneth R Westerback | |
fprintf(stderr, "\n..."). Reported by Michael Siegel via bugs@. ok tb@ (with some further suggestions) | |||
2022-10-07 | ssh-agent.1: | Jason McIntyre | |
- use Nm not Xr for self-ref - while here, wrap a long line ssh-agent.c: - add -O to usage() | |||
2022-10-07 | document "-O no-restrict-websafe"; spotted by Ross L Richardson | Damien Miller | |
2022-10-06 | honour user's umask if it is more restrictive then the ssh default | Damien Miller | |
(022); based on patch from Alex Henrie, ok dtucker@ deraadt@ | |||
2022-10-04 | fix an obvious thinko without serious consequences in the display of e | Marc Espie | |
for rsa and friends. okay tb@ | |||
2022-10-04 | Sort commands in help output, add help to manual | Klemens Nanni | |
OK millert Feedback OK jmc | |||
2022-10-04 | Only print prompt in interactive usage | Klemens Nanni | |
Scripting tftp(1) makes it non-interactive, yet the prompt is still printed and may mess up the shell's PS1: $ echo put nonexistent | tftp localhost tftp> tftp: open: nonexistent: No such file or directory tftp> $ The fix seems easy and works as expected for multiple commands as well: $ echo 'verbose\nput nonexistent' | ./obj/tftp localhost Verbose mode on. tftp: open: nonexistent: No such file or directory $ OK millert | |||
2022-10-02 | Remove unused DEBUG_LINE define. | Martin Pieuchot | |
2022-09-28 | Add scroll-top and scroll-bottom commands to scroll so cursor is at top | Nicholas Marriott | |
or bottom. From Anindya Mukherjee, GitHub issue 3334. | |||
2022-09-28 | Add a -T flag to capture-pane to stop at the last used cell instead of | Nicholas Marriott | |
the full width. Restore the previous behaviour by making it default to off unless -J is used (the only time it matters). Fixes mosh unit tests; GitHub issue 3339. | |||
2022-09-26 | openssh-9.1 | Damien Miller | |
2022-09-21 | Fix typo. From AlexanderStohr via github PR#343. | Darren Tucker | |
2022-09-21 | Update awk to Sep 12, 2022 version. | Todd C. Miller | |
Fix undefined behavior and a use-after-free in cat(). | |||
2022-09-19 | add RequiredRSASize to the list of keywords accepted by -o; | Damien Miller | |
spotted by jmc@ | |||
2022-09-19 | Remove now-unused connect_wait() function. | Todd C. Miller | |
2022-09-19 | use users-groups-by-id@openssh.com sftp-server extension (when | Damien Miller | |
available) to fill in user/group names for directory listings. Implement a client-side cache of see uid/gid=>user/group names. ok markus@ | |||
2022-09-19 | sftp client library support for users-groups-by-id@openssh.com; | Damien Miller | |
ok markus@ | |||
2022-09-19 | extend sftp-common.c:extend ls_file() to support supplied user/group | Damien Miller | |
names; ok markus@ | |||
2022-09-19 | sftp-server(8): add a "users-groups-by-id@openssh.com" extension | Damien Miller | |
request that allows the client to obtain user/group names that correspond to a set of uids/gids. Will be used to make directory listings more useful and consistent in sftp(1). ok markus@ | |||
2022-09-19 | better debugging for connect_next() | Damien Miller | |
2022-09-17 | Add RequiredRSASize for sshd(8); RSA keys that fall beneath this limit | Damien Miller | |
will be ignored for user and host-based authentication. Feedback deraadt@ ok markus@ | |||
2022-09-17 | add a RequiredRSASize for checking RSA key length in ssh(1). | Damien Miller | |
User authentication keys that fall beneath this limit will be ignored. If a host presents a host key beneath this limit then the connection will be terminated (unfortunately there are no fallbacks in the protocol for host authentication). feedback deraadt, Dmitry Belyavskiy; ok markus@ | |||
2022-09-17 | Add a sshkey_check_rsa_length() call for checking the length of an | Damien Miller | |
RSA key; ok markus@ | |||
2022-09-17 | actually hook up restrict_websafe; the command-line flag was | Damien Miller | |
never actually used. Spotted by Matthew Garrett | |||
2022-09-16 | correct error value | Damien Miller | |
2022-09-16 | sftp: Be a bit more clever about completions | Damien Miller | |
There are commands (e.g. "get" or "put") that accept two arguments, a local path and a remote path. However, the way current completion is written doesn't take this distinction into account and always completes remote or local paths. By expanding CMD struct and "cmds" array this distinction can be reflected and with small adjustment to completer code the correct path can be completed. By Michal Privoznik, ok dtucker@ | |||
2022-09-16 | sftp: Don't attempt to complete arguments for non-existent commands | Damien Miller | |
If user entered a non-existent command (e.g. because they made a typo) there is no point in trying to complete its arguments. Skip calling complete_match() if that's the case. From Michal Privoznik | |||
2022-09-15 | Use non-blocking connect() with ppoll() and timeout instead of alarm(). | Todd C. Miller | |
For hosts with multiple IP addrs this makes it possible to fall over from an unresponsive IP to another. This also replaces the other connect(2) + connect_wait() calls with timed_connect() so the -w option now works for more that just http. OK sthen@ deraadt@ | |||
2022-09-14 | remove an extraneous empty line | Theo Buehler | |
2022-09-14 | clarify behaviour when the second address in a range is smaller than | Jason McIntyre | |
or equal to the first; diff from luka krmpotic ok kn | |||
2022-09-14 | sk_enroll: never drop SSH_SK_USER_VERIFICATION_REQD flag from response | Damien Miller | |
Now that all FIDO signing calls attempt first without PIN and then fall back to trying PIN only if that attempt fails, we can remove the hack^wtrick that removed the UV flag from the keys returned during enroll. By Corinna Vinschen | |||
2022-09-14 | a little extra debugging | Damien Miller | |
2022-09-14 | ssh-agent: attempt FIDO key signing without PIN and use the error | Damien Miller | |
to determine whether a PIN is required and prompt only if necessary. from Corinna Vinschen | |||
2022-09-12 | Don't use options from pane if pane is NULL. | Nicholas Marriott | |
2022-09-11 | Adjust for opaque structs in ts.h | Theo Buehler | |
ok jsing | |||
2022-09-11 | Adjust for opaque structs in pkcs12.h | Theo Buehler | |
ok jsing | |||
2022-09-11 | Replace archaic \*(Lt and \*(Gt by plain < and >, respectively, | Ingo Schwarze | |
because these inspire devotion to cargo cult in developers. Cleanup suggested by kn@. | |||
2022-09-11 | Finally expand and delete the macro SCALE_VS_INIT(). | Ingo Schwarze | |
It's nothing but obfuscation and only used at three places in a single file. Removing it also makes the code three lines shorter. The ugliness was already pointed out six years ago by mmcc@. |