0

To investigate on some issue, I need to dump the full ssh key offered by the ssh client to the ssh server.

Up to this point, I tried to

put the parent of all sshd server (belongs to root) LogLevel to DEBUG strace -f (to follow child processes) the root sshd process with large snap window (-s 8192) tcpdump -X (to print ) -s 8192 (to capture 8192 bytes max of each frame) Checking the strace log does not show the ssh key sent by the client, nor the sshd logs, nor the tcpdump ascii dump.

Any idea to get this key ? I have no access to the client side.

kalou.net
  • 103
  • 2

1 Answers1

1

Ask someone from the client side to share the public key, then check if it matches what you have on the server. The private key isn’t transmitted (and should be secure), so you can’t expect that.

Ackack
  • 989
  • 5
  • 11