1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
| const WebSocket = require('ws'); const CryptoJS = require("crypto-js");
const url = 'wss://www.python-spider.com/api/challenge61';
const key = CryptoJS.enc.Utf8.parse('aiding1234567891');
function encrypted(params) { const encrypted = CryptoJS.TripleDES.encrypt(params, key, { mode: CryptoJS.mode.ECB, padding: CryptoJS.pad.Pkcs7 }); return encrypted.toString(); }
const headers = { 'Upgrade': 'websocket', 'Origin': 'https://www.python-spider.com', 'Cache-Control': 'no-cache', 'Accept-Language': 'zh-CN,zh;q=0.9,en;q=0.8', 'Pragma': 'no-cache', 'Connection': 'Upgrade', 'Sec-WebSocket-Key': 'tkK4L2QPcRxOE6r5LtDOkQ==', 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'Sec-WebSocket-Version': '13', 'Sec-WebSocket-Extensions': 'permessage-deflate; client_max_window_bits' };
const ws = new WebSocket(url, { headers });
const result = [];
ws.on('open', () => { console.log('WebSocket 连接已建立'); for (let i = 1; i < 101; i++) { ws.send(encrypted(i.toString())); } });
ws.on('message', (data) => { console.log('接收到消息:', data.toString()); JSON.parse(data.toString()).data.forEach((item) => { result.push(Number(item.value)); }); });
ws.on('close', () => { console.log('WebSocket 连接已关闭'); function sum(arr) { let total = 0; for (let i = 0; i < arr.length; i++) { total += arr[i]; } return total; } console.log(result); console.log(sum(result)); });
ws.on('error', (error) => { console.error('WebSocket 连接出错:', error); });
|