
Security News
Potemkin Understanding in LLMs: New Study Reveals Flaws in AI Benchmarks
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
telnet-socket
Advanced tools
A standards compliant Telnet implementation for Node.js
In addition to RFC 854, a number of additional RFCs, proposed RFCs, and adopted options such as GMCP and MSSP are implemented. An emphasis on standards used with ANSI-BBS related terminals is taken, though PRs are certainly welcome if something of use is missing.
Some additional standards include:
See telnet_spec.js for more information and additional standards.
const { TelnetSocket, TelnetSpec } = require('telnet-socket');
const telnetSocket = TelnetSocket(rawSocket);
// request client to send NAWS
telnetSocket.do.naws();
telnetSocket.on('SB', command => {
if (TelnetSpec.Options.NAWS === command.option) {
// client sent us NAWS
const { width, height } = command.optionData;
// ...do something with height and width
}
});
passthrough
: Set to true
to enable passthrough mode. Defaults to false
.escapeIACs
: Set to false
to disable escaping of telnet IAC
characters. Defaults to true
.rawSocket
: Access the underlying socket.data
(data)
: Non-protocol datacommand error
(command, error)
: An error ocurred whilest processing a command.end
()
: Socket end
.error
(error)
: A socket error has occurred.Events are emitted for specific Telnet commands such as (but not limited to) DO
, DONT
, WILL
, WONT
and AYT
with the signature of (command)
where command
has the following properties:
code
: The raw byte code of the command.name
: The command name (DO
, DONT
, ...) or unknown comand
.option
: Option sent with the command.optionName
: The name of the option such as NAWS
or unknown option
.optionData
: For options that contain additional data. For example, NAWS
contains height
and width
members, while TTYPE
contains a ttype
member.Unknown commands are emitted as unknown command
with the same signature described above.
See LICENSE.md
FAQs
A standards compliant Telnet implementation for Node.js
The npm package telnet-socket receives a total of 18 weekly downloads. As such, telnet-socket popularity was classified as not popular.
We found that telnet-socket demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.