Files
minisrv/zefie_wtvp_minisrv/client_sim.js
2026-04-26 23:04:01 -04:00

2902 lines
133 KiB
JavaScript

const path = require('path');
const classPath = path.resolve(__dirname + path.sep + "includes" + path.sep + "classes" + path.sep) + path.sep;
require(classPath + "Prototypes.js");
const WTVSec = require(classPath + "WTVSec.js");
const WTVShared = require(classPath + "/WTVShared.js")['WTVShared'];
const LZPF = require(classPath + "/LZPF.js");
const WTVMime = require(classPath + "/WTVMime.js");
const net = require('net');
const crypto = require('crypto');
const CryptoJS = require('crypto-js');
const zlib = require('zlib');
const AdmZip = require('adm-zip');
/**
* WebTV Client Simulator
*
* This simulator emulates a WebTV client connecting to a WebTV service
* using the WTVP protocol with proper authentication and service discovery.
*/
class WebTVClientSimulator {
constructor(host, port, ssid, url, outputFile = null, maxRedirects = 10, useEncryption = false, request_type_download = false, debug = false, tricks = false, followImages = false, followAll = false, maxDepth = 5, maxRetries = 5, requestDelay = 250, boxType = null, username = null, keepgz = false, request_type_post = false, postData = null, testing = false) {
this.host = host;
this.port = port;
this.ssid = ssid;
this.url = url;
this.keepgz = keepgz;
this.request_type_post = request_type_post;
this.postData = postData;
this.request_type_download = request_type_download;
this.outputFile = outputFile;
this.followImages = followImages;
this.followAll = followAll;
this.maxDepth = maxDepth;
this.maxRetries = maxRetries;
this.requestDelay = requestDelay;
this.currentDepth = 0;
this.currentwtvsec = null;
this.authenticated = false;
this.downloadedUrls = new Set(); // Track what we've already downloaded
this.pendingDownloads = []; // Queue of {url, referrer} objects to download
this.allContent = new Map(); // Store all downloaded content
this.downloadChecksums = new Map(); // Store expected MD5 checksums for validation
this.maxRedirects = maxRedirects;
this.useEncryption = useEncryption;
this.encryptionEnabled = false;
this.redirectCount = 0;
this.useTricksAccess = tricks;
this.tricksAccessUsed = false; // Track if we've used our "one last time" redirect
this.userIdDetected = false;
this.targetUrlFetched = false; // Prevent multiple target URL fetches
this.services = new Map(); // Store service name -> {host, port} mappings
this.wtvsec = null;
this.wtvshared = new WTVShared(null, true);
this.ticket = null;
this.incarnation = 0; // Start at 0, will be incremented to 1 on first request
this.lastHost = null; // Track last host for incarnation management
this.currentSocket = null;
this.socketPool = new Map(); // Cache sockets by host:port
this.challengeResponse = null;
this.initial_key = null; // Store initial key from wtv-initial-key header
this.hasSeenEncryptedResponse = false; // Track if we've seen an encrypted response
this.previousUrl = null; // Store previous URL for Referer header
this.debug = debug;
this.testing = testing;
// In testing mode, auto-enable debug but suppress normal output
if (this.testing && !this.debug) {
this.debug = true;
}
this.defaultBox = "plus";
this.connectSessionId = crypto.randomBytes(4).toString('hex');
this.username = username;
// Load minisrv config to get the initial shared key
this.minisrv_config = this.wtvshared.readMiniSrvConfig(true, false);
this.debugLog(`WebTV Client Simulator starting...`);
this.debugLog(`Target: ${host}:${port}`);
this.debugLog(`SSID: ${ssid}`);
this.debugLog(`Target URL after auth: ${url}`);
this.debugLog(`Box Type: ${boxType}`);
this.debugLog(`Encryption: ${useEncryption ? 'enabled' : 'disabled'}`);
if (outputFile) {
this.debugLog(`Output file: ${outputFile}`);
}
this.boxConfigs = {
"classic": [
"wtv-system-version: 1235",
"wtv-capability-flags: 1009c93bef",
"wtv-client-bootrom-version: 105",
"wtv-client-rom-type: bf0app",
"wtv-system-chipversion: 16842752",
"User-Agent: Mozilla/4.0 WebTV/1.4.2 (compatible; MSIE 3.0)",
"wtv-system-cpuspeed: 112790760",
"wtv-system-sysconfig: 736935823"
],
"plus": [
"wtv-system-version: 7181",
"wtv-capability-flags: 10935ffc8f",
"wtv-client-bootrom-version: 2046",
"wtv-client-rom-type: US-LC2-disk-0MB-8MB",
"wtv-system-chipversion: 51511296",
"User-Agent: Mozilla/4.0 WebTV/2.2.6.1 (compatible; MSIE 4.0)",
"wtv-system-cpuspeed: 166187148",
"wtv-system-sysconfig: 4163328",
"wtv-disk-size: 8006"
],
"derby": [
"wtv-system-version: 7253",
"wtv-capability-flags: f1d9bdfefef",
"wtv-client-bootrom-version: 2243",
"wtv-client-rom-type: US-LC2-disk-0MB-8MB-softmodem-CPU5230",
"wtv-system-chipversion: 53608448",
"User-Agent: Mozilla/4.0 WebTV/2.2.6.1 (compatible; MSIE 4.0)",
"wtv-system-cpuspeed: 166164434",
"wtv-system-sysconfig: 3115520",
"wtv-disk-size: 8006"
],
"echostar": [
"wtv-system-version: 17015",
"wtv-capability-flags: 21816935fec8f",
"wtv-client-rom-type: US-WEBSTAR-disk-0MB-16MB-softmodem-CPU5230",
"wtv-client-bootrom-version: 2524",
"wtv-system-chipversion: 53608448",
"wtv-system-sysconfig: 3130128",
"wtv-system-cpuspeed: 166164662",
"User-Agent: Mozilla/4.0 WebTV/2.8.2 (compatible; MSIE 4.0)"
],
"newclassic": [
"wtv-system-version: 5792",
"wtv-capability-flags: 5499dbafef",
"wtv-client-bootrom-version: 2525",
"wtv-client-rom-type: US-BPS-flashdisk-0MB-8MB-softmodem-CPU5230",
"wtv-system-chipversion: 84017152",
"User-Agent: Mozilla/4.0 WebTV/2.8.2 (compatible; MSIE 4.0)",
"wtv-system-cpuspeed: 148141518",
"wtv-system-sysconfig: 3133702",
"wtv-disk-size: 3990"
],
"newplus": [
"wtv-system-version: 5792",
"wtv-capability-flags: 5c9bdfefef",
"wtv-client-bootrom-version: 2525",
"wtv-client-rom-type: US-LC2-flashdisk-0MB-16MB-softmodem-CPU5230",
"wtv-system-chipversion: 53608448",
"User-Agent: Mozilla/4.0 WebTV/2.8.2 (compatible; MSIE 4.0)",
"wtv-system-cpuspeed: 166330740",
"wtv-system-sysconfig: 3116068",
"wtv-disk-size: 8006"
],
"ultimatetv": [
"wtv-system-version: 28220",
"wtv-capability-flags: 6f217b935dec8e",
"wtv-client-bootrom-version: 2545",
"wtv-client-rom-type: US-DTV-disk-0MB-32MB-softmodem-CPU5230",
"wtv-system-chipversion: 0x04120000",
"User-Agent: Mozilla/4.0 WebTV/2.8.2 (compatible; MSIE 4.0)",
"wtv-system-cpuspeed: 249088032",
"wtv-system-sysconfig: 0x034dea33",
"wtv-disk-size: 156330720"
],
"dreamcast": [
"wtv-system-version: 5254",
"wtv-capability-flags: 19d4928cf",
"wtv-client-bootrom-version: 5254",
"wtv-client-rom-type: JP-Fiji",
"User-Agent: Mozilla/4.0 WebTV/2.8.2 (compatible; MSIE 4.0)"
]
};
this.boxType = boxType || this.defaultBox;
}
getBoxConfig(box) {
// Aliases
switch (box) {
case "bf0":
case "bf0app":
return this.boxConfigs["classic"];
case "webstar":
case "dishplayer":
return this.boxConfigs["echostar"];
case "lc2":
case "lucy":
return this.boxConfigs["plus"];
case "lc2.5":
return this.boxConfigs["newplus"];
case "utv":
return this.boxConfigs["ultimatetv"];
case "dc":
return this.boxConfigs["dreamcast"];
}
return this.boxConfigs[box] || this.defaultBoxConfig;
}
getBoxHeaders(box) {
const config = this.getBoxConfig(box);
return config.join("\r\n")+"\r\n";
}
debugLog(...args) {
if (this.debug && !this.testing) {
console.log(...args);
}
}
debugLogIfError(status, ...args) {
// In testing mode, only show debug info if the status is not 200
if (this.debug && (!this.testing || !status.startsWith('200'))) {
console.log(...args);
}
}
/**
* Decompress response body based on content encoding headers
*/
decompressBody(body, headers) {
if (!Buffer.isBuffer(body) || body.length === 0) {
return body;
}
try {
// Check for LZPF compression first (WebTV specific)
if (headers['wtv-lzpf'] === '0') {
this.debugLog('Decompressing LZPF compressed body...');
const lzpf = new LZPF();
const decompressed = lzpf.expand(body);
this.debugLog(`LZPF decompression: ${body.length} bytes -> ${decompressed.length} bytes`);
// Validate decompressed size matches content-length header
const expectedSize = headers['content-length'] ? parseInt(headers['content-length']) : 0;
if (expectedSize > 0 && decompressed.length !== expectedSize) {
console.warn(`LZPF decompression size mismatch: expected ${expectedSize} bytes, got ${decompressed.length} bytes`);
this.debugLog(`LZPF size validation failed - this may indicate incomplete or corrupted data`);
}
return decompressed;
}
// Check for standard gzip/deflate compression
if (headers['content-encoding']) {
const encoding = headers['content-encoding'].toLowerCase();
this.debugLog(`Decompressing ${encoding} compressed body...`);
if (encoding === 'deflate') {
const decompressed = zlib.inflateSync(body);
this.debugLog(`Deflate decompression: ${body.length} bytes -> ${decompressed.length} bytes`);
return decompressed;
} else if (encoding === 'gzip') {
const decompressed = zlib.gunzipSync(body);
this.debugLog(`Gzip decompression: ${body.length} bytes -> ${decompressed.length} bytes`);
return decompressed;
}
}
// No compression detected, return original body
return body;
} catch (error) {
console.error('Error decompressing response body:', error);
this.debugLog('Returning original compressed body due to decompression error');
return body;
}
}
/**
* Start the simulation by connecting to wtv-1800:/preregister
*/
async start() {
try {
await this.makeRequestWithRetry('wtv-1800', '/preregister?scriptless-visit-reason=10&0');
} catch (error) {
console.error('Failed to start simulation:', error);
}
}
/**
* Make a WTVP request to a service
*/
async makeRequest(serviceName, path, data = null, skipRedirects = false, referrerUrl = null) {
return new Promise((resolve, reject) => {
const currentUrl = `${serviceName}:${path}`;
// Prevent requests to client: URLs
if (serviceName.startsWith('client')) {
this.debugLog(`Blocking request to client: URL: ${currentUrl}`);
return;
}
// Increment incarnation for each new request (like real WebTV client)
this.incarnation++;
this.debugLog(`Using incarnation: ${this.incarnation} for ${serviceName}:${path}`);
// Determine host and port for the service
let targetHost = this.host;
let targetPort = this.port;
if (this.services.has(serviceName)) {
const service = this.services.get(serviceName);
targetHost = service.host;
targetPort = service.port;
}
this.debugLog(`\n--- Making request to ${serviceName}:${path} at ${targetHost}:${targetPort} ---`);
const socketKey = `${targetHost}:${targetPort}`;
let socket = this.socketPool.get(socketKey);
let isNewConnection = false;
// Check if we can reuse an existing socket
// For encrypted connections, always create a new socket to avoid encryption state issues
if (socket && !socket.destroyed && socket.readyState === 'open' && !socket._inUse && !this.encryptionEnabled) {
this.debugLog(`Reusing existing socket for ${socketKey}`);
this.currentSocket = socket;
socket._inUse = true; // Mark socket as in use
} else {
this.debugLog(`Creating new socket for ${socketKey}`);
socket = new net.Socket();
socket._inUse = true; // Mark socket as in use
this.socketPool.set(socketKey, socket);
this.currentSocket = socket;
isNewConnection = true;
}
let responseData = Buffer.alloc(0);
let requestSent = false;
let responseHandled = false;
const cleanupListeners = () => {
socket.removeListener('data', handleData);
socket.removeListener('close', handleClose);
socket.removeListener('error', handleError);
socket.removeListener('timeout', handleTimeout);
};
const sendRequest = () => {
if (requestSent) return;
requestSent = true;
let requestData;
if (this.encryptionEnabled && this.wtvsec && this.authenticated) {
// For encrypted requests, first send SECURE ON, then immediately send the encrypted request
// This matches the real WebTV client behavior seen in packet captures
// Only send SECURE ON after successful authentication
this.debugLog('Sending SECURE ON request...');
const secureOnBuffer = this.buildSecureOnRequest();
socket.write(secureOnBuffer);
// Send encrypted request immediately after (as seen in pcap analysis)
setImmediate(() => {
this.debugLog('Sending encrypted request...');
const encryptedRequestData = this.buildEncryptedRequest(serviceName, path, data, referrerUrl);
socket.write(encryptedRequestData);
});
} else {
// Send regular request
requestData = this.buildRegularRequest(serviceName, path, data, referrerUrl);
this.debugLog('Sending request:');
this.debugLog(requestData.toString());
socket.write(requestData);
}
};
const handleData = (chunk) => {
responseData = Buffer.concat([responseData, chunk]);
this.debugLog(`Received chunk: ${chunk.length} bytes (total: ${responseData.length} bytes)`);
// Debug: Show received data for POST requests
if (data) {
this.debugLog('POST Response chunk:', chunk.toString('utf8').slice(0, 200) + (chunk.length > 200 ? '...' : ''));
this.debugLog('POST Response hex dump:', chunk.toString('hex').slice(0, 100) + (chunk.length > 50 ? '...' : ''));
}
// Clear any existing timeout for LZPF completion detection
if (this.lzpfTimeoutId) {
clearTimeout(this.lzpfTimeoutId);
this.lzpfTimeoutId = null;
}
// Check if we have a complete response
if (this.encryptionEnabled) {
// For encrypted responses, we need to handle differently
if (!responseHandled) {
const result = this.handleEncryptedResponse(responseData, resolve, reject, false, skipRedirects);
if (result === true) { // If response was handled
responseHandled = true;
cleanupListeners();
socket._inUse = false;
}
}
} else {
// Regular response handling
// Only check for header/body split, do not convert to string
// Use both CRLF and LF as in handleResponse
const crlfcrlf = Buffer.from('\r\n\r\n');
const lflf = Buffer.from('\n\n');
let idx = responseData.indexOf(crlfcrlf);
if (idx === -1) idx = responseData.indexOf(lflf);
// For POST requests, also check if we have what looks like a complete HTTP response
// Detect either HTTP-style or WTV-style status lines
const headSample = responseData.toString('utf8', 0, Math.min(32, responseData.length));
const hasHttpStatus = /^(?:HTTP\/[\d\.]+ \d+)/.test(headSample);
const hasWtvStatus = /^(?:\d{3}\s)/.test(headSample); // e.g., '200 OK' without HTTP/
// Debug: Show detection status for POST requests
if (data) {
this.debugLog(`POST response detection: headerSeparator=${idx !== -1}, httpStatus=${hasHttpStatus || hasWtvStatus}, totalBytes=${responseData.length}`);
}
if ((idx !== -1 || (data && (hasHttpStatus || hasWtvStatus) && responseData.length > 20)) && !responseHandled) {
responseHandled = true;
this.debugLog('Complete response detected, processing...');
if (data && idx === -1) {
this.debugLog('POST response without standard header separator detected');
}
cleanupListeners();
socket._inUse = false;
this.handleResponse(responseData, resolve, reject, skipRedirects, currentUrl, socket, socketKey);
}
}
};
const handleClose = () => {
this.debugLog('Connection closed, removing from socket pool');
this.socketPool.delete(socketKey);
socket._inUse = false;
// Clear any pending LZPF timer
if (this.lzpfTimeoutId) {
clearTimeout(this.lzpfTimeoutId);
this.lzpfTimeoutId = null;
}
if (responseData.length > 0 && !responseHandled) {
// Only process if not already processed
if (this.encryptionEnabled) {
// For encrypted sessions, force processing on close
this.debugLog('Processing encrypted response on connection close...');
if (data) {
this.debugLog('POST response (enc) received on close:', responseData.toString('utf8', 0, Math.min(500, responseData.length)) + (responseData.length > 500 ? '...' : ''));
}
responseHandled = true;
cleanupListeners();
// Force processing regardless of Content-Length completeness
try {
this.handleEncryptedResponse(responseData, resolve, reject, true, skipRedirects);
} catch (e) {
console.error('Error handling encrypted response on close:', e);
reject(e);
}
} else {
this.debugLog('Processing response on connection close...');
if (data) {
this.debugLog('POST response received on close:', responseData.toString('utf8').slice(0, 500) + (responseData.length > 500 ? '...' : ''));
this.debugLog('POST response hex on close:', responseData.toString('hex').slice(0, 200) + (responseData.length > 100 ? '...' : ''));
}
const crlfcrlf = Buffer.from('\r\n\r\n');
const lflf = Buffer.from('\n\n');
let idx = responseData.indexOf(crlfcrlf);
if (idx === -1) idx = responseData.indexOf(lflf);
if (idx === -1) {
responseHandled = true;
this.debugLog('Processing incomplete response on close...');
cleanupListeners();
this.handleResponse(responseData, resolve, reject, skipRedirects, currentUrl, socket, socketKey);
} else {
responseHandled = true;
this.debugLog('Processing complete response on close...');
cleanupListeners();
this.handleResponse(responseData, resolve, reject, skipRedirects, currentUrl, socket, socketKey);
}
}
} else if (responseData.length === 0) {
this.debugLog('Connection closed with no response data');
if (data) {
console.warn('POST request received no response from server');
this.debugLog('POST request that got no response was to:', currentUrl || 'unknown URL');
}
}
};
const handleError = (error) => {
console.error('Socket error:', error);
this.socketPool.delete(socketKey);
socket._inUse = false;
cleanupListeners();
reject(error);
};
const handleTimeout = () => {
if (data) {
console.error(`POST request timed out after 10 seconds - server not responding to: ${currentUrl}`);
} else {
console.error('Request timed out');
}
socket.destroy();
this.socketPool.delete(socketKey);
socket._inUse = false;
cleanupListeners();
reject(new Error(data ? 'POST request timeout - server not responding' : 'Request timeout'));
};
// Set up event listeners
socket.on('data', handleData);
socket.on('close', handleClose);
socket.on('error', handleError);
socket.setTimeout(data ? 10000 : 30000, handleTimeout); // Shorter timeout for POST requests
if (isNewConnection) {
socket.connect(targetPort, targetHost, () => {
this.debugLog(`Connected to ${targetHost}:${targetPort}`);
sendRequest();
});
} else {
// Socket is already connected, send request immediately
sendRequest();
}
});
}
/**
* Build a regular (unencrypted) WTVP request
*/
buildRegularRequest(serviceName, path, data = null, referrerUrl = null) {
const method = data ? 'POST' : 'GET';
let request = `${method} ${serviceName}:${path}\r\n`;
// Add Referer header - prefer explicit referrerUrl, fallback to previousUrl
const refererToUse = referrerUrl || this.previousUrl;
if (refererToUse) {
request += `Referer: ${refererToUse}\r\n`;
}
// Add required headers (matching real WebTV client from PCAP)
request += `wtv-request-type: ${((this.request_type_download) ? 'download' : 'primary')}\r\n`;
request += `wtv-client-serial-number: ${this.ssid}\r\n`;
request += `Accept-Language: en\r\n`;
request += `wtv-incarnation: ${this.incarnation}\r\n`;
// Generate a random 8 character (4 byte) hex code for wtv-connect-session-id
request += `wtv-connect-session-id: ${this.connectSessionId}\r\n`
// Add additional headers that real client sends (from PCAP analysis)
if (this.useEncryption) request += `wtv-encryption: true\r\n`;
if (!this.challengeResponse) request += `wtv-script-id: 0\r\n`;
if (!this.challengeResponse) request += `wtv-script-mod: 0\r\n`;
request += this.getBoxHeaders(this.boxType);
request += `wtv-client-address: 0.0.0.0\r\n`;
// Add challenge response if we have one
if (this.challengeResponse) {
request += `wtv-challenge-response: ${this.challengeResponse}\r\n`;
this.debugLog('Added challenge response to request');
this.challengeResponse = null; // Clear challenge response after adding to request
}
// Add ticket if we have one
if (this.ticket) {
request += `wtv-ticket: ${this.ticket}\r\n`;
}
// Add content if POST
if (data) {
const content = typeof data === 'string' ? data : JSON.stringify(data);
request += `Content-Type: application/x-www-form-urlencoded\r\n`;
request += `Content-Length: ${content.length}\r\n`;
request += `\r\n${content}`;
} else {
request += '\r\n';
}
return Buffer.from(request, 'utf8');
}
/**
* Build a SECURE ON request (sent in plaintext to establish encryption)
*/
buildSecureOnRequest() {
// SECURE ON should match real WebTV client exactly - no URL, just the method
let request = `SECURE ON\r\n`;
request += `Accept-Language: en-US,en\r\n`;
if (this.ticket) {
request += `wtv-ticket: ${this.ticket}\r\n`;
}
request += `wtv-connect-session-id: ${Math.random().toString(16).slice(2, 10)}\r\n`;
request += `wtv-client-serial-number: ${this.ssid}\r\n`;
request += this.getBoxHeaders(this.boxType);
request += `wtv-encryption: true\r\n`;
request += `wtv-script-id: -154276969\r\n`;
request += `wtv-script-mod: ${Math.floor(Date.now() / 1000)}\r\n`;
request += `wtv-incarnation:${this.incarnation}\r\n`; // Note: no space after colon
request += '\r\n';
this.debugLog("Built SECURE ON request:", request);
return Buffer.from(request, 'utf8');
}
/**
* Build an encrypted WTVP request
*/
buildEncryptedRequest(serviceName, path, data = null, referrerUrl = null) {
const method = data ? 'POST' : 'GET';
let request = `${method} ${serviceName}:${path}\r\n`;
// Add Referer header - prefer explicit referrerUrl, fallback to previousUrl
const refererToUse = referrerUrl || this.previousUrl;
if (refererToUse) {
request += `Referer: ${refererToUse}\r\n`;
}
// For encrypted requests, only include the minimal necessary headers
// The SECURE ON already sent the auth and session info
request += `wtv-request-type: ${(this.request_type_download) ? 'download' : 'primary'}\r\n`;
request += `wtv-show-time: 0\r\n`;
request += `wtv-viewer: zefie-minisrv-client-sim\r\n`; // Note: no space after colon
// Add content if POST
if (data) {
const content = typeof data === 'string' ? data : JSON.stringify(data);
request += `Content-Type: application/x-www-form-urlencoded\r\n`;
request += `Content-Length: ${content.length}\r\n`;
request += `\r\n${content}`;
} else {
request += '\r\n';
}
// Encrypt the request using RC4 with key 0 (server expects Decrypt(0, enc_data))
try {
this.debugLog("encrypting request:", request);
this.wtvsec.set_incarnation(this.incarnation); // Ensure WTVSec has the correct incarnation
const encryptedBuffer = this.wtvsec.Encrypt(0, request);
return Buffer.from(encryptedBuffer);
} catch (error) {
console.error('Error encrypting request:', error);
return Buffer.from(request, 'utf8');
}
}
/**
* Handle encrypted response data
*/
handleEncryptedResponse(responseData, resolve, reject, forceProcess = false, skipRedirects = false) {
try {
// Find header/body split using CRLF CRLF (\r\n\r\n) or fallback to LF LF (\n\n)
let idx = -1;
let sepLen = 0;
const crlfcrlf = Buffer.from('\r\n\r\n');
const lflf = Buffer.from('\n\n');
idx = responseData.indexOf(crlfcrlf);
if (idx !== -1) {
sepLen = 4;
} else {
idx = responseData.indexOf(lflf);
if (idx !== -1) sepLen = 2;
}
if (idx === -1) {
// Not a complete response yet
return false;
}
// Split headers and body - headers are always plaintext
const headerSection = responseData.slice(0, idx).toString('utf8');
const bodyBuffer = responseData.slice(idx + sepLen);
// Parse headers first to check content-length
const lines = headerSection.split(/\r?\n/);
const statusLine = lines[0].replaceAll('\r', '');
const headers = {};
for (let i = 1; i < lines.length; i++) {
const line = lines[i].replaceAll('\r', '');
const colonIndex = line.indexOf(':');
if (colonIndex > 0) {
const key = line.slice(0, colonIndex).toLowerCase();
const value = line.slice(colonIndex + 1).trim();
headers[key] = value;
}
}
// Check if we have received the complete body based on content-length
const contentLength = headers['content-length'] ? parseInt(headers['content-length']) : 0;
// Check if content is LZPF compressed (server sends wtv-lzpf: 0 header)
const isLZPFCompressed = headers['wtv-lzpf'] === '0';
const isThisResponseEncrypted = headers['wtv-encrypted'] === 'true';
// For LZPF responses, we can't rely on content-length since it's the uncompressed size
if (isLZPFCompressed && bodyBuffer.length > 0 && !forceProcess) {
this.debugLog(`LZPF response detected with ${bodyBuffer.length} bytes (uncompressed size: ${contentLength})`);
// Process LZPF response after a short delay to collect all data
if (!this.lzpfTimeoutId) {
this.lzpfTimeoutId = setTimeout(() => {
this.debugLog(`LZPF timeout - processing response with ${bodyBuffer.length} bytes`);
this.lzpfTimeoutId = null;
// Force processing by calling again with forceProcess = true
this.handleEncryptedResponse(responseData, resolve, reject, true, false);
}, 100);
return false;
}
// If timeout has expired, fall through to process the response
this.debugLog(`LZPF response ready - processing with ${bodyBuffer.length} bytes`);
}
if (contentLength > 0 && bodyBuffer.length < contentLength && !isLZPFCompressed && !forceProcess) {
if (!isThisResponseEncrypted) {
// For non-encrypted, non-LZPF responses, wait for exact content-length
this.debugLog(`Waiting for more data: received ${bodyBuffer.length}/${contentLength} bytes`);
return false;
} else {
// For encrypted responses that are not LZPF, we need to be more conservative
// Encrypted data size might not match content-length exactly
this.debugLog(`Waiting for encrypted data: received ${bodyBuffer.length}/${contentLength} bytes`);
return false;
}
}
this.debugLog('\nReceived encrypted response:');
this.debugLog('Headers:');
this.debugLog(headerSection);
this.debugLog(`Status: ${statusLine}`);
this.debugLog(`Body buffer size: ${bodyBuffer.length} bytes`);
// Decrypt the body if this specific response is marked as encrypted
let body = Buffer.alloc(0);
const isResponseEncrypted = headers['wtv-encrypted'] === 'true';
if (bodyBuffer.length > 0 && isResponseEncrypted && this.encryptionEnabled && this.wtvsec) {
try {
this.debugLog('Decrypting response body...');
const decryptedBuffer = this.wtvsec.Decrypt(1, bodyBuffer);
body = Buffer.from(decryptedBuffer);
this.debugLog(`Body decrypted successfully: ${body.length} bytes`);
} catch (error) {
console.error('Error decrypting response body:', error);
body = bodyBuffer;
}
} else {
body = bodyBuffer;
}
// Decompress the body if needed
body = this.decompressBody(body, headers);
// Handle special headers
this.processHeaders(headers);
// Mark that we've seen an encrypted response
if (headers['wtv-encrypted'] === 'true') {
this.hasSeenEncryptedResponse = true;
}
// Store content if in follow-all mode
if (this.followAll && body.length > 0) {
this.storeContent(this.previousUrl || this.url, { headers, body, status: statusLine });
}
// Don't close the current connection - keep it for reuse
// The socket will be managed by the socket pool
// Check for redirects (Location header)
if ((headers['Location'] || headers['location']) && statusLine.startsWith('302') && !skipRedirects) {
const redirectUrl = headers['Location'] || headers['location'];
this.debugLog(`Following redirect to: ${redirectUrl}`);
this.redirectCount++;
setTimeout(() => {
this.followVisit(redirectUrl)
.then(resolve)
.catch(reject);
}, this.requestDelay);
return true; // Redirect is being followed
}
resolve({ headers, body, status: statusLine });
return true; // Response was handled
} catch (error) {
console.error('Error processing encrypted response:', error);
reject(error);
return true; // Error occurred, stop trying
}
}
handleResponse(responseData, resolve, reject, skipRedirects = false, currentUrl = null, socket = null, socketKey = null) {
// Update previousUrl for next request's Referer header
if (currentUrl) {
this.previousUrl = currentUrl;
}
try {
// Find header/body split using CRLF CRLF (\r\n\r\n) or fallback to LF LF (\n\n)
let idx = -1;
let sepLen = 0;
const crlfcrlf = Buffer.from('\r\n\r\n');
const lflf = Buffer.from('\n\n');
idx = responseData.indexOf(crlfcrlf);
if (idx !== -1) {
sepLen = 4;
} else {
idx = responseData.indexOf(lflf);
if (idx !== -1) sepLen = 2;
}
let headerSection, bodyBuf;
if (idx !== -1) {
headerSection = responseData.slice(0, idx).toString('utf8');
bodyBuf = responseData.slice(idx + sepLen);
} else {
headerSection = responseData.toString('utf8');
bodyBuf = Buffer.alloc(0);
}
const lines = headerSection.split(/\r?\n/);
const statusLine = lines[0].replaceAll('\r', '');
this.debugLog(`Status: ${statusLine}`);
// Parse headers
const headers = {};
for (let i = 1; i < lines.length; i++) {
const line = lines[i].replaceAll('\r', '');
const colonIndex = line.indexOf(':');
if (colonIndex > 0) {
const key = line.slice(0, colonIndex).toLowerCase();
const value = line.slice(colonIndex + 1).trim();
if (headers[key]) {
if (Array.isArray(headers[key])) {
headers[key].push(value);
} else {
headers[key] = [headers[key], value];
}
} else {
headers[key] = value;
}
}
}
this.processHeaders(headers);
this.debugLog("srv headers:", headers);
// Special handler for wtv-head-waiter:/login-stage-two
if (currentUrl && currentUrl.startsWith('wtv-head-waiter:/login-stage-two')) {
const contentLength = headers['content-length'];
if (contentLength && parseInt(contentLength) > 0) {
this.debugLog('Special handling for wtv-head-waiter:/login-stage-two with content-length > 0');
this.debugLog(`Content-Length: ${contentLength}`);
// Decrypt the content if we have encryption enabled
if (this.wtvsec && bodyBuf.length > 0) {
try {
// Only decrypt if not already decrypted before processing headers
if (this.wtvsec && this.useEncryption && headers['wtv-encrypted']) {
this.debugLog('Decrypting login-stage-two content...');
this.wtvsec.set_incarnation(this.incarnation); // Ensure WTVSec has the correct incarnation
const decryptedBuffer = this.wtvsec.Decrypt(1, bodyBuf);
bodyBuf = Buffer.from(decryptedBuffer);
this.debugLog(`Content decrypted successfully: ${bodyBuf.length} bytes`);
}
// Re-decompress after decryption in case it was compressed
bodyBuf = this.decompressBody(bodyBuf, headers);
this.debugLog(`Final content after decrypt+decompress: ${bodyBuf.length} bytes`);
// Debug: Show first 200 chars of decrypted content for verification
this.debugLog('Login-stage-two decrypted content preview:');
this.debugLog(bodyBuf.toString('utf8').slice(0, 200));
} catch (error) {
console.error('Error decrypting login-stage-two content:', error);
}
}
// Parse the HTML to extract usernames and their href links
if (bodyBuf.length > 0 && !this.authenticated) {
const parseResult = this.parseLoginStageTwoHTML(bodyBuf);
if (parseResult.selectedUser) {
// User was specified and found, automatically follow their link
this.debugLog(`Following link for user: ${parseResult.selectedUser.username}`);
setTimeout(() => {
this.followVisit(parseResult.selectedUser.href)
.then(resolve)
.catch(reject);
}, this.requestDelay);
return; // Exit early to follow the user's link
}
// If we get here, either no username was specified or there was an error
// The parseLoginStageTwoHTML method already handles displaying users and exiting
}
}
} else if (currentUrl && currentUrl.startsWith("wtv-head-waiter:/choose-user")) {
// minisrv
const contentLength = headers['content-length'];
if (contentLength && parseInt(contentLength) > 0) {
this.debugLog('Special handling for wtv-head-waiter:/choose-user with content-length > 0');
this.debugLog(`Content-Length: ${contentLength}`);
if (this.wtvsec && bodyBuf.length > 0) {
try {
bodyBuf = this.decompressBody(bodyBuf, headers);
const parseResult = this.parseMinisrvChooseUser(bodyBuf);
if (parseResult.selectedUser) {
// User was specified and found, automatically follow their link
this.debugLog(`Following link for user: ${parseResult.selectedUser.username}`);
setTimeout(() => {
this.followVisit(parseResult.selectedUser.href)
.then(resolve)
.catch(reject);
}, this.requestDelay);
return; // Exit early to follow the user's link
}
} catch (error) {
console.error('Error parsing choose-user HTML:', error);
}
}
}
} else if (currentUrl && (currentUrl.startsWith("wtv-head-waiter:/VLN-stage-two") || currentUrl.startsWith("wtv-head-waiter:/password"))) {
const contentLength = headers['content-length'];
if (contentLength && parseInt(contentLength) > 0) {
this.debugLog('Special handling for wtv-head-waiter:/VLN-stage-two with content-length > 0 (password)');
this.debugLog(`Content-Length: ${contentLength}`);
if (this.wtvsec && bodyBuf.length > 0) {
try {
// Only decrypt if not already decrypted before processing headers
if (this.wtvsec && this.useEncryption && headers['wtv-encrypted']) {
this.debugLog('Decrypting VLN-stage-two content...');
this.wtvsec.set_incarnation(this.incarnation); // Ensure WTVSec has the correct incarnation
const decryptedBuffer = this.wtvsec.Decrypt(1, bodyBuf);
bodyBuf = Buffer.from(decryptedBuffer);
this.debugLog(`Content decrypted successfully: ${bodyBuf.length} bytes`);
}
// Decompress after decryption if needed
bodyBuf = this.decompressBody(bodyBuf, headers);
this.debugLog(`Final content after decrypt+decompress: ${bodyBuf.length} bytes`);
// Debug: Show first 500 chars of decrypted content
this.debugLog('VLN-stage-two decrypted content preview:');
this.debugLog(bodyBuf.toString('utf8').slice(0, 500));
} catch (error) {
console.error('Error decrypting VLN-stage-two content:', error);
}
}
// Parse the HTML to extract usernames and their href links
if (bodyBuf.length > 0) {
if (!headers['user-id']) {
const parseResult = this.parseVLNStageTwoHTML(bodyBuf);
if (parseResult.formData && parseResult.formAction) {
// Prepare form data as application/x-www-form-urlencoded
const formBody = parseResult.formData
? Object.entries(parseResult.formData)
.map(([key, value]) => this.wtvshared.escape(key) + '=' + this.wtvshared.escape(value))
.join('&')
: '';
// Make POST request to formAction with formBody
this.debugLog(`Submitting VLN-stage-two form to ${parseResult.formAction} with password`);
this.makeRequestWithRetry(
parseResult.formAction.split(':')[0],
parseResult.formAction.replace(/^[^:]+:/, ''),
formBody,
false
).catch(err => {
console.error('Error submitting VLN-stage-two form:', err);
this.cleanup();
process.exit(1);
});
}
}
}
}
} else {
// Only decrypt if not already decrypted before processing headers
// We decrypt here if we have encryption enabled but the content wasn't already decrypted
if (this.encryptionEnabled && this.wtvsec && bodyBuf.length > 0) {
this.debugLog('Decrypting response body...');
bodyBuf = this.wtvsec.Decrypt(1, bodyBuf);
}
// Decompress the body if needed
bodyBuf = this.decompressBody(bodyBuf, headers);
}
// Mark that we've seen an encrypted response
if (headers['wtv-encrypted'] === 'true') {
this.hasSeenEncryptedResponse = true;
}
// Store content if in follow-all mode
if (this.followAll && bodyBuf.length > 0) {
this.storeContent(currentUrl || this.previousUrl || this.url, { headers, body: bodyBuf, status: statusLine });
}
// Check if server wants to close connection
if (socket && socketKey) {
if (headers['connection'] && headers['connection'].toLowerCase() === 'close') {
this.debugLog('Server requested connection close, removing socket from pool');
this.socketPool.delete(socketKey);
socket.destroy();
} else if (headers['connection'] && headers['connection'].toLowerCase() === 'keep-alive') {
this.debugLog('Server supports keep-alive, keeping socket in pool');
// Keep socket in pool for reuse
} else {
// Default behavior - close connection if no explicit keep-alive
this.debugLog('No explicit keep-alive, removing socket from pool');
this.socketPool.delete(socketKey);
socket.destroy();
}
}
if (this.userIdDetected && !this.targetUrlFetched) {
this.targetUrlFetched = true;
this.debugLog(`\n*** Authentication complete! Now fetching target URL: ${this.url} ***`);
setTimeout(() => {
this.fetchTargetUrl()
.then(resolve)
.catch(reject);
}, this.requestDelay);
return;
}
if ((headers['wtv-visit'] || headers['location']) && !skipRedirects) {
if (this.redirectCount >= this.maxRedirects) {
// Check if we can use tricks access for one last redirect
if (this.useTricksAccess && !this.tricksAccessUsed) {
this.debugLog(`Maximum redirects (${this.maxRedirects}) reached, but using tricks access for one last redirect`);
this.tricksAccessUsed = true;
this.redirectCount++;
setTimeout(() => {
this.followVisit(headers['wtv-visit'] || headers['location'])
.then(resolve)
.catch(reject);
}, this.requestDelay);
return;
} else {
this.debugLog(`Maximum redirects (${this.maxRedirects}) reached, stopping`);
resolve({ headers, body: bodyBuf, status: statusLine, stopped: true });
return;
}
}
this.redirectCount++;
setTimeout(() => {
this.followVisit(headers['wtv-visit'] || headers['location'])
.then(resolve)
.catch(reject);
}, this.requestDelay);
} else if (headers['wtv-phone-log-url'] && headers['wtv-phone-log-url'].includes("post")) {
this.debugLog(`Following wtv-phone-log-url: ${headers['wtv-phone-log-url']}`);
setTimeout(() => {
this.followVisit(headers['wtv-phone-log-url'], true)
.then(resolve)
.catch(reject);
}, this.requestDelay);
} else {
if (skipRedirects && headers['wtv-visit']) {
// Check if we can use tricks access for one last redirect
if (this.useTricksAccess && !this.tricksAccessUsed) {
this.debugLog(`Would skip wtv-visit redirect, but using tricks access for one last redirect: ${headers['wtv-visit']}`);
this.tricksAccessUsed = true;
this.redirectCount++;
setTimeout(() => {
this.followVisit(headers['wtv-visit'])
.then(resolve)
.catch(reject);
}, this.requestDelay);
return;
} else {
this.debugLog(`Skipping wtv-visit redirect: ${headers['wtv-visit']}`);
}
} else {
this.debugLog('No wtv-visit header found, resolving...');
// If we're fetching the target URL, don't exit here - let handleTargetUrlResponse handle it
if (this.userIdDetected && this.targetUrlFetched) {
resolve({ headers, body: bodyBuf, status: statusLine });
return;
}
this.cleanup();
process.exit(0);
}
resolve({ headers, body: bodyBuf, status: statusLine });
}
} catch (error) {
console.error('Error processing response:', error);
reject(error);
}
}
/**
* Process special WTVP headers
*/
processHeaders(headers) {
// Handle wtv-service headers (can be multiple)
const wtvServices = headers['wtv-service'];
if (wtvServices) {
const serviceValues = Array.isArray(wtvServices) ? wtvServices : [wtvServices];
for (const serviceValue of serviceValues) {
if (serviceValue === 'reset') {
this.debugLog('Clearing service mappings');
this.services.clear();
} else {
// Parse service definition: "name=service-name host=host port=port flags=0x00000001 connections=1"
const nameMatch = serviceValue.match(/name=([^\s]+)/);
const hostMatch = serviceValue.match(/host=([^\s]+)/);
const portMatch = serviceValue.match(/port=([^\s]+)/);
if (nameMatch && hostMatch && portMatch) {
const serviceName = nameMatch[1];
const host = hostMatch[1];
const port = parseInt(portMatch[1]);
this.services.set(serviceName, { host, port });
this.debugLog(`Registered service: ${serviceName} -> ${host}:${port}`);
}
}
}
}
// Handle wtv-initial-key
if (headers['wtv-initial-key']) {
this.initial_key = headers['wtv-initial-key'];
}
// Handle wtv-challenge
if (headers['wtv-challenge']) {
this.debugLog('Received wtv-challenge, processing...');
this.debugLog(`Challenge: ${headers['wtv-challenge']}`);
this.debugLog(`Initial key from server: ${this.initial_key}`);
if (!this.wtvsec) {
this.debugLog('No WTVSec instance, initializing...');
this.wtvsec = new WTVSec(this.minisrv_config, this.incarnation);
// Override the initial shared key with the one provided by the server
if (this.initial_key) {
this.debugLog('Overriding WTVSec initial shared key with server-provided key');
this.wtvsec.initial_shared_key = CryptoJS.enc.Base64.parse(this.initial_key);
this.wtvsec.current_shared_key = this.wtvsec.initial_shared_key;
}
}
try {
// Ensure WTVSec has the correct incarnation
this.wtvsec.set_incarnation(this.incarnation);
// Set incarnation from server if provided
if (headers["wtv-incarnation"]) {
this.debugLog(`Setting incarnation from server: ${headers["wtv-incarnation"]} (previous incarnation: ${this.incarnation})`);
this.wtvsec.set_incarnation(parseInt(headers["wtv-incarnation"]));
this.incarnation = parseInt(headers["wtv-incarnation"]);
}
// Use the appropriate key for challenge processing
// For subsequent challenges (like during user login), use the current shared key
// For the first challenge, use the initial key if provided
const keyToUse = this.wtvsec.current_shared_key || this.initial_key
this.debugLog(`Using key for challenge: ${keyToUse.toString(CryptoJS.enc.Base64)}`);
this.wtvsec.set_incarnation(this.incarnation);
this.debugLog(`Using incarnation for challenge: ${this.wtvsec.incarnation}`);
const challengeResponse = this.wtvsec.ProcessChallenge(headers['wtv-challenge'], keyToUse);
if (challengeResponse && challengeResponse.toString(CryptoJS.enc.Base64)) {
this.initial_key = this.wtvsec.initial_shared_key.toString(CryptoJS.enc.Base64);
this.debugLog('Challenge processed successfully, preparing response');
this.debugLog(`Challenge response: ${challengeResponse.toString(CryptoJS.enc.Base64)}`);
// We'll send the challenge response in the next request
this.challengeResponse = challengeResponse.toString(CryptoJS.enc.Base64);
this.debugLog('Setting wtv-challenge-response header for next request');
// Enable encryption preparation if requested (but don't enable encrypted communication yet)
if (this.useEncryption) {
this.debugLog('*** Encryption requested - preparing encryption after challenge processing ***');
this.wtvsec.SecureOn(); // Initialize RC4 sessions
// Note: this.encryptionEnabled will be set to true only after authentication
}
}
} catch (error) {
console.error('Error processing challenge:', error.message);
console.error('Stack trace:', error.stack);
}
}
// Handle wtv-ticket
if (headers['wtv-ticket']) {
this.debugLog('Received wtv-ticket');
this.ticket = headers['wtv-ticket'];
}
// Handle user-id header - indicates successful authentication
if (headers['user-id'] || (headers['wtv-visit'] && headers['wtv-visit'].startsWith('wtv-register:/splash'))) {
this.debugLog(`*** Authentication successful! user-id detected: ${headers['user-id']} ***`);
this.userIdDetected = true;
// Enable encrypted communication if requested and we have WTVSec
if (this.useEncryption && this.wtvsec) {
this.debugLog('*** Enabling encrypted communication after successful authentication ***');
this.encryptionEnabled = true;
} else if (this.useEncryption && !this.wtvsec) {
this.debugLog('*** Encryption requested but no WTVSec instance - initializing ***');
// Initialize with current incarnation
this.wtvsec = new WTVSec(this.minisrv_config, this.incarnation);
this.wtvsec.SecureOn(); // Initialize RC4 sessions
this.encryptionEnabled = true;
}
this.authenticated = true;
return; // Stop processing other headers since we're authenticated
}
}
/**
* Follow a wtv-visit directive
*/
async followVisit(visitUrl, post = false) {
this.debugLog(`Parsing wtv-visit URL: ${visitUrl}`);
// Parse the visit URL: service:/path or service:path
const match = visitUrl.match(/^([\w-]+):\/?(.*)/);
if (match) {
const serviceName = match[1];
const path = '/' + (match[2] || '');
this.debugLog(`Parsed service: ${serviceName}, path: ${path}`);
return await this.makeRequestWithRetry(serviceName, path, (post) ? '1' : null, null);
} else {
throw new Error(`Invalid wtv-visit URL: ${visitUrl}`);
}
}
/**
* Fetch the target URL after authentication is complete
*/
async fetchTargetUrl() {
this.debugLog(`Fetching target URL: ${this.url}`);
// Handle special case for tricks access with POST
if (this.useTricksAccess && this.request_type_post) {
this.debugLog('Using tricks access with POST - first GET the tricks page, then POST to wtv-visit');
// First, GET the tricks page to get the wtv-visit URL
const tricksUrl = `wtv-tricks:/access?url=${this.wtvshared.escape(this.url)}`;
const match = tricksUrl.match(/^([\w-]+):\/?(.*)/);
if (match) {
const serviceName = match[1];
const path = '/' + (match[2] || '');
try {
// GET the tricks page (skip automatic redirects so we can handle them manually)
const tricksResult = await this.makeRequestWithRetry(serviceName, path, null, true);
// Extract wtv-visit URL or Location from headers
if (tricksResult.headers['Location'] || tricksResult.headers['location']) {
const visitUrl = tricksResult.headers['Location'] || tricksResult.headers['location'];
this.debugLog(`Got Location URL from tricks page: ${visitUrl}`);
// Now POST to the Location URL
const visitMatch = visitUrl.match(/^([\w-]+):\/?(.*)/);
if (visitMatch) {
const visitServiceName = visitMatch[1];
const visitPath = '/' + (visitMatch[2] || '');
this.debugLog(`Making POST request to Location URL: ${visitUrl} with data: ${this.postData}`);
const result = await this.makeRequestWithRetry(visitServiceName, visitPath, this.postData, false);
return this.handleTargetUrlResponse(result);
}
} else if (tricksResult.headers['wtv-visit']) {
const visitUrl = tricksResult.headers['wtv-visit'];
this.debugLog(`Got wtv-visit URL from tricks page: ${visitUrl}`);
// Now POST to the wtv-visit URL
const visitMatch = visitUrl.match(/^([\w-]+):\/?(.*)/);
if (visitMatch) {
const visitServiceName = visitMatch[1];
const visitPath = '/' + (visitMatch[2] || '');
this.debugLog(`Making POST request to wtv-visit URL: ${visitUrl} with data: ${this.postData}`);
const result = await this.makeRequestWithRetry(visitServiceName, visitPath, this.postData, false);
return this.handleTargetUrlResponse(result);
}
} else {
throw new Error('No Location or wtv-visit header found in tricks page response');
}
} catch (error) {
console.error('Error during tricks access with POST:', error);
throw error;
}
}
} else if (this.useTricksAccess && !this.request_type_post) {
// Regular tricks access (GET)
this.debugLog('Using tricks access for target URL');
this.url = `wtv-tricks:/access?url=${this.wtvshared.escape(this.url)}`;
}
// Parse the target URL
const match = this.url.match(/^([\w-]+):\/?(.*)/);
if (match) {
const serviceName = match[1];
const path = '/' + (match[2] || '');
this.debugLog(`Parsed target service: ${serviceName}, path: ${path}`);
try {
// Determine if this should be a POST request
const requestData = this.request_type_post ? this.postData : null;
if (this.request_type_post) {
this.debugLog(`Making POST request to ${serviceName}:${path} with data: ${requestData}`);
} else {
this.debugLog(`Making GET request to ${serviceName}:${path}`);
}
const result = await this.makeRequestWithRetry(serviceName, path, requestData, false);
return this.handleTargetUrlResponse(result);
} catch (error) {
console.error('Error fetching target URL:', error);
throw error;
}
} else {
throw new Error(`Invalid target URL: ${this.url}`);
}
}
/**
* Handle the response from the target URL
*/
async handleTargetUrlResponse(result) {
// In testing mode, only show the status of the final request
if (this.testing) {
console.log(result.status);
// Only show debug info if the response is not 200
if (!result.status.startsWith('200')) {
this.debugLogIfError(result.status, '\n*** Target URL Response Details ***');
this.debugLogIfError(result.status, 'Status:', result.status);
this.debugLogIfError(result.status, 'Headers:', result.headers);
if (result.body) {
const contentType = result.headers['content-type'] || '';
if (/^text\//.test(contentType) || /json|xml|javascript||download-list/.test(contentType) || contentType === "x-wtv-addresses") {
this.debugLogIfError(result.status, 'Body:', result.body.toString('utf8'));
} else if (result.body.length === 0) {
this.debugLogIfError(result.status, 'Body: <empty response>');
} else {
this.debugLogIfError(result.status, 'Body: <binary data>');
}
}
}
this.cleanup();
process.exit(0);
}
// Handle the response normally for non-testing mode
if (result.body) {
this.debugLog('\n*** Target URL Response Body ***');
if (this.outputFile) {
// Check if target URL returned a download-list and --follow is enabled
const contentType = result.headers['content-type'] || '';
const normalizedContentType = contentType.toLowerCase().split(';')[0].trim();
const isDownloadList = normalizedContentType === 'wtv/download-list';
if (this.followAll) {
// Store the main content first
this.storeContent(this.url, result);
// Process all pending downloads
await this.processAllDownloads();
// Create comprehensive archive
await this.createComprehensiveArchive();
} else if (this.followImages && isDownloadList) {
this.debugLog('Target URL returned download-list content with --follow enabled, creating archive...');
await this.createDownloadListArchive(result.body, result.headers);
} else if (this.followImages) {
await this.saveToFile(result.body, result.headers);
} else {
await this.saveToFile(result.body, result.headers);
}
console.log(`Content saved to: ${this.outputFile}`);
} else {
// Detect text content for CLI output
const contentType = result.headers['content-type'] || '';
if (/^text\//.test(contentType) || /json|xml|javascript||download-list/.test(contentType) || contentType === "x-wtv-addresses") {
console.log(result.body.toString('utf8'));
} else if (result.body.length === 0) {
console.log('<empty response>');
} else {
console.log('<binary data>');
}
}
} else {
this.debugLog('No body content received from target URL');
}
this.debugLog('\n*** Request completed successfully ***');
this.cleanup();
process.exit(0);
return result;
}
/**
* Process the content response without following redirects
*/
processContentResponse(responseData, resolve, reject) {
try {
// Find header/body split using CRLF CRLF (\r\n\r\n) or fallback to LF LF (\n\n)
let idx = -1;
let sepLen = 0;
const crlfcrlf = Buffer.from('\r\n\r\n');
const lflf = Buffer.from('\n\n');
idx = responseData.indexOf(crlfcrlf);
if (idx !== -1) {
sepLen = 4;
} else {
idx = responseData.indexOf(lflf);
if (idx !== -1) sepLen = 2;
}
let headerSection, bodyBuf;
if (idx !== -1) {
headerSection = responseData.slice(0, idx).toString('utf8');
bodyBuf = responseData.slice(idx + sepLen);
} else {
headerSection = responseData.toString('utf8');
bodyBuf = Buffer.alloc(0);
}
const lines = headerSection.split(/\r?\n/);
const statusLine = lines[0].replaceAll('\r', '');
this.debugLog(`Content Status: ${statusLine}`);
// Parse headers
const headers = {};
for (let i = 1; i < lines.length; i++) {
const line = lines[i].replaceAll('\r', '');
const colonIndex = line.indexOf(':');
if (colonIndex > 0) {
const key = line.slice(0, colonIndex).toLowerCase();
const value = line.slice(colonIndex + 1).trim();
headers[key] = value;
}
}
// Decompress the body if needed
bodyBuf = this.decompressBody(bodyBuf, headers);
// Don't close the current connection - keep it for reuse
// The socket will be managed by the socket pool
resolve({ headers, body: bodyBuf, status: statusLine });
} catch (error) {
console.error('Error processing content response:', error);
reject(error);
}
}
/**
* Save content to file - with optional HTML image following
*/
async saveToFile(content, headers = {}) {
const fs = require('fs').promises;
try {
// Check content type for --follow processing
const contentType = headers['content-type'] || '';
const normalizedContentType = contentType.split(';')[0].trim().toLowerCase();
// Handle gzip decompression if content-type is application/gzip and keepgz is false
let processedContent = content;
if (normalizedContentType === 'application/gzip' && !this.keepgz) {
this.debugLog('Decompressing gzip content...');
try {
const buffer = Buffer.isBuffer(content) ? content : Buffer.from(content, 'binary');
processedContent = zlib.gunzipSync(buffer);
this.debugLog('Gzip decompression successful');
} catch (error) {
console.error('Error decompressing gzip content:', error);
this.debugLog('Falling back to original content');
processedContent = content;
}
}
const isHtml = /text\/html/i.test(contentType) ||
(typeof processedContent === 'string' && /<html/i.test(processedContent)) ||
(Buffer.isBuffer(processedContent) && /<html/i.test(processedContent.toString('utf8')));
const isDownloadList = normalizedContentType === 'wtv/download-list';
if (this.followImages && isHtml) {
this.debugLog('HTML content detected with --follow enabled, creating archive...');
await this.createHtmlArchive(processedContent, headers);
} else if (this.followImages && isDownloadList) {
this.debugLog('Download-list content detected with --follow enabled, creating archive...');
await this.createDownloadListArchive(processedContent, headers);
} else {
// Regular file save
await fs.writeFile(this.outputFile, Buffer.isBuffer(processedContent) ? processedContent : Buffer.from(processedContent, 'utf8'));
}
} catch (error) {
console.error('Error saving to file:', error);
throw error;
}
}
/**
* Create a zip archive containing HTML and all referenced images
*/
async createHtmlArchive(htmlContent, headers = {}) {
const fs = require('fs').promises;
const htmlString = Buffer.isBuffer(htmlContent) ? htmlContent.toString('utf8') : htmlContent;
this.debugLog('Creating HTML archive with images...');
// Parse HTML to find image references
const imageUrls = this.extractImageUrls(htmlString);
this.debugLog(`Found ${imageUrls.length} image references:`, imageUrls);
// Determine output filename - change extension to .zip if needed
let archivePath = this.outputFile;
if (!archivePath.endsWith('.zip')) {
const ext = path.extname(archivePath);
archivePath = archivePath.replace(ext, '.zip');
}
// Create zip archive
const zip = new AdmZip();
// Add the main HTML file with service/path structure
const htmlPath = this.getServicePath(this.url, headers);
zip.addFile(htmlPath, Buffer.from(htmlString, 'utf8'));
this.debugLog(`Added HTML file: ${htmlPath}`);
// Download and add images
const downloadedImages = new Set();
for (const imageUrl of imageUrls) {
try {
const imageResult = await this.downloadImage(imageUrl, this.url);
if (imageResult && imageResult.body && !downloadedImages.has(imageUrl)) {
const imagePath = this.getServicePath(imageUrl, imageResult.headers || {});
// Handle gzip decompression if content-type is application/gzip and keepgz is false
let imageContent = imageResult.body;
const contentType = imageResult.headers ? imageResult.headers['content-type'] : '';
const normalizedContentType = contentType.split(';')[0].trim().toLowerCase();
if (normalizedContentType === 'application/gzip' && !this.keepgz) {
this.debugLog(`Decompressing gzip image for ${imageUrl}...`);
try {
const buffer = Buffer.isBuffer(imageResult.body) ? imageResult.body : Buffer.from(imageResult.body, 'binary');
imageContent = zlib.gunzipSync(buffer);
this.debugLog(`Gzip decompression successful for ${imageUrl}`);
} catch (error) {
console.error(`Error decompressing gzip image for ${imageUrl}:`, error);
this.debugLog(`Falling back to original content for ${imageUrl}`);
imageContent = imageResult.body;
}
}
zip.addFile(imagePath, imageContent);
downloadedImages.add(imageUrl);
this.debugLog(`Added image: ${imagePath} (from ${imageUrl})`);
}
} catch (error) {
console.warn(`Failed to download image ${imageUrl}:`, error.message);
}
}
// Write the zip file
zip.writeZip(archivePath);
console.log(`HTML archive created: ${archivePath}`);
console.log(`Archive contains: ${htmlPath} + ${downloadedImages.size} images`);
}
/**
* Create a zip archive containing download-list and all referenced files
*/
async createDownloadListArchive(downloadListContent, headers = {}) {
const fs = require('fs').promises;
const downloadListString = Buffer.isBuffer(downloadListContent) ? downloadListContent.toString('utf8') : downloadListContent;
this.debugLog('Creating download-list archive with referenced files...');
// Extract URLs from the download-list
const downloadUrls = this.extractUrlsFromDownloadList(downloadListString);
this.debugLog(`Found ${downloadUrls.length} file references in download-list`);
// Determine output filename - change extension to .zip if needed
let archivePath = this.outputFile;
if (!archivePath.endsWith('.zip')) {
const ext = path.extname(archivePath);
archivePath = archivePath.replace(ext, '.zip');
}
// Create zip archive
const zip = new AdmZip();
// Add the main download-list file with service/path structure
const downloadListPath = this.getServicePath(this.url, headers);
zip.addFile(downloadListPath, Buffer.from(downloadListString, 'utf8'));
this.debugLog(`Added download-list file: ${downloadListPath}`);
// Download and add referenced files
const downloadedFiles = new Set();
for (const fileUrl of downloadUrls) {
try {
this.debugLog(`Downloading referenced file: ${fileUrl}`);
const match = fileUrl.match(/^([\w-]+):\/?(.*)/);
if (match) {
const serviceName = match[1];
const path = '/' + (match[2] || '');
const fileResult = await this.makeRequestWithRetry(serviceName, path, null, true);
if (fileResult && fileResult.body && !downloadedFiles.has(fileUrl)) {
// Validate checksum if we have one
this.validateDownloadChecksum(fileUrl, fileResult.body);
// Handle gzip decompression if content-type is application/gzip and keepgz is false
let fileContent = fileResult.body;
const contentType = fileResult.headers ? fileResult.headers['content-type'] : '';
const normalizedContentType = contentType.split(';')[0].trim().toLowerCase();
let isgzip = false;
if (normalizedContentType === 'application/gzip' && !this.keepgz) {
this.debugLog(`Decompressing gzip file for ${fileUrl}...`);
try {
const buffer = Buffer.isBuffer(fileResult.body) ? fileResult.body : Buffer.from(fileResult.body, 'binary');
fileContent = zlib.gunzipSync(buffer);
isgzip = true;
this.debugLog(`Gzip decompression successful for ${fileUrl}`);
} catch (error) {
console.error(`Error decompressing gzip file for ${fileUrl}:`, error);
this.debugLog(`Falling back to original content for ${fileUrl}`);
fileContent = fileResult.body;
}
}
let filePath = this.getServicePath(fileUrl, fileResult.headers || {});
if (isgzip) filePath = filePath.slice(0, -3);
zip.addFile(filePath, fileContent);
downloadedFiles.add(fileUrl);
this.debugLog(`Added referenced file: ${filePath}`);
}
}
// Small delay to avoid overwhelming the server
await new Promise(resolve => setTimeout(resolve, this.requestDelay));
} catch (error) {
console.warn(`Failed to download referenced file ${fileUrl}: ${error.message}`);
}
}
// Write the zip file
zip.writeZip(archivePath);
console.log(`Download-list archive created: ${archivePath}`);
console.log(`Archive contains: ${downloadListPath} + ${downloadedFiles.size} referenced files`);
}
/**
* Extract image URLs from HTML content
*/
extractImageUrls(html) {
const imageUrls = [];
// Match img tags with src attributes
const imgTagRegex = /<img[^>]+src\s*=\s*["']([^"']+)["'][^>]*>/gi;
let match;
while ((match = imgTagRegex.exec(html)) !== null) {
const src = match[1];
if (src && !src.startsWith('data:')) { // Skip data URLs
imageUrls.push(src);
}
}
// Also look for CSS background images
const cssBackgroundRegex = /background-image\s*:\s*url\s*\(\s*["']?([^"')]+)["']?\s*\)/gi;
while ((match = cssBackgroundRegex.exec(html)) !== null) {
const src = match[1];
if (src && !src.startsWith('data:')) {
imageUrls.push(src);
}
}
// Look for WebTV-specific image references like <image src="...">
const wtvImageRegex = /<image[^>]+src\s*=\s*["']([^"']+)["'][^>]*>/gi;
while ((match = wtvImageRegex.exec(html)) !== null) {
const src = match[1];
if (src && !src.startsWith('data:')) {
imageUrls.push(src);
}
}
// Remove duplicates and normalize URLs
return [...new Set(imageUrls.map(url => this.normalizeImageUrl(url)))];
}
/**
* Normalize image URL (convert relative URLs to absolute WebTV service URLs)
*/
normalizeImageUrl(url) {
// If it's already a full WebTV service URL, return as-is
if (url.match(/^[\w-]+:/)) {
return url;
}
// If it starts with /, it's relative to the service root
if (url.startsWith('/')) {
// Extract service name from current URL
const currentMatch = this.url.match(/^([\w-]+):/);
if (currentMatch) {
return `${currentMatch[1]}:${url}`;
}
}
// If it's a relative path, resolve it relative to current path
if (!url.startsWith('http://') && !url.startsWith('https://')) {
const currentMatch = this.url.match(/^([\w-]+):(.*)$/);
if (currentMatch) {
const serviceName = currentMatch[1];
const currentPath = currentMatch[2];
const basePath = currentPath.slice(0, currentPath.lastIndexOf('/') + 1);
return `${serviceName}:${basePath}${url}`;
}
}
return url;
}
/**
* Download an image from a WebTV service URL
*/
async downloadImage(imageUrl, referrerUrl = null) {
this.debugLog(`Downloading image: ${imageUrl}`);
try {
// Parse the image URL
const match = imageUrl.match(/^([\w-]+):\/?(.*)/);
if (!match) {
throw new Error(`Invalid image URL format: ${imageUrl}`);
}
const serviceName = match[1];
const path = '/' + (match[2] || '');
// Make request to download the image
const result = await this.makeRequestWithRetry(serviceName, path, null, true, referrerUrl); // Skip redirects for images
if (result.body && result.body.length > 0) {
this.debugLog(`Downloaded image: ${imageUrl} (${result.body.length} bytes)`);
return { body: result.body, headers: result.headers };
} else {
throw new Error('Empty response');
}
} catch (error) {
this.debugLog(`Failed to download image ${imageUrl}: ${error.message}`);
throw error;
}
}
/**
* Store content and extract links for follow-all mode
*/
storeContent(url, response) {
if (!url || this.downloadedUrls.has(url)) {
return;
}
// Validate MD5 checksum if we have one for this URL
this.validateDownloadChecksum(url, response.body);
this.downloadedUrls.add(url);
this.allContent.set(url, response);
this.debugLog(`Stored content for: ${url} (${response.body.length} bytes)`);
// Extract and queue new URLs if we haven't reached max depth
if (this.currentDepth < this.maxDepth) {
const newUrls = this.extractAllUrls(response.body, response.headers, url);
for (const newUrl of newUrls) {
if (!this.downloadedUrls.has(newUrl) && !this.pendingDownloads.some(item => item.url === newUrl)) {
this.pendingDownloads.push({ url: newUrl, referrer: url });
this.debugLog(`Queued for download: ${newUrl} (referrer: ${url})`);
}
}
}
}
/**
* Validate MD5 checksum for downloaded content
*/
validateDownloadChecksum(url, bodyData) {
if (!this.downloadChecksums || !this.downloadChecksums.has(url)) {
return; // No checksum to validate
}
const expectedChecksum = this.downloadChecksums.get(url);
try {
// Calculate MD5 hash of the downloaded content
const actualChecksum = crypto.createHash('md5').update(bodyData).digest('hex');
if (actualChecksum === expectedChecksum) {
this.debugLog(`✓ MD5 checksum validated for ${url}: ${actualChecksum}`);
} else {
console.warn(`✗ MD5 checksum mismatch for ${url}:`);
console.warn(` Expected: ${expectedChecksum}`);
console.warn(` Actual: ${actualChecksum}`);
console.warn(` This may indicate corrupted or modified content`);
}
} catch (error) {
console.warn(`Failed to validate checksum for ${url}: ${error.message}`);
}
}
/**
* Extract all URLs from content (links, images, scripts, etc.)
*/
extractAllUrls(body, headers, baseUrl) {
const urls = [];
try {
// First, check headers for navigation URLs
const headerUrls = this.extractUrlsFromHeaders(headers, baseUrl);
urls.push(...headerUrls);
// Check for wtv/download-list content type
const contentType = headers['content-type'] || '';
const normalizedContentType = contentType.split(';')[0].trim().toLowerCase();
if (normalizedContentType === 'wtv/download-list') {
const content = Buffer.isBuffer(body) ? body.toString('utf8') : body;
const downloadListUrls = this.extractUrlsFromDownloadList(content);
urls.push(...downloadListUrls);
return urls; // Download lists are special, don't process as HTML
}
// Only process text content for HTML extraction
if (!/text\/html|text\/plain|application\/.*javascript|text\/css/i.test(contentType)) {
return urls;
}
const content = Buffer.isBuffer(body) ? body.toString('utf8') : body;
// Extract various types of URLs
const patterns = [
// HTML links and form actions
/<a[^>]+href\s*=\s*["']([^"']+)["'][^>]*>/gi,
/<form[^>]+action\s*=\s*["']([^"']+)["'][^>]*>/gi,
/<frame[^>]+src\s*=\s*["']([^"']+)["'][^>]*>/gi,
/<iframe[^>]+src\s*=\s*["']([^"']+)["'][^>]*>/gi,
// Images and media
/<img[^>]+src\s*=\s*["']([^"']+)["'][^>]*>/gi,
/<image[^>]+src\s*=\s*["']([^"']+)["'][^>]*>/gi,
/<body[^>]+bgsound\s*=\s*["']([^"']+)["'][^>]*>/gi,
/<bgsound[^>]+src\s*=\s*["']([^"']+)["'][^>]*>/gi,
/<embed[^>]+src\s*=\s*["']([^"']+)["'][^>]*>/gi,
// Scripts and stylesheets
/<script[^>]+src\s*=\s*["']([^"']+)["'][^>]*>/gi,
/<link[^>]+href\s*=\s*["']([^"']+)["'][^>]*>/gi,
// CSS background images
/background-image\s*:\s*url\s*\(\s*["']?([^"')]+)["']?\s*\)/gi,
// Meta redirects
/<meta[^>]+content\s*=\s*["'][^"']*url=([^"';]+)[^"']*["'][^>]*>/gi,
// WebTV specific patterns
/wtv-[a-zA-Z0-9-]+:[^\s"'<>]+/gi,
// WebTV upgradeblock tags
/<upgradeblock[^>]+blockurl\s*=\s*["']([^"']+)["'][^>]*>/gi,
];
for (const pattern of patterns) {
let match;
while ((match = pattern.exec(content)) !== null) {
const url = match[1] || match[0]; // Some patterns capture the whole match
if (url && !url.startsWith('data:') && !url.startsWith('javascript:') &&
!url.startsWith('mailto:') && !url.startsWith('http://') &&
!url.startsWith('https://') && !url.startsWith('client:')) {
const normalizedUrl = this.normalizeUrl(url, baseUrl);
if (normalizedUrl && this.isValidWebTVUrl(normalizedUrl)) {
urls.push(normalizedUrl);
}
}
}
}
// Look for table-based navigation (common in WebTV)
const tablePattern = /<td[^>]*>.*?<a[^>]+href\s*=\s*["']([^"']+)["'][^>]*>.*?<\/td>/gi;
let match;
while ((match = tablePattern.exec(content)) !== null) {
const url = match[1];
if (url && !url.startsWith('data:') && !url.startsWith('javascript:') &&
!url.startsWith('mailto:') && !url.startsWith('http://') &&
!url.startsWith('https://') && !url.startsWith('client:')) {
const normalizedUrl = this.normalizeUrl(url, baseUrl);
if (normalizedUrl && this.isValidWebTVUrl(normalizedUrl)) {
urls.push(normalizedUrl);
}
}
}
} catch (error) {
this.debugLog(`Error extracting URLs from ${baseUrl}: ${error.message}`);
}
// Remove duplicates
return [...new Set(urls)];
}
/**
* Extract URLs from wtv/download-list content
* Parses "location:" lines within GET blocks (separated by double line breaks)
* Also extracts wtv-checksum values for validation
*/
extractUrlsFromDownloadList(content) {
const urls = [];
// Split content into blocks separated by double line breaks
const blocks = content.split(/\r?\n\r?\n/);
for (const block of blocks) {
const trimmedBlock = block.trim();
// Only process blocks that start with "GET"
if (trimmedBlock.startsWith('GET ')) {
const lines = trimmedBlock.split(/\r?\n/);
let currentUrl = null;
let currentChecksum = null;
for (const line of lines) {
const trimmed = line.trim();
// Look for "location:" lines within GET blocks
if (trimmed.startsWith('location:')) {
currentUrl = trimmed.slice(9).trim(); // Remove "location:" prefix
}
// Look for "wtv-checksum:" lines within GET blocks
if (trimmed.startsWith('wtv-checksum:')) {
currentChecksum = trimmed.slice(13).trim(); // Remove "wtv-checksum:" prefix
}
}
// If we found a valid URL, add it (with checksum if available)
if (currentUrl && this.isValidWebTVUrl(currentUrl)) {
urls.push(currentUrl);
this.debugLog(`Found download-list location URL: ${currentUrl}`);
// Store checksum for later validation if present
if (currentChecksum && currentChecksum !== '00000000000000000000000000000000') {
if (!this.downloadChecksums) {
this.downloadChecksums = new Map();
}
this.downloadChecksums.set(currentUrl, currentChecksum);
this.debugLog(` -> Expected MD5 checksum: ${currentChecksum}`);
}
}
}
// Also check for standalone "list" commands (not in GET blocks)
if (trimmedBlock.startsWith('list ')) {
// Extract URL from "list" command (format varies, look for URLs)
const match = trimmedBlock.match(/wtv-[^:\s]+:[^\s]+/);
if (match && this.isValidWebTVUrl(match[0])) {
urls.push(match[0]);
this.debugLog(`Found download-list command URL: ${match[0]}`);
}
}
}
return urls;
}
/**
* Extract URLs from response headers (wtv-visit, Location, etc.)
*/
extractUrlsFromHeaders(headers, baseUrl) {
const urls = [];
try {
// Check for wtv-visit header
if (headers['wtv-visit']) {
const visitUrl = headers['wtv-visit'];
if (visitUrl && !visitUrl.startsWith('client:')) {
const normalizedUrl = this.normalizeUrl(visitUrl, baseUrl);
if (normalizedUrl && this.isValidWebTVUrl(normalizedUrl)) {
urls.push(normalizedUrl);
this.debugLog(`Found wtv-visit URL: ${normalizedUrl}`);
}
}
}
// Check for Location header (redirects)
if (headers['Location'] || headers['location']) {
const locationUrl = headers['Location'] || headers['location'];
if (locationUrl && !locationUrl.startsWith('client:')) {
const normalizedUrl = this.normalizeUrl(locationUrl, baseUrl);
if (normalizedUrl && this.isValidWebTVUrl(normalizedUrl)) {
urls.push(normalizedUrl);
this.debugLog(`Found Location URL: ${normalizedUrl}`);
}
}
}
// Check for other WebTV-specific headers that might contain URLs
const urlHeaders = [
'wtv-phone-log-url',
];
for (const headerName of urlHeaders) {
if (headers[headerName]) {
const headerUrl = headers[headerName];
if (headerUrl && headerUrl.startsWith('wtv-1800:')) {
const normalizedUrl = this.normalizeUrl(headerUrl, baseUrl);
if (normalizedUrl && this.isValidWebTVUrl(normalizedUrl)) {
urls.push(normalizedUrl);
this.debugLog(`Found ${headerName} URL: ${normalizedUrl}`);
}
}
}
}
} catch (error) {
this.debugLog(`Error extracting URLs from headers: ${error.message}`);
}
return urls;
}
/**
* Check if URL should be followed by the spider
*/
shouldFollowUrl(url) {
// Normalize the URL first
const normalized = this.normalizeUrl(url, 'wtv-disk:/');
return normalized && this.isValidWebTVUrl(normalized);
}
/**
* Check if URL is a valid WebTV service URL that should be followed
*/
isValidWebTVUrl(url) {
// Don't follow HTTP/HTTPS URLs or client URLs
if (url.startsWith('http://') || url.startsWith('https://') || url.startsWith('client:')) {
return false;
}
// Only follow WebTV service URLs
return /^wtv-[a-zA-Z0-9-]+:/i.test(url);
}
/**
* Normalize URL (convert relative URLs to absolute WebTV service URLs)
*/
normalizeUrl(url, baseUrl) {
try {
// Skip URLs we don't want to follow
if (url.startsWith('http://') || url.startsWith('https://') ||
url.startsWith('ftp://') || url.startsWith('client:')) {
return null;
}
// If it's already a full WebTV service URL, return as-is
if (this.isValidWebTVUrl(url)) {
return url;
}
// If it starts with /, it's relative to the service root
if (url.startsWith('/')) {
const currentMatch = baseUrl.match(/^([\w-]+):/);
if (currentMatch) {
return `${currentMatch[1]}:${url}`;
}
}
// If it's a relative path, resolve it relative to current path
if (!url.includes('://')) {
const currentMatch = baseUrl.match(/^([\w-]+):(.*)$/);
if (currentMatch) {
const serviceName = currentMatch[1];
const currentPath = currentMatch[2];
const basePath = currentPath.slice(0, currentPath.lastIndexOf('/') + 1);
return `${serviceName}:${basePath}${url}`;
}
}
return null;
} catch (error) {
this.debugLog(`Error normalizing URL ${url}: ${error.message}`);
return null;
}
}
/**
* Make request with retry logic for ECONNREFUSED errors
*/
async makeRequestWithRetry(serviceName, path, postData = null, downloadMode = false, referrerUrl = null, retryCount = 0) {
try {
return await this.makeRequest(serviceName, path, postData, downloadMode, referrerUrl);
} catch (error) {
if (error.code === 'ECONNREFUSED' && retryCount < this.maxRetries) {
const retryDelay = 5000; // 5 seconds
this.debugLog(`Connection refused, retrying in ${retryDelay/1000}s (attempt ${retryCount + 1}/${this.maxRetries})`);
await new Promise(resolve => setTimeout(resolve, retryDelay));
return this.makeRequestWithRetry(serviceName, path, postData, downloadMode, referrerUrl, retryCount + 1);
}
throw error; // Re-throw if not ECONNREFUSED or max retries exceeded
}
}
/**
* Process all pending downloads
*/
async processAllDownloads() {
this.debugLog(`\n*** Starting aggressive crawl mode - depth ${this.maxDepth} ***`);
while (this.pendingDownloads.length > 0 && this.currentDepth < this.maxDepth) {
const currentBatch = [...this.pendingDownloads];
this.pendingDownloads = [];
this.currentDepth++;
this.debugLog(`\n--- Processing depth ${this.currentDepth} (${currentBatch.length} URLs) ---`);
for (const item of currentBatch) {
const { url, referrer } = item;
if (this.downloadedUrls.has(url)) {
continue; // Skip if already downloaded
}
try {
this.debugLog(`Downloading: ${url} (referrer: ${referrer})`);
const match = url.match(/^([\w-]+):\/?(.*)/);
if (match) {
const serviceName = match[1];
const path = '/' + (match[2] || '');
const result = await this.makeRequestWithRetry(serviceName, path, null, true, referrer);
this.storeContent(url, result);
}
} catch (error) {
console.warn(`Failed to download ${url}: ${error.message}`);
}
// Small delay to avoid overwhelming the server
await new Promise(resolve => setTimeout(resolve, this.requestDelay));
}
}
this.debugLog(`\n*** Crawl complete - downloaded ${this.downloadedUrls.size} URLs ***`);
}
/**
* Create comprehensive archive with all downloaded content
*/
async createComprehensiveArchive() {
const fs = require('fs').promises;
this.debugLog('Creating comprehensive archive with all downloaded content...');
// Determine output filename - change extension to .zip if needed
let archivePath = this.outputFile;
if (!archivePath.endsWith('.zip')) {
const ext = path.extname(archivePath);
archivePath = archivePath.replace(ext, '.zip');
}
// Create zip archive
const zip = new AdmZip();
// Add all downloaded content
let addedFiles = 0;
for (const [url, response] of this.allContent) {
try {
const servicePath = this.getServicePath(url, response.headers || {});
// Handle gzip decompression if content-type is application/gzip and keepgz is false
let contentToAdd = response.body;
const contentType = response.headers ? response.headers['content-type'] : '';
const normalizedContentType = contentType.split(';')[0].trim().toLowerCase();
if (normalizedContentType === 'application/gzip' && !this.keepgz) {
this.debugLog(`Decompressing gzip content for ${url}...`);
try {
const buffer = Buffer.isBuffer(response.body) ? response.body : Buffer.from(response.body, 'binary');
contentToAdd = zlib.gunzipSync(buffer);
this.debugLog(`Gzip decompression successful for ${url}`);
} catch (error) {
console.error(`Error decompressing gzip content for ${url}:`, error);
this.debugLog(`Falling back to original content for ${url}`);
contentToAdd = response.body;
}
}
zip.addFile(servicePath, contentToAdd);
addedFiles++;
this.debugLog(`Added to archive: ${servicePath} (from ${url})`);
// Log content type for debugging
if (contentType === 'text/tellyscript' || contentType === 'text/dialscript') {
this.debugLog(` -> TellyScript/DialScript content detected, saved as .tok file`);
}
} catch (error) {
console.warn(`Failed to add ${url} to archive: ${error.message}`);
}
}
// Write the zip file
zip.writeZip(archivePath);
console.log(`Comprehensive archive created: ${archivePath}`);
console.log(`Archive contains ${addedFiles} files from ${this.downloadedUrls.size} URLs`);
// Print summary by service
const serviceStats = {};
for (const url of this.downloadedUrls) {
const serviceName = url.match(/^([\w-]+):/)?.[1] || 'unknown';
serviceStats[serviceName] = (serviceStats[serviceName] || 0) + 1;
}
console.log('\nContent by service:');
for (const [service, count] of Object.entries(serviceStats)) {
console.log(` ${service}: ${count} files`);
}
}
/**
* Get file extension based on content-type header
*/
getExtensionFromContentType(contentType) {
if (!contentType) return null;
const type = contentType.toLowerCase().split(';')[0].trim();
// Map content types to file extensions
const typeMap = {
// WebTV specific
'text/tellyscript': '.tok',
'text/dialscript': '.tok',
'wtv/download-list': '.txt',
// Images
'image/gif': '.gif',
'image/jpeg': '.jpg',
'image/jpg': '.jpg',
'image/png': '.png',
'image/bmp': '.bmp',
'image/webp': '.webp',
'image/svg+xml': '.svg',
'image/x-icon': '.ico',
'image/tiff': '.tiff',
// Text/HTML
'text/html': '.html',
'text/plain': '.txt',
'text/css': '.css',
'text/javascript': '.js',
'application/javascript': '.js',
'application/x-javascript': '.js',
// Audio/Video
'audio/mpeg': '.mp3',
'audio/wav': '.wav',
'video/mpeg': '.mpg',
'video/quicktime': '.mov',
// Other
'application/pdf': '.pdf',
'application/zip': '.zip',
'application/x-shockwave-flash': '.swf'
};
return typeMap[type] || null;
}
/**
* Convert WebTV service URL to service/path format for zip structure
*/
getServicePath(url, headers = {}) {
try {
// Parse WebTV service URL: wtv-service:/path or wtv-service:path
const match = url.match(/^([\w-]+):\/?(.*)/);
if (match) {
const serviceName = match[1];
let pathPart = match[2] || '';
// Remove query string and fragment
pathPart = pathPart.split('?')[0].split('#')[0];
// Remove leading slash if present
pathPart = pathPart.replace(/^\/+/, '');
// Check content type for extension determination
const contentType = headers['content-type'] || '';
const contentTypeExt = this.getExtensionFromContentType(contentType);
// If path is empty or ends with /, add appropriate filename
if (!pathPart || pathPart.endsWith('/')) {
// Determine file extension based on content type first, then fallback to URL patterns
const ext = contentTypeExt ||
(serviceName.includes('image') || url.includes('image') ? '.jpg' :
serviceName === 'wtv-home' || serviceName === 'wtv-guide' ? '.html' :
serviceName === 'wtv-content' ? '.html' :
url.includes('.html') || url.includes('.htm') ? '.html' :
url.includes('.jpg') || url.includes('.jpeg') ? '.jpg' :
url.includes('.png') ? '.png' :
url.includes('.gif') ? '.gif' :
url.includes('.css') ? '.css' :
url.includes('.js') ? '.js' : '.html');
const filename = pathPart ? 'index' + ext : serviceName.replace('wtv-', '') + ext;
pathPart = pathPart + filename;
}
// Ensure the path has a file extension if it doesn't already
if (!pathPart.includes('.')) {
// Determine extension based on content type first, then context
const ext = contentTypeExt ||
(serviceName.includes('image') || pathPart.includes('image') ||
pathPart.match(/\.(jpe?g|png|gif|bmp|webp|svg|ico|tiff)$/i) ? '.jpg' :
serviceName.includes('style') || pathPart.includes('style') || pathPart.includes('css') ? '.css' :
serviceName.includes('script') || pathPart.includes('script') || pathPart.includes('js') ? '.js' : '.html');
pathPart += ext;
}
// Override extension if content type provides a more specific one
if (contentTypeExt && !pathPart.endsWith(contentTypeExt)) {
pathPart = pathPart.replace(/\.[^.]*$/, contentTypeExt);
}
// Clean up path separators and ensure valid filename
pathPart = pathPart.replace(/\/+/g, '/').replace(/\/$/, '');
return `${serviceName}/${pathPart}`;
}
} catch (error) {
this.debugLog(`Error creating service path from ${url}: ${error.message}`);
}
// Fallback: create a reasonable path structure
const serviceName = url.match(/^([\w-]+):/)?.[1] || 'unknown-service';
const filename = this.getFilenameFromUrl(url, headers);
return `${serviceName}/${filename}`;
}
/**
* Extract filename from URL
*/
getFilenameFromUrl(url, headers = {}) {
try {
// Check content type first for extension determination
const contentType = headers['content-type'] || '';
const contentTypeExt = this.getExtensionFromContentType(contentType);
// Remove WebTV service prefix and extract path
const match = url.match(/^(?:[\w-]+:\/?)?(.*?)(?:\?.*)?$/);
if (match) {
const pathPart = match[1];
const filename = pathPart.split('/').pop();
// If no filename or just path, generate one based on content
if (!filename || filename === pathPart || filename === '') {
// Determine extension based on content type first, then URL patterns
const ext = contentTypeExt ||
(url.includes('.html') || url.includes('.htm') ? '.html' :
url.includes('.jpg') || url.includes('.jpeg') ? '.jpg' :
url.includes('.png') ? '.png' :
url.includes('.gif') ? '.gif' :
url.includes('.bmp') ? '.bmp' :
url.includes('.webp') ? '.webp' :
url.includes('.svg') ? '.svg' :
url.includes('.ico') ? '.ico' :
url.includes('.tiff') ? '.tiff' :
url.includes('.js') ? '.js' :
url.includes('.css') ? '.css' : '');
// Generate filename based on service and path
const serviceName = url.match(/^([\w-]+):/)?.[1] || 'content';
const pathHash = require('crypto').createHash('md5').update(pathPart).digest('hex').slice(0, 8);
return `${serviceName}_${pathHash}${ext}`;
}
// Ensure filename has appropriate extension if missing
if (!filename.includes('.')) {
const ext = contentTypeExt ||
(url.includes('image') || /\.(jpe?g|png|gif|bmp|webp|svg|ico|tiff)$/i.test(url) ? '.jpg' :
url.includes('style') || url.includes('css') ? '.css' :
url.includes('script') || url.includes('js') ? '.js' : '');
return filename + ext;
}
// Override extension if content type provides a more specific one
if (contentTypeExt && !filename.endsWith(contentTypeExt)) {
return filename.replace(/\.[^.]*$/, contentTypeExt);
}
return filename;
}
} catch (error) {
this.debugLog(`Error extracting filename from ${url}: ${error.message}`);
}
// Fallback to generic filename with hash
const hash = require('crypto').createHash('md5').update(url).digest('hex').slice(0, 8);
const contentType = headers['content-type'] || '';
const contentTypeExt = this.getExtensionFromContentType(contentType);
const ext = contentTypeExt || '';
return `content_${hash}${ext}`;
}
parseVLNStageTwoHTML(htmlContent) {
const userList = [];
try {
const htmlString = Buffer.isBuffer(htmlContent) ? htmlContent.toString('utf8') : htmlContent;
this.debugLog('Parsing VLN-stage-two HTML for form and hidden fields...');
// Find the form action URL
let formMatch = htmlString.match(/<form[^>]+action=["']([^"']+)["'][^>]*>/i);
if (!formMatch) {
// Match <form ... action=... ...>
// Handles quoted and unquoted action values
// Improved regex: match action attribute, quoted or unquoted, non-greedy
formMatch = htmlString.match(/<form[^>]*\saction\s*=\s*(?:"([^"]*?)"|'([^']*?)'|([^\s"'<>]+))/i);
if (!formMatch) {
console.error('No form with action found in VLN-stage-two HTML');
this.cleanup();
process.exit(1);
}
}
// Pick the first non-null group (quoted or unquoted)
let formAction = formMatch[1] || formMatch[2] || formMatch[3];
if (formAction.startsWith('/')) {
formAction = 'wtv-head-waiter:' + formAction;
}
// Extract all hidden input fields
const hiddenInputs = {};
// Regex to match hidden input fields, with or without quotes around attributes
const hiddenRegex = /<input[^>]+type=(?:"|')?hidden(?:"|')?[^>]*name=(?:"|')?([^"'\s>]+)(?:"|')?[^>]*value=(?:"|')?([^"'\s>]*)/gi;
let match;
while ((match = hiddenRegex.exec(htmlString)) !== null) {
hiddenInputs[match[1]] = match[2];
this.debugLog(`Found hidden input: ${match[1]} = ${match[2]}`);
}
// Require password from CLI
const passwordArgIndex = process.argv.indexOf('--password');
let password = null;
if (passwordArgIndex !== -1 && process.argv.length > passwordArgIndex + 1) {
password = process.argv[passwordArgIndex + 1];
}
if (!password) {
console.error('\nVLN-stage-two requires a password. Please provide one with --password <password>');
this.cleanup();
process.exit(1);
}
if (password) {
// Return early to prevent further processing
return {
formAction,
formData: { ...hiddenInputs, password },
userList: [],
selectedUser: null
};
}
} catch (error) {
console.error('Error parsing VLN-stage-two HTML:', error);
return [];
}
}
parseMinisrvChooseUser(htmlContent) {
const userList = [];
try {
const htmlString = Buffer.isBuffer(htmlContent) ? htmlContent.toString('utf8') : htmlContent;
this.debugLog('Parsing choose-user HTML for usernames and links...');
// Pattern to match user entries in the HTML
// Looking for <a href="/ValidateLogin?..." followed by username in <font> tags
// Handle both: <font><b>username</b></font> and <font>username</font>
// Examples:
// <a href=/ValidateLogin?user_id=0&user_login=true nocancel><font size=+1><b>minisrv_15413</b></font></a>
// <a href=/ValidateLogin?user_id=1&user_login=true nocancel><font size=+1>zefie2</font>
const userPattern = /<a\s+href=([^\s>]+)[^>]*>[\s\S]*?<font[^>]*>\s*(?:<b>)?([^<]+?)(?:<\/b>)?\s*<\/font>/gi;
let match;
while ((match = userPattern.exec(htmlString)) !== null) {
let href = match[1];
// Remove quotes if present
href = href.replace(/^["']|["']$/g, '');
// Add protocol if relative path
if (href.slice(0,1) === "/") {
href = "wtv-head-waiter:" + href;
}
const username = match[2].trim();
if (username && href) {
userList.push({
username: username,
href: href
});
this.debugLog(`Found user: ${username} -> ${href}`);
}
}
// Alternative pattern in case the first one doesn't catch all cases
// Look for any ValidateLogin links and try to find nearby usernames
if (userList.length === 0) {
this.debugLog('Primary pattern found no users, trying alternative pattern...');
const linkPattern = /href="?([^"\s]*ValidateLogin[^"\s]*)"?/gi;
const fontPattern = /<font[^>]*>(?:<b>)?([^<]+?)(?:<\/b>)?<\/font>/gi;
const links = [];
const usernames = [];
let linkMatch;
while ((linkMatch = linkPattern.exec(htmlString)) !== null) {
let href = linkMatch[1];
// Remove quotes if present
href = href.replace(/^["']|["']$/g, '');
// Add protocol if relative path
if (href.slice(0,1) === "/") {
href = "wtv-head-waiter:" + href;
}
links.push(href);
}
let fontMatch;
while ((fontMatch = fontPattern.exec(htmlString)) !== null) {
usernames.push(fontMatch[1].trim());
}
// Try to pair them up (assuming they appear in the same order)
const minLength = Math.min(links.length, usernames.length);
for (let i = 0; i < minLength; i++) {
userList.push({
username: usernames[i],
href: links[i]
});
this.debugLog(`Found user (alternative): ${usernames[i]} -> ${links[i]}`);
}
}
this.debugLog(`Parsed ${userList.length} users from choose-user HTML`);
if (this.username) {
// Find the specified user
const selectedUser = userList.find(user => user.username.toLowerCase() === this.username.toLowerCase());
if (selectedUser) {
this.debugLog(`*** Selecting user: ${selectedUser.username} ***`);
console.log(`Selecting user: ${selectedUser.username}`);
// Return the user list with the selected user marked for automatic following
return { userList, selectedUser };
} else {
console.error(`\nUser '${this.username}' not found. Available users: ${userList.map(user => user.username).join(', ')}`);
this.cleanup();
process.exit(1);
}
} else {
// No username specified, list available users and exit
if (userList.length > 0) {
console.log('\n*** Available users from choose-user ***');
userList.forEach((user, index) => {
console.log(`${index + 1}. ${user.username} -> ${user.href}`);
});
console.log('*** End of user list ***\n');
console.error(`Please select a --user: ${userList.map(user => user.username).join(' ')}`);
this.cleanup();
process.exit(1);
} else {
console.error('No users found in choose-user HTML');
this.cleanup();
process.exit(1);
}
}
return { userList };
} catch (error) {
console.error('Error parsing choose-user HTML:', error);
return [];
}
}
/**
* Parse login-stage-two HTML to extract usernames and their respective href links
*/
parseLoginStageTwoHTML(htmlContent) {
const userList = [];
try {
const htmlString = Buffer.isBuffer(htmlContent) ? htmlContent.toString('utf8') : htmlContent;
this.debugLog('Parsing login-stage-two HTML for usernames and links...');
// Pattern to match user entries in the HTML
// Looking for <a href="/ValidateLoginName-..." followed by username in <font> tags
// Note: Some usernames have <b> tags, others don't, so we make <b> optional
const userPattern = /<a\s+href="([^"]*ValidateLoginName[^"]*)"[^>]*>[\s\S]*?<font[^>]*color="#FFEA9C"[^>]*>(?:<b>)?([^<]+?)(?:<\/b>)?<\/font>/gi;
let match;
while ((match = userPattern.exec(htmlString)) !== null) {
if (match[1].slice(0,1) === "/") {
match[1] = "wtv-head-waiter:" + match[1];
}
const href = match[1];
const username = match[2].trim();
if (username && href) {
userList.push({
username: username,
href: href
});
this.debugLog(`Found user: ${username} -> ${href}`);
}
}
// Alternative pattern in case the first one doesn't catch all cases
// Look for any ValidateLoginName links and try to find nearby usernames
if (userList.length === 0) {
this.debugLog('Primary pattern found no users, trying alternative pattern...');
const linkPattern = /href="([^"]*ValidateLoginName[^"]*)"/gi;
const fontPattern = /<font[^>]*color="#FFEA9C"[^>]*>(?:<b>)?([^<]+?)(?:<\/b>)?<\/font>/gi;
const links = [];
const usernames = [];
let linkMatch;
while ((linkMatch = linkPattern.exec(htmlString)) !== null) {
if (linkMatch[1].slice(0,1) === "/") {
linkMatch[1] = "wtv-head-waiter:" + linkMatch[1];
}
links.push(linkMatch[1]);
}
let fontMatch;
while ((fontMatch = fontPattern.exec(htmlString)) !== null) {
usernames.push(fontMatch[1].trim());
}
// Try to pair them up (assuming they appear in the same order)
const minLength = Math.min(links.length, usernames.length);
for (let i = 0; i < minLength; i++) {
userList.push({
username: usernames[i],
href: links[i]
});
this.debugLog(`Found user (alternative): ${usernames[i]} -> ${links[i]}`);
}
}
this.debugLog(`Parsed ${userList.length} users from login-stage-two HTML`);
if (this.username) {
// Find the specified user
const selectedUser = userList.find(user => user.username.toLowerCase() === this.username.toLowerCase());
if (selectedUser) {
this.debugLog(`*** Selecting user: ${selectedUser.username} ***`);
console.log(`Selecting user: ${selectedUser.username}`);
// Return the user list with the selected user marked for automatic following
return { userList, selectedUser };
} else {
console.error(`\nUser '${this.username}' not found. Available users: ${userList.map(user => user.username).join(', ')}`);
this.cleanup();
process.exit(1);
}
} else {
// No username specified, list available users and exit
if (userList.length > 0) {
console.log('\n*** Available users from login-stage-two ***');
userList.forEach((user, index) => {
console.log(`${index + 1}. ${user.username} -> ${user.href}`);
});
console.log('*** End of user list ***\n');
console.error(`Please select a --user: ${userList.map(user => user.username).join(' ')}`);
this.cleanup();
process.exit(1);
} else {
console.error('No users found in login-stage-two HTML');
this.cleanup();
process.exit(1);
}
}
return { userList };
} catch (error) {
console.error('Error parsing login-stage-two HTML:', error);
return [];
}
}
/**
* Clean up resources
*/
cleanup() {
// Close all pooled sockets
for (const [key, socket] of this.socketPool) {
if (socket && !socket.destroyed) {
this.debugLog(`Closing pooled socket: ${key}`);
socket.destroy();
}
}
this.socketPool.clear();
if (this.currentSocket && !this.currentSocket.destroyed) {
this.currentSocket.destroy();
}
}
}
/**
* Parse command line arguments
*/
function parseArgs() {
const args = process.argv.slice(2);
const config = {
host: '127.0.0.1',
port: 1615,
ssid: '8100000000000001',
url: 'wtv-home:/home',
outputFile: null,
maxRedirects: 10,
useEncryption: false,
request_type_download: false,
followImages: false,
followAll: false,
maxDepth: 3,
maxRetries: 5,
requestDelay: 250,
debug: false,
testing: false,
username: null,
keepgz: false,
request_type_post: false,
postData: null
};
for (let i = 0; i < args.length; i++) {
switch (args[i]) {
case '--host':
if (i + 1 < args.length) {
config.host = args[++i];
}
break;
case '--boxtype':
if (i + 1 < args.length) {
config.boxType = args[++i];
}
break;
case '--port':
if (i + 1 < args.length) {
config.port = parseInt(args[++i]);
}
break;
case '--ssid':
if (i + 1 < args.length) {
config.ssid = args[++i];
}
break;
case '--max-redirects':
if (i + 1 < args.length) {
config.maxRedirects = parseInt(args[++i]);
}
break;
case '--url':
if (i + 1 < args.length) {
config.url = args[++i];
}
break;
case '--file':
case '--output':
if (i + 1 < args.length) {
config.outputFile = args[++i];
}
break;
case '--dl-mode':
config.request_type_download = true;
break;
case '--tricks':
config.useTricksAccess = true;
break;
case '--encryption':
config.useEncryption = true;
break;
case '--debug':
config.debug = true;
break;
case '--testing':
config.testing = true;
break;
case '--follow':
config.followImages = true;
break;
case '--follow-all':
config.followAll = true;
config.followImages = true; // follow-all implies follow
break;
case '--depth':
if (i + 1 < args.length) {
config.maxDepth = parseInt(args[++i]);
}
break;
case '--retries':
if (i + 1 < args.length) {
config.maxRetries = parseInt(args[++i]);
}
break;
case '--delay':
if (i + 1 < args.length) {
config.requestDelay = parseInt(args[++i]);
}
break;
case '--user':
if (i + 1 < args.length) {
config.username = args[++i];
}
break;
case '--keepgz':
config.keepgz = true;
break;
case '--post':
config.request_type_post = true;
break;
case '--data':
if (i + 1 < args.length) {
config.postData = args[++i];
}
break;
case '--help':
console.log(`
WebTV Client Simulator
Usage: node client_sim.js [options]
Options:
--host <ip> Target server IP address (default: 127.0.0.1)
--port <port> Target server port (default: 1615)
--ssid <ssid> WebTV client SSID (default: 8100000000000001)
--boxtype <type> Set the WebTV box type (default: ${this.defaultBox})
--url <url> Target URL to fetch after authentication (default: wtv-home:/home)
--user <username> Seelect username during login-stage-two (required if the account has multiple users)
--file <filename> Save response body to file instead of echoing to CLI
--max-redirects <num> Maximum number of wtv-visit redirects (default: 10)
--dl-mode Enable 'wtv-request-type: download' for diskmap testing on minisrv
--encryption Enable RC4 encryption after authentication
--tricks-access Enable tricks access for the target URL (requires wtv-tricks:/access?url= on server)
--follow Download HTML and all referenced images into a zip archive
--follow-all Aggressively download everything encountered (spider mode)
--depth <num> Maximum crawl depth for --follow-all mode (default: 5)
--retries <num> Maximum number of retries for ECONNREFUSED errors (default: 5)
--delay <num> Delay between requests in milliseconds (default: 250)
--keepgz Keep .gz files compressed when following wtv/download-list (default: false)
--post Use POST method for the final target URL request
--data <data> POST data to send with --post requests (required with --post)
--debug Enable debug logging
--testing Only show the final request status (eg "200 OK"). Show debug info only if response is not 200
--help Show this help message
Example:
node client_sim.js --host 192.168.1.100 --port 1615 --ssid 8100000000000001 --url wtv-home:/home --file output.html
node client_sim.js --host 127.0.0.1 --url wtv-home:/home --file archive.zip --follow --debug
node client_sim.js --host 127.0.0.1 --url wtv-home:/home --file complete.zip --follow-all --depth 2 --debug
node client_sim.js --host 127.0.0.1 --url wtv-mail:/sendmail --post --data "to=user@example.com&subject=test&body=Hello" --file response.html
node client_sim.js --host 127.0.0.1 --url wtv-mail:/sendmail --post --data "to=user@example.com&subject=test&body=Hello" --tricks
`);
process.exit(0);
}
}
// Validate POST requirements
if (config.request_type_post && !config.postData) {
console.error('Error: --post requires --data to be specified');
process.exit(1);
}
return config;
}
/**
* Main execution
*/
async function main() {
const config = parseArgs();
const simulator = new WebTVClientSimulator(config.host, config.port, config.ssid, config.url, config.outputFile, config.maxRedirects, config.useEncryption, config.request_type_download, config.debug, config.useTricksAccess, config.followImages, config.followAll, config.maxDepth, config.maxRetries, config.requestDelay, config.boxType, config.username, config.keepgz, config.request_type_post, config.postData, config.testing);
// Handle graceful shutdown
process.on('SIGINT', () => {
console.log('\nShutting down...');
simulator.cleanup();
process.exit(0);
});
process.on('SIGTERM', () => {
console.log('\nShutting down...');
simulator.cleanup();
process.exit(0);
});
try {
await simulator.start();
} catch (error) {
console.error('Simulation failed:', error);
simulator.cleanup();
process.exit(1);
}
}
// Run the simulator if this file is executed directly
if (require.main === module) {
main();
}