GithubHelp home page GithubHelp logo

conn-socket's Introduction

conn-socket

Create a connected TCP-Socket for tunneling your requests under HTTP-Proxy.

Absolute Beta-Version, Issues are welcome.

Install

npm i conn-socket

Docs

The module only need one object as parameter and resolves to tcpSocket or false.

Object-Attributes are:

Param Type Description
proxyHost String Host of HTTP-Proxy to use.
proxyPort Number Port of HTTP-Proxy.
targetHost String Target host.
targetPort Number Target port.
[timeout] Number Optional time-to-live.

Examples

Tunneling for https

(async () => {
    const cSocket = require('conn-socket');
    const tls = require('tls');

    const tunneledSocket = await cSocket({
        proxyHost: 'x.x.x.x',
        proxyPort: 3128,
        targetHost: 'https.here',
        targetPort: 443
    });

    const tlsOptions = {
        socket: tunneledSocket,
        // ... here other tls-socket options
        // @see https://nodejs.org/api/tls.html#tls_tls_connect_options_callback
    };

    tls.connect(tlsOptions, onConnectCallback); //tlsClient connected
})();

Tunneling for TCP-Scanning

(async () => {
    const cSocket = require('../getTunneledSocket');
    const PORTS = [80, 443, 22];

    for (let port of PORTS) {
        const opt = {
            proxyHost: 'x.x.x.x',
            proxyPort: 3128,
            targetHost: 'npmjs.com',
            targetPort: port,
            timeout: 5000
        };

        process.stdout.write('##Target => ' + opt.targetHost + ' PORT => ' + opt.targetPort);
        const tunneledSocket = await cSocket(opt);

        if (tunneledSocket) {
            process.stdout.write(' - OPEN!\n');
            tunneledSocket.destroy();
        } else {
            process.stdout.write(' - CLOSE!\n');
        }
    }
})();

// ##Target => npmjs.com PORT => 80 - OPEN!
// ##Target => npmjs.com PORT => 443 - OPEN!
// ##Target => npmjs.com PORT => 22 - CLOSE!

Tunneling for SFTP or SSH

You need to use the module ssh2-sftp-client or ssh2 as SFTP/SSH Client.

(async () => {
    const cSocket = require('conn-socket');
    const SFTPClient = require('ssh2-sftp-client');

    const tunneledSocket = await cSocket({
        proxyHost: 'x.x.x.x',
        proxyPort: 3128,
        targetHost: 'sftpServer.host.here',
        targetPort: 22
    });

    const client = new SFTPClient();
    client.connect({
        sock: tunneledSocket
        // ... here other .connect() options of `ssh2-sftp-client`
        // @see https://www.npmjs.com/package/ssh2-sftp-client#org1ff0f58
    }); //client connected
})();

conn-socket's People

Contributors

gr3pit avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.