
Security News
Socket Integrates With Bun 1.3’s Security Scanner API
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
chisel-tunnel
Advanced tools
Download releases of jpillora/chisel, a tool to create tcp-tunnels.
Chisel is a software written in Go that starts TCP-tunnels. It is a single binary that can be downloaded and started.
The goal of this project is to download a specific version of chisel from the github-releases, matching your current architecture, in order to let you use it.
My specific goal is to use it as a reverse-tunnel to allow connections from a selenium-server to a local build-server in Gitlab-CI or docker-compose.
Such a reverse-tunnel can be achieved by running
chisel server -p 2222 --reverse
in the selenium docker-container. Then you can run
chisel client selenium:2222 R:6006:localhost:6006
to initiate the tunnel. Requests http://localhost:6006
on the
selenium machine will then be forwarded to wherever you started your
chisel client
npm install chisel-tunnel
The following example demonstrates how to use this module:
const chiselTunnel = require("chisel-tunnel");
const cp = require("child_process");
chiselTunnel.downloadChisel("~1.5.0").then(filename => {
cp.spawnSync(filename, ["--version"], { stdio: "inherit" });
});
This will generate the following output
1.5.2
Promise.<string>
Download chisel for a given range of versions
Kind: global function
Returns: Promise.<string>
- the downloaded
chisel executable
Param | Type | Description |
---|---|---|
semverRange | string | |
[options] | object | |
[options.cacheDir] | string | |
[options.maxTempFileAgeMillis] | number | remove temp-files when they are older than this age in millis. |
chisel-tunnel
is published under the MIT-license.
See LICENSE.md for details.
For release notes, see CHANGELOG.md
See CONTRIBUTING.md.
FAQs
Download releases of jpillora/chisel, a tool to create tcp-tunnels.
The npm package chisel-tunnel receives a total of 11 weekly downloads. As such, chisel-tunnel popularity was classified as not popular.
We found that chisel-tunnel demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.
Security News
A data handling bug in OSV.dev caused disputed CVEs to disappear from vulnerability feeds until a recent fix restored over 500 advisories.