mscdex
mscdex
> instructions is exist, but prompts is null, I want to capture this instruction Right, I get that. The instructions are supposed to be for the prompts. If there are...
The terminal modes are sent by the client and it's up to the server to honor them. Same with the rest of the pty info (e.g. rows, columns, terminal type,...
The problem is that OpenSSH is expecting a real pty to be allocated and used for the shell session. The pty would be doing the LF->CRLF conversions (and observing any...
You'd pass all of the information, including the terminal type. I'm not sure if `node-pty` (not to be confused with `pty` on npm) supports an explicit list of terminal modes...
> Why would this be required even though strictVendor is false? `strictVendor` is about client-initiated requests. `hostkeys-prove-00` is a response to `hostkeys-00` server-initiated requests.
Are you able to generate and post (unused) server host keys that replicate the issue? I've never seen this be a problem before.
> This code runs in AWS lambda hence we dont store host keys I was referring to the host keys of the server you're connecting *to* not *from*. Either way,...
> it also errors out Right, but now it's an 'uncaught exception' because you have an explicit `throw err` in there. > Also, when tried from linux server we are...
> And I believe by host keys you mean the host fingerprint that gets stored in known_hosts file. What I need is a newly generated (e.g. via `ssh-keygen`), *unused* host...
> we are using password auth to connect with the server not key based auth *host* keys, nothing to do with user authentication > Also this sftp server is not...