Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-10-28 | Warn rather than fail if flags have trailing parts | Matt Johnston | |
2015-10-21 | Test for crypt() rather than crypt.h | Matt Johnston | |
Print a message from configure if getpass() or crypt() were missing | |||
2015-10-21 | fix default build when getpass() is unavailable | Mike Frysinger | |
if the system doesn't support getpass, we still default on the options that require it which causes a build failure. instead, only default enable these when getpass is available. | |||
2015-10-21 | fix default build when crypt() is unavailable | Mike Frysinger | |
if the system doesn't support crypt.h/crypt, then ENABLE_SVR_PASSWORD_AUTH cannot work. rather than default this to on all the time, do so only when support for the header is found. | |||
2015-10-21 | avoid getpass when not used | Mike Frysinger | |
some systems (like android's bionic) do not provide getpass. you can disable ENABLE_CLI_PASSWORD_AUTH & ENABLE_CLI_INTERACT_AUTH to avoid its use (and rely on pubkey auth), but the link still fails because the support file calls getpass. do not define this func if both of those auth methods are not used. | |||
2015-10-21 | fix build when ENABLE_CLI_INTERACT_AUTH is disabled | Mike Frysinger | |
The session.h defines clientsession.cipher_none_after_auth only when ENABLE_CLI_INTERACT_AUTH is defined, but cli-session.c will always try to set that member. export cipher_none_after_auth all the time. | |||
2015-10-21 | Don't display the MOTD when an explicit command is run. | Guilhem Moulin | |
(possibly via authorized_keys(5) restrictions), even when a pseudo-terminal has been allocated for the session. In other words, only display the MOTD when the server starts the user's default shell. | |||
2015-10-21 | don't silently ignore extra flag arguments | Matt Johnston | |
2015-09-29 | avoid invalidated iterator when connection fails | Matt Johnston | |
2015-09-29 | make sure that the test for queued packets to write occurs after | Matt Johnston | |
those packets might have been enqueued by set_connect_fds() | |||
2015-08-08 | Added signature for changeset ef4b26364b0c | Matt Johnston | |
2015-08-08 | Added signature for changeset a687f835236c | Matt Johnston | |
2015-08-08 | Added tag DROPBEAR_2015.68 for changeset 809feaa9408f | Matt Johnston | |
2015-08-08 | changelog and version 2015.68 | Matt Johnston | |
2015-08-07 | Fix typo in dropbear(8)'s manpage | Guilhem Moulin | |
2015-08-07 | Fix segfault with restricted authorized_key files without forced command | Guilhem Moulin | |
2015-08-07 | only update keepalive timeout post-auth (when keepalives are sent) | Matt Johnston | |
2015-08-04 | Build with -Werror for the simplest case | Matt Johnston | |
2015-08-03 | couple more changelog items | Matt Johnston | |
2015-08-03 | set timeouts to time remaining rather than timeout duration | Matt Johnston | |
2015-08-03 | Fix problem where auth timeout wasn't checked when waiting for ident | Matt Johnston | |
2015-08-03 | increase MAX_CMD_LEN to 9000 | Matt Johnston | |
2015-08-03 | remove .hgtags from release | Matt Johnston | |
2015-08-03 | Don't try to send data on first ack packet of 3way handshake. | Matt Johnston | |
Cisco SSH on 15.4(3)M2 or similar can't handle it. | |||
2015-08-03 | remove extraneous semicolon from m_free #define | Matt Johnston | |
2015-08-03 | change DROPBEAR_DEFAULT_CLI_AUTHKEY to just prepend homedir | Matt Johnston | |
rather than doing ~ expansion | |||
2015-06-23 | check ecc key return, fix null pointer crash | Matt Johnston | |
2015-06-12 | Merge pull request #11 from nshopik/patch-2 | Matt Johnston | |
Prepend DROPBEAR for scp.c | |||
2015-06-12 | a bit more changelog | Matt Johnston | |
2015-06-04 | merge | Matt Johnston | |
2015-06-04 | buf_getstring and buf_putstring now use non-unsigned char* | Matt Johnston | |
2015-06-04 | Merge pull request #13 from gazoo74/fix-warnings | Matt Johnston | |
Fix warnings | |||
2015-06-04 | Merge pull request #13 from gazoo74/fix-warnings | Matt Johnston | |
Fix warnings | |||
2015-06-03 | Disable twofish-ctr by default, add config option | Matt Johnston | |
2015-06-03 | note about constant_time_strcmp and lengths | Matt Johnston | |
2015-06-03 | Fix building when ENABLE_CLI_PUBKEY_AUTH is unset | Matt Johnston | |
2015-05-29 | separate client/server fastopen options | Matt Johnston | |
2015-05-05 | Merge branch 'fix-pointer-sign-warnings' into fix-warnings | Gaël PORTAY | |
2015-05-05 | Turn modptr local variable into unsigned char * | Gaël PORTAY | |
2015-05-05 | Turn name and instruction local variables into char * | Gaël PORTAY | |
2015-05-05 | Turn type and term local variables into char * | Gaël PORTAY | |
2015-05-05 | Turn TCPFwdEntry's connectaddr and listenaddr attributes into char * | Gaël PORTAY | |
2015-05-05 | Turn banner, methods and tok local variable into char * | Gaël PORTAY | |
2015-05-05 | Turn many local variables into char * | Gaël PORTAY | |
reqname, bindaddr, request_addr, desthost and orighost to be exhaustive. | |||
2015-05-05 | Turn signame local variable into char * | Gaël PORTAY | |
2015-05-05 | Turn ChanSess's cmd attribute into char * | Gaël PORTAY | |
2015-05-05 | Turn send_msg_service_accept()'s name argument into char * | Gaël PORTAY | |
2015-05-05 | Turn checkpubkey() and send_msg_userauth_pk_ok()'s algo argument into char * | Gaël PORTAY | |
2015-05-05 | Turn addr local variable into char * | Gaël PORTAY | |
2015-05-05 | Turn sshsession's remoteident attribute into char * | Gaël PORTAY | |