summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2016-05-02options for disabling "normal" DHMatt Johnston
2016-05-02move group14 and group16 to options.h, group14-sha256 on by defaultMatt Johnston
2016-04-29Avoid busy loop while waiting for rekey responseMatt Johnston
2016-04-12Avoid osx "install" raceMatt Johnston
2016-04-12Add manpage and log for forced_commandMatt Johnston
2016-04-12Add -c <command> option to force a specific commandJeremy Kerr
This change adds a -c option to dropbear, to force the session to use a specific command, in a similar fashion to OpenSSH's ForceCommand configuration option. This is useful to provide a simple fixed service over ssh, without requiring an authorized key file for the per-key forced_command option. This setting takes precedence over the channel session's provided command, and the per-key forced_command setting. Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
2016-03-18Added signature for changeset 70705edee9ddMatt Johnston
2016-03-18Added tag DROPBEAR_2016.73 for changeset 309e1c4a8768Matt Johnston
2016-03-18update for 2016.73Matt Johnston
2016-03-18Fix whitespace missed in mergeMatt Johnston
2016-03-17move m_burn and function attributes to dbhelpersMatt Johnston
use m_burn for libtomcrypt zeromem() too
2016-03-17Fix missing paths from m_burn commitMatt Johnston
2016-03-17use m_burn for mp_clearMatt Johnston
2016-03-16Use memset_s or explicit_bzeroMatt Johnston
2016-03-16add CVEMatt Johnston
2016-03-16mergeMatt Johnston
2016-03-16add the idiomatic do/while(0) in the macro SCREWUPFrancois Perrad
2016-03-16fix empty C prototypesFrancois Perrad
2016-03-16add static in function definitionFrancois Perrad
like in function declaration
2016-03-16add parentheses to macroFrancois Perrad
2016-03-16const variablesFrancois Perrad
2016-03-16explicitly initialization of static variablesFrancois Perrad
2016-03-16Suspicious use of ;Francois Perrad
2016-03-16rename loop variableFrancois Perrad
2 nested loops with the same variable 'i', line 219 and line 309
2016-03-16Suspicious use of &Francois Perrad
2016-03-16add comment FALLTHROUGH which recognize by many lint toolsFrancois Perrad
2016-03-16put default in switch/caseFrancois Perrad
2016-03-16remove unreachable codeFrancois Perrad
2016-03-16use #ifdef like everywhereFrancois Perrad
2016-03-15mergeMatt Johnston
2016-03-15assertion for case that shouldn't happenMatt Johnston
2016-03-15m_close() rather than close()Matt Johnston
2016-03-15ignore return value from fcntl()Matt Johnston
2016-03-15Fix truncated type for getc() at confirmation promptMatt Johnston
2016-03-15cast return type to enumMatt Johnston
2016-03-15remove unused loginrec_set_addr()Matt Johnston
2016-03-15update CHANGESMatt Johnston
2016-03-15Merge pull request #23 from Chocobo1/travis_fixMatt Johnston
TravisCI: re-enable MULTI=1 & NOWRITEV=1 builds on OSX
2016-03-15Merge branch 'fperrad-20151231_indent'Matt Johnston
2016-03-15Merge branch '20151231_indent' of https://github.com/fperrad/dropbear into ↵Matt Johnston
fperrad-20151231_indent
2016-03-12Get rid of group15, move group16 to sha512.Matt Johnston
New groups are disabled by default pending draft-ietf-curdle-ssh-kex-sha2-02 being finalised
2016-03-10merge github masterMatt Johnston
2016-03-10allow specifying dropbearmulti command as an argumentMatt Johnston
2016-03-10merge 2016.72Matt Johnston
2016-03-10Added signature for changeset fd1981f41c62Matt Johnston
2016-03-10Added tag DROPBEAR_2016.72 for changeset 78b12b6549beMatt Johnston
2016-03-09debian changelogMatt Johnston
2016-03-092016.72Matt Johnston
2016-03-09Validate xauth inputMatt Johnston
2016-01-21TravisCI: re-enable MULTI=1 & NOWRITEV=1 builds on OSX, fixes d416a9bChocobo1