Code Monkey home page Code Monkey logo

wsproxy-1's Introduction

wsproxy.js - A proxy for websockets

This is a fork from the original repository wsproxy; on top of the existing features, this fork will let you to edit outgoing requests "on the fly".

Install

You need to setup your Nodejs environment, in the project directory:

git clone https://github.com/tampe125/wsproxy.git
npm install

This will install all your dependencies etc.

Usage

The tool should be easy enough to use,

nodejs wsproxy.js

Editing requests

You will have to copy and rename the file custom_scripts/outgoing.example.js. You'll see that there are two different functions being exported: editTextData and editBinaryData. In those functions you will have to perform your editing logic.

A quick example

Change the editTextData function so it will be something like this:

exports.editTextData = function (data) {
  data += " edited";

  return data;
};

Now attach your proxy and visit the WebSocket echo server. In the console you'll see that every reply from the server has the string edited appended. Since it's just an echo server, returning what you sent to him, this means that the message you just sent has been modified by our proxy.

WebSocketTest

License

WSProxy is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (http://creativecommons.org/licenses/by-nc-sa/4.0/)

wsproxy-1's People

Contributors

staaldraad avatar stephenbradshaw avatar tampe125 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.