MOON
Server: Apache
System: Linux 54-179-220-51.cprapid.com 3.10.0-1160.144.1.el7.tuxcare.els4.x86_64 #1 SMP Tue Apr 7 08:40:40 UTC 2026 x86_64
User: thehunarfound (1001)
PHP: 7.4.29
Disabled: NONE
Upload Files
File: /home/thehunarfound/public_html/DMSold/node_modules/socks/examples/associate.js
var Socks = require('../index.js');
var dgram = require('dgram');

var options = {
    proxy: {
        ipaddress: "202.101.228.108",
        port: 1080,
        type: 5,
        command: 'associate'
    },

    target: {
        host: "0.0.0.0",
        port: 0
    }
};

Socks.createConnection(options, function(err, socket, info) {
    if (err)
        console.log(err);
    else {
        console.log("Connected");

        // Associate request completed.
        // Now we can send properly formed UDP packet frames to this endpoint for forwarding:
        console.log(info);
        // { port: 4381, host: '202.101.228.108' }

        var udp = new dgram.Socket('udp4');
        var packet = SocksClient.createUDPFrame({ host: "1.2.3.4", port: 5454}, new Buffer("Hello"));
        udp.send(packet, 0, packet.length, info.port, info.host);
    }
});;;