* * SSH - The Secure Shell Protocol */
| 42 | */ |
| 43 | |
| 44 | type sshReader struct { |
| 45 | conversation *core.ConversationInfo |
| 46 | |
| 47 | clientIdent string |
| 48 | serverIdent string |
| 49 | clientKexInit *KexInitMsg |
| 50 | serverKexInit *KexInitMsg |
| 51 | software []*types.Software |
| 52 | ja4sshData *ja4.SSHStreamData |
| 53 | ja4sshFingerprint string |
| 54 | ja4sshSessionType string |
| 55 | } |
| 56 | |
| 57 | // New returns a new SSH reader. |
| 58 | func (h *sshReader) New(conversation *core.ConversationInfo) core.StreamDecoderInterface { |
nothing calls this directly
no outgoing calls
no test coverage detected