Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resolve incorrect protocol extraction from Cowrie Telnet Honeypot #17

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions hpfeedslogger/processors.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ def kippo_cowrie_sessions(identifier, payload, name, channel):
direction='inbound',
ids_type='network',
severity='high',
signature='SSH session on {} honeypot'.format(name_lower),
signature='{} session on {} honeypot'.format(dec.protocol, name_lower),
ssh_version=dec.version
)

Expand All @@ -303,7 +303,7 @@ def kippo_cowrie_sessions(identifier, payload, name, channel):
if dec.credentials:
for username, password in dec.credentials:
msg = dict(base_message)
msg['signature'] = 'SSH login attempted on {} honeypot'.format(name_lower)
msg['signature'] = '{} login attempted on {} honeypot'.format(dec.protocol, name_lower)
msg['ssh_username'] = username
msg['ssh_password'] = password
messages.append(msg)
Expand Down