Skip to content

Commit

Permalink
Merge pull request #25 from CommunityHoneyNetwork/processor_dev
Browse files Browse the repository at this point in the history
Closes #21
  • Loading branch information
JesseBowling authored Jun 13, 2019
2 parents 57dd444 + 9f5191e commit 07c4bcf
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion hpfeeds-logger/hpfeedslogger/processors.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,21 @@ def kippo_cowrie_sessions(identifier, payload, name, channel):
ids_type='network',
severity='high',
signature='Connection to {} honeypot'.format(name_lower),
ssh_version=dec.version
loggedin=dec.loggedin,
ssh_version=dec.version,
protocol=dec.protocol,
arch=dec.arch,
client_heigth=dec.clientHeight,
client_width=dec.clientWidth,
fingerprint=dec.fingerprint,
kex_hassh=dec.kexHassh,
kex_hassh_algorithms=dec.kexHasshAlgorithms,
kex_kex_algorithms=dec.kexKexAlgorithms,
kex_key_algorithms=dec.kex_key_algorithms,
kex_enc_cs=dec.kexEncCS,
kex_mac_cs=dec.kexMacCS,
kex_comp_cs=dec.kexCompCS,
kex_lang_cs=dec.kexLangCS
)

messages.append(base_message)
Expand Down

0 comments on commit 07c4bcf

Please sign in to comment.