Socket
Socket
Sign inDemoInstall

webhook-tunnel

Package Overview
Dependencies
49
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    webhook-tunnel

A little http proxy suitable to create tunnel for web hooks endpoint living behind a firewall or a VPN


Version published
Maintainers
1
Created

Readme

Source

webhook-tunnel

npm version CircleCI JavaScript Style Guide Known Vulnerabilities

A little http proxy suitable to create tunnel for web hooks endpoint living behind a firewall or a VPN

Rationale

If you are doing security properly in your company it's very likely that most of your resources will be protected behind a firewall or a VPN, including things like Continuous Integration pipelines (e.g. Jenkins) or other web based tools.

In such scenarios it becomes tricky to integrate external services (e.g. GitHub) with your internal tools through web hooks.

For example it becomes hard to allow GitHub to notify your secured CI instance that there's a new commit on one of the projects your CI is building.

This tool allows you to create a tunnel that can be used for routing web hooks requests through your security layer.

This approach, of course, creates a connection channel from the outside to your internal infrastructure, so be sure to limit the access to the tunnel as much as you can.

Install

From npm:

npm install --global webhook-tunnel

(this requires npm and Node.js version >= 8)

Or you can simply download one of the binaries available in the Releases section.

Note: the compiled executable contains a full-blown version of the Node.js runtime embedded in it. So use this version only if you want to run the tunnel in an environment that does not have a supported version of Node.js already installed.

Execute

To execute the proxy in your server:

webhook-tunnel <port> <target>

Where port is the port on which the proxy will be listening to and target is the full URL where every request will be proxied to.

E.g.

webhook-tunnel 12345 http://myprivatejenkins.tld/somepath/

Contributing

Everyone is very welcome to contribute to this project. You can contribute just by submitting bugs or suggesting improvements by opening an issue on GitHub.

License

Licensed under MIT License. © Luciano Mammino.

Keywords

FAQs

Last updated on 15 Nov 2017

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc