-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
437 lines (367 loc) · 12.5 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
"use strict";
import events from "events";
import net from "react-native-tcp-socket";
import Promise from "bluebird";
import utils from "./utils";
const Buffer = require("buffer").Buffer;
class Telnet extends events.EventEmitter {
constructor() {
super();
this.socket = null;
this.state = null;
this.connected = false;
}
connect(opts) {
let promise;
return (promise = new Promise((resolve, reject) => {
const host = typeof opts.host !== "undefined" ? opts.host : "127.0.0.1";
const port = typeof opts.port !== "undefined" ? opts.port : 23;
const localAddress = typeof opts.localAddress !== "undefined" ? opts.localAddress : "";
const socketConnectOptions =
typeof opts.socketConnectOptions !== "undefined" ? opts.socketConnectOptions : {};
this.timeout = typeof opts.timeout !== "undefined" ? opts.timeout : 500;
// Set prompt regex defaults
this.shellPrompt = typeof opts.shellPrompt !== "undefined" ? opts.shellPrompt : /(?:\/ )?#\s/;
this.loginPrompt =
typeof opts.loginPrompt !== "undefined" ? opts.loginPrompt : /login[: ]*$/i;
this.passwordPrompt =
typeof opts.passwordPrompt !== "undefined" ? opts.passwordPrompt : /Password[: ]*$/i;
this.failedLoginMatch = opts.failedLoginMatch;
this.loginPromptReceived = false;
this.extSock = typeof opts.sock !== "undefined" ? opts.sock : undefined;
this.debug = typeof opts.debug !== "undefined" ? opts.debug : false;
this.username = typeof opts.username !== "undefined" ? opts.username : "root";
this.password = typeof opts.password !== "undefined" ? opts.password : "guest";
this.irs = typeof opts.irs !== "undefined" ? opts.irs : "\r\n";
this.ors = typeof opts.ors !== "undefined" ? opts.ors : "\n";
this.echoLines = typeof opts.echoLines !== "undefined" ? opts.echoLines : 1;
this.stripShellPrompt =
typeof opts.stripShellPrompt !== "undefined" ? opts.stripShellPrompt : true;
this.pageSeparator =
typeof opts.pageSeparator !== "undefined" ? opts.pageSeparator : "---- More";
this.negotiationMandatory =
typeof opts.negotiationMandatory !== "undefined" ? opts.negotiationMandatory : true;
this.initialLFCR = typeof opts.initialLFCR !== "undefined" ? opts.initialLFCR : false;
this.initialCTRLC = typeof opts.initialCTRLC !== "undefined" ? opts.initialCTRLC : false;
this.execTimeout = typeof opts.execTimeout !== "undefined" ? opts.execTimeout : 2000;
this.sendTimeout = typeof opts.sendTimeout !== "undefined" ? opts.sendTimeout : 2000;
this.maxBufferLength =
typeof opts.maxBufferLength !== "undefined" ? opts.maxBufferLength : 1048576;
/* if socket is provided and in good state, just reuse it */
if (this.extSock) {
if (!this._checkSocket(this.extSock)) return reject(new Error("socket invalid"));
this.socket = this.extSock;
this.state = "ready";
this.emit("ready");
resolve(this.shellPrompt);
} else {
const params = {
port,
host,
...socketConnectOptions,
};
if (localAddress) params.localAddress = localAddress;
this.socket = net.createConnection(params, () => {
this.socket.writable = true;
this.state = "start";
this.emit("connect");
if (this.initialCTRLC === true) {
this.socket.write(Buffer.from("03", "hex"));
}
if (this.initialLFCR === true) {
this.socket.write("\r\n");
}
if (this.negotiationMandatory === false) {
resolve();
}
});
}
this.inputBuffer = "";
this.socket.setTimeout(this.timeout, () => {
if (promise.isPending()) {
/* if cannot connect, emit error and destroy */
if (this.listeners("error").length > 0) {
this.emit("error", "Cannot connect");
}
this.connected = false
this.socket.writable = false
this.socket.destroy();
return reject(new Error("Cannot connect"));
}
this.emit("timeout");
this.connected = false
this.socket.writable = false
return reject(new Error("timeout"));
});
this.socket.on("data", (data) => {
if (this.state === "standby") return this.emit("data", data);
this._parseData(data, (event, parsed) => {
if (promise.isPending() && event === "ready") {
resolve(parsed);
}
});
});
this.socket.on("error", (error) => {
if (this.listeners("error").length > 0) this.emit("error", error);
this.connected = false
this.socket.writable = false
if (promise.isPending()) reject(error);
});
this.socket.on("end", () => {
this.emit("end");
this.connected = false;
this.socket.writable = false
if (promise.isPending()) reject(new Error("Socket ends"));
});
this.socket.on("close", () => {
this.emit("close");
this.connected = false
this.socket.writable = false
if (promise.isPending()) reject(new Error("Socket closes"));
});
}));
}
exec(cmd, opts, callback) {
if (opts && opts instanceof Function) callback = opts;
return new Promise((resolve, reject) => {
if (opts && opts instanceof Object) {
this.shellPrompt = opts.shellPrompt || this.shellPrompt;
this.loginPrompt = opts.loginPrompt || this.loginPrompt;
this.failedLoginMatch = opts.failedLoginMatch || this.failedLoginMatch;
this.timeout = opts.timeout || this.timeout;
this.execTimeout = opts.execTimeout || this.execTimeout;
this.irs = opts.irs || this.irs;
this.ors = opts.ors || this.ors;
this.echoLines = typeof opts.echoLines !== "undefined" ? opts.echoLines : this.echoLines;
this.maxBufferLength = opts.maxBufferLength || this.maxBufferLength;
}
cmd += this.ors;
if (!this.socket.writable) return reject(new Error("socket not writable"));
this.socket.write(cmd, "utf8", () => {
let execTimeout = null;
this.state = "response";
this.emit("writedone");
this.once("responseready", responseHandler);
this.once("bufferexceeded", buffExcHandler);
if (this.execTimeout) {
execTimeout = setTimeout(() => {
execTimeout = null;
this.removeListener("responseready", responseHandler);
this.removeListener("bufferexceeded", buffExcHandler);
reject(new Error("response not received"));
}, this.execTimeout);
}
function responseHandler() {
if (execTimeout !== null) {
clearTimeout(execTimeout);
}
if (this.response !== "undefined") {
resolve(this.response.join("\n"));
} else reject(new Error("invalid response"));
/* reset stored response */
this.inputBuffer = "";
/* set state back to 'standby' for possible telnet server push data */
this.state = "standby";
this.removeListener("bufferexceeded", buffExcHandler);
}
function buffExcHandler() {
if (execTimeout !== null) {
clearTimeout(execTimeout);
}
if (!this.inputBuffer) return reject(new Error("response not received"));
resolve(this.inputBuffer);
/* reset stored response */
this.inputBuffer = "";
/* set state back to 'standby' for possible telnet server push data */
this.state = "standby";
}
});
}).asCallback(callback);
}
send(data, opts, callback) {
if (opts && opts instanceof Function) callback = opts;
return new Promise((resolve, reject) => {
if (opts && opts instanceof Object) {
this.ors = opts.ors || this.ors;
this.sendTimeout = opts.timeout || this.sendTimeout;
this.maxBufferLength = opts.maxBufferLength || this.maxBufferLength;
this.waitfor = opts.waitfor
? opts.waitfor instanceof RegExp
? opts.waitfor
: RegExp(opts.waitfor)
: false;
}
data += this.ors;
if (this.socket.writable) {
this.on("data", sendHandler);
let response = "";
try {
this.socket.write(data, "utf8", () => {
this.state = "standby";
if (!this.waitfor || !opts) {
setTimeout(() => {
if (response === "") {
this.removeListener("data", sendHandler);
reject(new Error("response not received"));
return;
}
this.removeListener("data", sendHandler);
resolve(response);
}, this.sendTimeout);
}
});
} catch (e) {
this.removeListener("data", sendHandler);
reject(new Error("send data failed"));
}
const self = this;
function sendHandler(data) {
response += data.toString();
if (self.waitfor) {
if (!self.waitfor.test(response)) return;
self.removeListener("data", sendHandler);
resolve(response);
}
}
} else {
reject(new Error("socket not writable"));
}
}).asCallback(callback);
}
getSocket() {
return this.socket;
}
end() {
return new Promise((resolve) => {
this.socket.end();
resolve();
});
}
destroy() {
return new Promise((resolve) => {
this.socket.destroy();
resolve();
});
}
_parseData(chunk, callback) {
let promptIndex = "";
if (chunk[0] === 255 && chunk[1] !== 255) {
this.inputBuffer = "";
const negReturn = this._negotiate(chunk);
if (negReturn == undefined) return;
else chunk = negReturn;
}
if (this.state === "start") {
this.state = "getprompt";
}
if (this.state === "getprompt") {
const stringData = chunk.toString();
let promptIndex = utils.search(stringData, this.shellPrompt);
if (utils.search(stringData, this.loginPrompt) !== -1) {
/* make sure we don't end up in an infinite loop */
if (!this.loginPromptReceived) {
this.state = "login";
this._login("username");
this.loginPromptReceived = true;
}
} else if (utils.search(stringData, this.passwordPrompt) !== -1) {
this.state = "login";
this._login("password");
} else if (
typeof this.failedLoginMatch !== "undefined" &&
utils.search(stringData, this.failedLoginMatch) !== -1
) {
this.state = "failedlogin";
this.emit("failedlogin", stringData);
this.destroy();
} else if (promptIndex !== -1) {
if (!(this.shellPrompt instanceof RegExp))
this.shellPrompt = stringData.substring(promptIndex);
this.state = "standby";
this.inputBuffer = "";
this.loginPromptReceived = false;
this.emit("ready", this.shellPrompt);
this.connected = true
if (callback) callback("ready", this.shellPrompt);
} else {
return;
}
} else if (this.state === "response") {
if (this.inputBuffer.length >= this.maxBufferLength) {
return this.emit("bufferexceeded");
}
const stringData = chunk.toString();
this.inputBuffer += stringData;
promptIndex = utils.search(this.inputBuffer, this.shellPrompt);
if (promptIndex === -1 && stringData.length !== 0) {
if (utils.search(stringData, this.pageSeparator) !== -1) {
this.socket.write(Buffer.from("20", "hex"));
}
return;
}
let response = this.inputBuffer.split(this.irs);
for (let i = response.length - 1; i >= 0; --i) {
if (utils.search(response[i], this.pageSeparator) !== -1) {
response[i] = response[i].replace(this.pageSeparator, "");
if (response[i].length === 0) response.splice(i, 1);
}
}
if (this.echoLines === 1) response.shift();
else if (this.echoLines > 1) response.splice(0, this.echoLines);
/* remove prompt */
if (this.stripShellPrompt) {
const idx = response.length - 1;
response[idx] =
utils.search(response[idx], this.shellPrompt) > -1
? response[idx].replace(this.shellPrompt, "")
: "";
}
this.response = response;
this.emit("responseready");
}
}
_login(handle) {
if ((handle === "username" || handle === "password") && this.socket.writable) {
this.socket.write(this[handle] + this.ors, "utf8", () => {
this.state = "getprompt";
});
// this.state = 'getprompt';
}
}
_negotiate(chunk) {
/* info: http://tools.ietf.org/html/rfc1143#section-7
* refuse to start performing and ack the start of performance
* DO -> WONT WILL -> DO */
const packetLength = chunk.length;
let negData = chunk;
let cmdData = null;
let negResp = null;
for (let i = 0; i < packetLength; i += 3) {
if (chunk[i] != 255) {
negData = chunk.slice(0, i);
cmdData = chunk.slice(i);
break;
}
}
negResp = negData.toString("hex").replace(/fd/g, "fc").replace(/fb/g, "fd");
if (this.socket.writable) {
this.socket.write(Buffer.from(negResp, "hex"));
}
if (cmdData != undefined) return cmdData;
else return;
}
_checkSocket(sock) {
return (
this.extSock !== null &&
typeof this.extSock === "object" &&
typeof this.extSock.pipe === "function" &&
this.extSock.writable !== false &&
typeof this.extSock._write === "function" &&
typeof this.extSock._writableState === "object" &&
this.extSock.readable !== false &&
typeof this.extSock._read === "function" &&
typeof this.extSock._readableState === "object"
);
}
}
export default Telnet;