summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2013-03-19Fix compat basename() to handle paths with no slashes. Thanks to Frank TeoMatt Johnston
2013-03-19Include /proc/vmstat as another random sourceMatt Johnston
2013-03-19link to Dropbear webpageMatt Johnston
2013-03-19Removed tag t:ltc-0.95-db-merge1Matt Johnston
2013-03-19Removed tag t:ltc-0.95-origMatt Johnston
2013-03-11fix signedness error in prototypeMatt Johnston
2013-03-03improve subsystem/sftp documentation, and multi-hop manual formattingMatt Johnston
2013-02-24fix typoMatt Johnston
2013-02-23DSS_PROTOK is not necessary now that private keys are includedMatt Johnston
in the random generation input
2013-02-23add loadavg and entropy_avail as sourcesMatt Johnston
2013-02-12Allow configuring "allow blank password option" at runtimePaul Eggleton
Changes this from a compile-time switch to a command-line option. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2013-02-22Some changes since 2012.55Matt Johnston
2013-02-22Document "-m" and "-c"Matt Johnston
Update URLs with https
2012-07-19/dev/random blocks on busy servers too.Matt Johnston
2012-06-30Add a few more files in /proc for LinuxMatt Johnston
2012-06-29Improve RNG seeding.Matt Johnston
Try to read from /dev/urandom multiple times, take input from extra sources, and use /dev/random when generating private keys
2012-05-17ENABLE_USER_ALGO_LIST should work for the clientMatt Johnston
2012-05-17Add rough support for choosing ciphers/hashes with "-c" or "-m"Matt Johnston
2012-05-09Don't TRACE() the pw_passwdMatt Johnston
2012-05-09Fix empty password immediate loginMatt Johnston
2012-05-09Return immediate success for blank passwords if allowedMatt Johnston
2012-05-09Server shouldn't return "localhost" in response to -R forward connectionsMatt Johnston
if that wasn't what the client requested.
2012-05-09Initialise agent_fd to -1 so we don't end up closing stdin (fd 0)Matt Johnston
if public key authentication is disabled
2012-05-09- Don't sent SSH_MSG_UNIMPLEMENTED if we don't have ENABLE_SVR_REMOTETCPFWDMatt Johnston
- Fix build if ENABLE_SVR_REMOTETCPFWD is disabled but ENABLE_SVR_LOCALTCPFWD is enabled
2012-04-24Ignore -q if SCP_PROGRESS isn't setMatt Johnston
2012-04-12Split listening port argument at the rightmost colon, allows binding toMatt Johnston
specific IPv6 addresses. From OpenWRT, https://dev.openwrt.org/browser/trunk/package/dropbear/patches/300-ipv6_addr_port_split.patch
2012-04-12Improve comment about sha1-96Matt Johnston
2012-04-09Slight formatting change for ENABLE_CLI_AGENTFWD if statementMatt Johnston
2012-03-26Fixed compilation with unset ENABLE_{SVR,CLI}_AGENTFWD.Andrey Mazo
Got rid of ENABLE_AGENTFWD macro.
2012-04-09Rename HAVE_FORK to USE_VFORKMatt Johnston
It makes it a bit more obvious why there's a test there since HAVE_FORK is the normal case.
2012-04-08check for fork() and not __uClinux__Mike Frysinger
2012-04-08fix out-of-tree cleaningMike Frysinger
If we build out of tree and then run `make clean`, we hit an infinite loop where libtommath tries to enter subdirs that don't exist and run `make clean`.
2012-02-23Added signature for changeset 85f835f2fe0aMatt Johnston
2012-02-23Added tag DROPBEAR_2012.55 for changeset d354464b2aa6Matt Johnston
2012-02-23- Improve CHANGES descriptionMatt Johnston
2012-02-222012.55Matt Johnston
2012-02-22- Fix minor leakMatt Johnston
2012-02-22Fix accidentally committed changeMatt Johnston
2011-12-04- Initialise sa_mask properlyMatt Johnston
2012-02-21- MergeMatt Johnston
2012-02-21- Make sure sa_mask is setMatt Johnston
2012-02-21- Burn buffers to 0x00 insteadMatt Johnston
2012-02-10MergeMatt Johnston
2012-02-10Clear a few buffers when possibleMatt Johnston
2011-12-04- Fix use-after-free if multiple command requests were sent. MoveMatt Johnston
the original_command into chansess struct since that makes more sense
2011-12-04- Remove unused variable/codeMatt Johnston
2011-12-04- Make sure we don't use channel-specific data after it has been freedMatt Johnston
with a ChanType->closehandler()
2011-12-04- Fix some format strings in TRACE()sMatt Johnston
2011-12-04- We don't need to test for NULL before free()Matt Johnston
2011-11-10Put better #if guards around IPv6 socket options for IPV6_TCLASS andMatt Johnston
IPV6_V6ONLY. From Gustavo Zacarias.