Skip to main content

Telnet

Synopsis

Creates an emulated Telnet server that logs every authentication attempt, including the cleartext password, without exposing a real system. A credential that matches the credentials list opens a fake interactive shell that returns canned responses to a fixed set of commands; nothing is ever executed on the host.

Schema

- id: <numeric>
name: <string>
description: <string>
type: telnet
tags: <string[]>
pipelines: <pipeline[]>
status: <boolean>
properties:
address: <string>
port: <numeric>
hostname: <string>
banner: <string>
max_auth_tries: <numeric>
timeout: <numeric>
credentials:
- username: <string>
password: <string>

Configuration

The following fields are used to define the device:

Device

FieldRequiredDefaultDescription
idYUnique identifier
nameYDevice name
descriptionN-Optional description
typeYMust be telnet
tagsN-Optional tags
pipelinesN-Optional pre-processor pipelines
statusNtrueEnable/disable the device

Connection

FieldRequiredDefaultDescription
addressN"0.0.0.0"Listen address
portYListen port
max_auth_triesN3Failed authentications per connection before disconnect
timeoutN30Idle timeout in seconds

Appearance

FieldRequiredDefaultDescription
hostnameN"server"Host name shown in the login prompt and canned command output
bannerN"Ubuntu 22.04.4 LTS"Pre-login issue text
warning

Unlike the SSH honeypot, where banner selects a named distro preset, on Telnet banner is the literal pre-login issue text printed verbatim. Setting banner: ubuntu here prints the literal word "ubuntu" as the banner, not an Ubuntu-styled preset.

Authentication

The credentials property is the list of username/password pairs the honeypot accepts. Every login attempt is logged regardless of the outcome — the list only decides whether the attacker is granted a session afterwards.

FieldRequiredDefaultDescription
credentialsN-Accepted username/password pairs. Omit to reject every login.
credentials[].usernameYUsername to accept. An entry with an empty username is discarded.
credentials[].passwordN-Password to accept. An empty value accepts any password for that username.

Matching rules:

  • Omitted or empty list: no login ever succeeds. Attempts are still logged, so the honeypot keeps collecting credentials without ever handing out a session.
  • Empty password: any password is accepted for that username — useful for emulating a service that permits anonymous or unauthenticated access.
  • Failed attempts are counted per connection, and the client is disconnected once max_auth_tries is reached.

Both fields accept plain text, ${ENV_VAR} environment references, and $secret{...} vault tokens.

warning

Credentials configured here are decoys, not access control. Anything an attacker types is written to the event stream in cleartext, including the password. Never reuse a real credential as a honeypot credential.

Details

Emulated Shell

The Telnet honeypot is a hand-rolled server, not a wrapper around a real shell. On connection it writes the banner, then loops a <hostname> login: prompt followed by a Password: prompt, up to max_auth_tries times. It sends IAC WILL ECHO before the password prompt and IAC WONT ECHO after, so well-behaved clients suppress local echo of the typed password. Telnet option negotiation is handled inline: every DO/WILL option requested by the client is declined with WONT/DONT, and subnegotiations are drained through to IAC SE, so real clients do not stall waiting on unsupported options.

A failed login prints Login incorrect and the prompt loop restarts; the connection is dropped once max_auth_tries is exhausted. A successful login opens the same canned-command shell as the SSH honeypot, but with an -sh: prompt prefix instead of -bash:. exit, logout, and quit each print logout and close the connection. Nothing is ever executed on the host, and no file system is touched.

Logged Events

Every connection generates one or more of the following event types:

event_typeEmitted when
auth_attemptA username/password pair is submitted at the login prompt
session_openA shell session opens after a successful authentication
session_commandA command is entered at the emulated shell prompt
session_closeThe session closes

Event Fields

Every event carries timestamp, event_type, source_ip, source_port, and local_addr. The remaining fields depend on the event type:

FieldDescription
usernameUsername submitted in the attempt
passwordPassword submitted in the attempt, in cleartext
successWhether the attempt or session matched an accepted credential
session_idIdentifier of the emulated shell session
commandCommand entered at the emulated shell prompt
argsArguments parsed from the command

Examples

The following are commonly used configuration types.

Basic

Creating a minimal Telnet honeypot on the standard port...

devices:
- id: 1
name: basic_telnet
type: telnet
properties:
port: 23

Accepted Credentials

Accepting one fixed credential and any password for a second username...

devices:
- id: 2
name: telnet_credentials
type: telnet
properties:
port: 23
credentials:
- username: admin
password: admin123
- username: root
password: ""

With Pre-Processing

Routing captured attempts through a pre-processing pipeline before ingestion...

devices:
- id: 3
name: telnet_preprocessed
type: telnet
pipelines:
- decoy-honeypot-enrich
properties:
port: 23

A failed login is logged with the cleartext credential before pipeline processing...

{
"timestamp": "2026-08-03T09:14:22.481937204Z",
"event_type": "auth_attempt",
"source_ip": "203.0.113.44",
"source_port": "51422",
"local_addr": "10.0.4.12:23",
"username": "admin",
"password": "admin123",
"success": false
}