aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2009-09-15Update ChangeLog.release-0-3-4Andreas Schneider1-0/+1
2009-09-14Fix a possible stack overflow in agent code.Andreas Schneider1-4/+1
2009-09-14Update ChangeLog.Andreas Schneider1-2/+4
2009-09-13Fix the security bug found by Orange LabsAris Adamantiadis1-2/+8
Verify the length of decrypt operation is a multiple of blocksize
2009-09-09Update ChangeLog.Andreas Schneider1-0/+1
2009-09-09Add a portable ssh_mkdir function for Windows.Andreas Schneider4-1/+30
2009-09-08Add a sftp_tell64() function.Andreas Schneider2-1/+16
2009-09-08Update ChangeLog.Andreas Schneider1-0/+2
2009-09-08Fix the free calls and use the safe free macro.Andreas Schneider1-6/+6
2009-09-08Add missing NULL pointer checks to crypt_set_algorithms_server.Andreas Schneider1-4/+5
Thanks to Orange Labs for the report.
2009-09-08Fix an integer overflow in buffer_get_data().Andreas Schneider1-2/+7
Thanks to Orange Labs for the report.
2009-08-26Add ChangeLog entries.Andreas Schneider1-0/+4
2009-08-26Increase version number.Andreas Schneider3-5/+5
2009-08-26Fix ssh_write_knownhost() if ~/.ssh doesn't exist.Andreas Schneider1-3/+22
2009-08-26Added ssh_basename() and ssh_dirname().Andreas Schneider2-0/+112
2009-08-18Increase version number and update Changelog.release-0-3-3Andreas Schneider4-5/+14
2009-08-16Fix double free pointer crash in dsa_public_to_stringVic Lee1-1/+0
Signed-off-by: Andreas Schneider <mail@cynapses.org>
2009-08-16Fix channel_get_exit_status bug reported by VicLeeAris Adamantiadis1-1/+3
It would return -1 if the channel received the exit status and the close message at same time.
2009-08-13fix ssh_finalize which didn't clear the flagAris Adamantiadis1-0/+1
2009-08-12Fix memory leak introduced by previous bugfixAris Adamantiadis1-2/+3
2009-08-10Fixed channel_poll broken when delayed EOF recvdAris Adamantiadis1-0/+3
Previous code returned SSH_EOF even if data was left in buffer
2009-08-10Fixed stupid "can't parse known host key" bugAris Adamantiadis1-0/+1
due to a dangling \n in the base64 ...
2009-08-07Fix possible memory corruption (#14)milo7-24/+24
Signed-off-by: Andreas Schneider <mail@cynapses.org>
2009-08-04Update ChangeLog.release-0-3-2Andreas Schneider1-0/+8
2009-08-04Update version number of the package.Andreas Schneider1-1/+1
2009-08-01Update version numbers.Andreas Schneider1-3/+3
2009-07-30Cleanup the libssh.map file and order it alphabetically.Andreas Schneider1-53/+176
2009-07-29Add gitignore file to branch.Andreas Schneider1-0/+6
2009-07-29Add ssh_init to the map file.Andreas Schneider1-1/+1
2009-07-29ssh_init()Aris Adamantiadis4-12/+21
fixes in client.c and server.c for this git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@778 7dcaeef0-15fb-0310-b436-a5af3365683c
2009-07-29moved try_publickey_from_file in priv.hAndreas Schneider2-4/+3
Had nothing to do in libssh.h. 100% sure nobody used it since one of the structure declaration was not public.
2009-07-29Check for OpenSSH and implement sftp_symlink correct.Andreas Schneider4-5/+61
When OpenSSH's sftp-server was implemented, the order of the arguments to the SSH_FXP_SYMLINK method was inadvertently reversed. Unfortunately, the reversal was not noticed until the server was widely deployed. Since fixing this to follow the specification would cause incompatibility, the current order was retained.
2009-07-29Fix SSH1 compilation.Andreas Schneider6-26/+30
2009-07-25Update map file.Andreas Schneider1-0/+1
2009-07-25Add sftp_readlink function.Andreas Schneider2-0/+85
2009-07-25Add sftp_symlink function.Andreas Schneider2-0/+96
2009-07-23Fix a segfault if a NULL pointer is passed to ssh_disconnect().Andreas Schneider1-3/+2
2009-07-23Don't segfault if the session or the answer is NULL.Andreas Schneider1-1/+1
2009-07-23Fix ssh_write_knownhost() which always returned -1.Andreas Schneider2-4/+6
fwrite() return the the number of items written not the size of the buffer.
2009-07-23Add compile flags and test for compiler options only if we use gcc.Andreas Schneider1-42/+41
2009-07-23Only add additional warnings if we have a GNU compiler.Andreas Schneider1-1/+3
2009-07-23Make the ssh_userauth_kbdint functions to get the prompts const.Andreas Schneider3-7/+8
They shouldn't be modified or free'd by a user.
2009-07-23Fix sol8 + ss11 compile errors.Andreas Schneider2-2/+14
Thanks to tysonite@gmail.com.
2009-07-14Fix build on windows, missing include.release-0-3-1Andreas Schneider1-0/+2
2009-07-14Fix doxygen to match SSH_SERVER_FILE_NOT_FOUND fixAris Adamantiadis1-1/+4
2009-07-14Add changelog entries for 0.3.1.Andreas Schneider1-0/+9
2009-07-14Set version to 0.3.1.Andreas Schneider3-4/+4
2009-07-13Reflect the SSH_SERVER_NOT_KNOWN add-on in sampleAris Adamantiadis1-0/+4
2009-07-13Added return code SSH_SERVER_FILE_NOT_FOUNDAris Adamantiadis2-2/+3
This error is returned by ssh_is_server_known when known_hosts file does not exist and gives more action to the developer.
2009-07-02Fixed Could not write as much data as expected msgAris Adamantiadis1-1/+1
Bug caused by verifying the size of the buffer in the wrong place