node-sftp-server
node-sftp-server copied to clipboard
Node.js based module to implement an SFTP Server
Hi, When i'm trying to overwrite a file the server crashes with the following stacktrace: `events.js:160 throw er; // Unhandled 'error' event ^ Error: Unknown open flags: null at SFTPSession.OPEN...
Right now we respond with some very low-level, close-to-the-metal things in our `stat` implementation, as well as our directory-listing implementation. Like: ```js statresponder.is_file(); // Tells statresponder that we're describing a...
When I receive a new connection and I reject it a ssh library throws a error 'No supported authentication methods available' that would crash the server since there were no...
How do I return a permission denied for `readfile` and `writefile` events? My users should only be able to upload to a single directory.
The Reader and Transform classes should be refactored and made to inherit from Responder class. In the SFTPSession class, there are lots of references to `this.sftpStream.handle()` or `this.sftpStream.status()` etc. That...
To maintain compatibility with older versions of Node, I don't think I want to switch us to ES6-style classes right now. So the inheritance throughout the library currently uses a...
I get this error when i try to login on a server. How can I fix?
Is there a way to add limitation to the uploaded file size and return suitable response to the user? Thanks