Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-12-11 | Allow search across wrapped lines and fix some inconsistencies in how th | Nicholas Marriott | |
position is represented, GitHub issue 2014 from Anindya Mukherjee. | |||
2019-12-11 | Do not set cursor colour to default unless it has been changed, GitHub | Nicholas Marriott | |
issue 2013. | |||
2019-12-10 | some more corrections for documentation problems spotted by Ron Frederick | Damien Miller | |
document certifiate private key format correct flags type for sk-ssh-ed25519@openssh.com keys | |||
2019-12-10 | loading security keys into ssh-agent used the extension constraint | Damien Miller | |
"sk-provider@openssh.com", not "sk@openssh.com"; spotted by Ron Frederick | |||
2019-12-10 | add security key types to list of keys allowed to act as CAs; | Damien Miller | |
spotted by Ron Frederick | |||
2019-12-10 | when acting as a CA and using a security key as the CA key, remind the | Damien Miller | |
user to touch they key to authorise the signature. | |||
2019-12-10 | chop some unnecessary and confusing verbiage from the security key | Damien Miller | |
protocol description; feedback from Ron Frederick | |||
2019-12-10 | Make TMUX_CONF a list of files and expand leading $FOO or ~. | Nicholas Marriott | |
2019-12-10 | In HTML, display straight quotes, not curly quotes, for Qq/Qo/Qc macros. | Anthony J. Bentley | |
This is the intended behavior and already the case in terminal output. Incorrect output noticed by Eldred Habert. ok schwarze@ | |||
2019-12-09 | Reinstate ftp_printf to log sent HTTP headers | Jeremie Courreges-Anglas | |
On SMALL builds ftp_printf is just a #define to avoid a size increase. ok millert@ | |||
2019-12-09 | Move RCS Id to the top of the file | Jeremie Courreges-Anglas | |
2019-12-09 | tweak -z mode verification to save the header and actually output it, | Marc Espie | |
so that signify -zV >saved.tgz keeps the signature for later checks. Uses slightly more memory, but simplifies some processes. okay tedu@ | |||
2019-12-09 | With NOSSL let url_get() print a nice error message for https urls | Jeremie Courreges-Anglas | |
Input from deraadt@ | |||
2019-12-08 | For chunked transfers always restore the SIGINFO handler (not just on error) | Jeremie Courreges-Anglas | |
Overlooked when shuffling the HTTP/1.1 code. | |||
2019-12-08 | cosmetic changes to conform to style of other existing OpenBSD code. | Marc Espie | |
Okay jasper@ | |||
2019-12-08 | Make sure packet destination address matches interface address, | Alexandr Nedvedicky | |
where such packet is bound to. This check is enforced if and only IP forwarding is disabled. Change discussed with bluhm@, claudio@, deraadt@, markus@, tobhe@ OK bluhm@, claudio@, tobhe@ | |||
2019-12-07 | In -L (loop) mode, reset the login class each time through the loop. | Todd C. Miller | |
Otherwise, it is possible to log in with another user's login class. Fixes CVE-2019-19519. OK deraadt@ markus@ | |||
2019-12-06 | replace links to uvm(9) to uvm_init(9); ok mpi | Jason McIntyre | |
2019-12-06 | fix setting of $SSH_ASKPASS_PROMPT - it shouldn't be set when asking | Damien Miller | |
passphrases, only when confirming the use of a key (i.e. for ssh-agent keys added with "ssh-add -c keyfile") | |||
2019-12-06 | bring the __func__ | Damien Miller | |
2019-12-05 | Fix #ifndef NOSSL vs SMALL inconsistencies | Jeremie Courreges-Anglas | |
from Hiltjo Posthuma | |||
2019-12-04 | libc's authentication privsep layer performed insufficient username | Theo de Raadt | |
validation. Repair work mostly by markus and millert, first of all solving the primary problem, then adding some additional validation points. And then futher validation in login and su. This will be 6.5/021_libcauth.patch.sig and 6.6/010_libcauth.patch.sig Reported by Qualys | |||
2019-12-03 | Style nits in function arguments. | Nicholas Marriott | |
2019-12-03 | With -R and an implicit ".", don't prepend file paths with "./" | Jeremie Courreges-Anglas | |
Looks nicer and matches the output of GNU grep. ok millert@ deraadt@ visa@ miod@ | |||
2019-12-03 | Document implicit "." default file for -R | kn | |
OK visa deraadt | |||
2019-12-02 | Tweak inaccurate comment | Jeremie Courreges-Anglas | |
2019-12-02 | Tweak previous, using fputs here was fine | Jeremie Courreges-Anglas | |
2019-12-02 | Use getline(3) to handle lines longer than 8192 bytes in patch files | Jeremie Courreges-Anglas | |
Spotted by jsg@ when working on mesa. Diff tested by sthen@ in a partial i386 bulk. Input from and ok jsg@ millert@ | |||
2019-12-02 | With -R assume that "." was passed instead of printing a warning | Jeremie Courreges-Anglas | |
Saner default behavior that matches GNU grep. Diff from miod@, support from espie@, ok visa@ millert@ | |||
2019-12-02 | Remove client menu, I don't think it adds anything. | Nicholas Marriott | |
2019-12-02 | update currency exchange rates; | Jason McIntyre | |
2019-11-30 | After fork(2) the pledge(2) in the parent proc can be reduced to | Ricardo Mestre | |
"stdio rpath sendfd" so that it can call {l,}stat/open and sendfd for imsg_* in order to send fds to the child proc which is already pledged by recvfd to receive them OK brynet@ deraadt@ | |||
2019-11-30 | tweak the Nd lines for a bit of consistency; | Jason McIntyre | |
ok markus | |||
2019-11-29 | If a window appears in only one attached session, there is no point in | Nicholas Marriott | |
worrying about which is the latest client (there is only one). | |||
2019-11-29 | at(1): ctime comparison: subtraction is not comparison; ok millert@ | cheloha | |
2019-11-29 | perform hashing directly in crypto_hash_sha512() using libcrypto or | Damien Miller | |
libc SHA512 functions rather than calling ssh_digest_memory(); avoids many dependencies on ssh code that complicate standalone use of ed25519, as we want to do in sk-dummy.so | |||
2019-11-28 | Do not crash when a format doesn't exist, reported by Thomas Sattler. | Nicholas Marriott | |
2019-11-28 | ks_mapblocks is gone | Philip Guenther | |
2019-11-28 | improve the text for -A a little; | Jason McIntyre | |
input from naddy and djm | |||
2019-11-28 | reshuffle the text to read better; | Jason McIntyre | |
input from naddy, djmc, and dtucker | |||
2019-11-28 | Add manual for openssl(1) cms | Kinichiro Inoguchi | |
ok and comments jmc@ | |||
2019-11-28 | Missing after-kill-pane option. | Nicholas Marriott | |
2019-11-28 | Parse out DA features. | Nicholas Marriott | |
2019-11-28 | Long lines and spacing fixes. | Nicholas Marriott | |
2019-11-28 | Add xrecallocarray. | Nicholas Marriott | |
2019-11-28 | Bump the escape sequence timeout to five seconds to allow for longer | Nicholas Marriott | |
legitimate sequences. | |||
2019-11-28 | Make a best effort to set xpixel and ypixel for each pane and add | Nicholas Marriott | |
formats for them. | |||
2019-11-28 | Store xpixel/ypixel from TIOCGWINSZ and add formats. | Nicholas Marriott | |
2019-11-28 | status-left and status-right need push-default also, reported by Eric | Nicholas Marriott | |
Pruitt in GitHub issue 1989. | |||
2019-11-28 | tweak wording | Damien Miller | |