mirror of
https://github.com/cowrie/cowrie.git
synced 2025-07-01 18:07:27 -04:00
mark as experimental
This commit is contained in:
@ -233,12 +233,12 @@ class HoneyPotTransport(transport.SSHServerTransport, TimeoutMixin):
|
|||||||
"""
|
"""
|
||||||
"""
|
"""
|
||||||
cookie = packet[:16]
|
cookie = packet[:16]
|
||||||
log.msg("ssh KEXINIT cookie %s" % (cookie.encode('hex'),))
|
log.msg("EXPERIMENTAL KEXINIT cookie %s" % (cookie.encode('hex'),))
|
||||||
k = getNS(packet[16:], 10)
|
k = getNS(packet[16:], 10)
|
||||||
strings, rest = k[:-1], k[-1]
|
strings, rest = k[:-1], k[-1]
|
||||||
(kexAlgs, keyAlgs, encCS, encSC, macCS, macSC, compCS, compSC, langCS,
|
(kexAlgs, keyAlgs, encCS, encSC, macCS, macSC, compCS, compSC, langCS,
|
||||||
langSC) = [s.split(',') for s in strings]
|
langSC) = [s.split(',') for s in strings]
|
||||||
log.msg("ssh KEXINIT langCS langSC %s %s" % (langCS,langSC,))
|
log.msg("EXPERIMENTAL KEXINIT langCS langSC %s %s" % (langCS,langSC,))
|
||||||
log.msg(eventid='COW0009', version=self.otherVersionString,
|
log.msg(eventid='COW0009', version=self.otherVersionString,
|
||||||
kexAlgs=kexAlgs, keyAlgs=keyAlgs, encCS=encCS, macCS=macCS,
|
kexAlgs=kexAlgs, keyAlgs=keyAlgs, encCS=encCS, macCS=macCS,
|
||||||
compCS=compCS, format='Remote SSH version: %(version)s')
|
compCS=compCS, format='Remote SSH version: %(version)s')
|
||||||
|
|||||||
Reference in New Issue
Block a user