Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
tcp-socket
Advanced tools
This shim brings the W3C Raw Socket API to node.js and Chromium. Its purpose is to enable apps to use the same api in Firefox OS, Chrome OS, and on the server.
This shim brings Mozilla-flavored version of the Raw Socket API to node.js, Chromium apps, and websockets (via socket.io). Its purpose is to enable apps to use the same codebase in Firefox OS, Chrome OS, and on the server.
Feel free to include in your Chrome App!
Include tcp-socket.js
and forge
in your markup. It will attach itself to the navigator object.
<script src="forge.min.js"></script>
<script src="tcp-socket.js"></script>
// creates a TCP socket
var tcp = navigator.TCPSocket.open('127.0.0.1', 8000);
// creates a TLS socket
var tls = navigator.TCPSocket.open('127.0.0.1', 9000, {
useSecureTransport: true,
ca: 'insert PEM-formatted cert here' // certificate pinning
});
A note on node-webkit: It is not that easy to figure out if you want to assume a browser or node environment on hybrid platforms like node-webkit. This gets even harder if you use require.js, too. There is one simple workaround, though:
window.nodeRequire = window.require
If you remember the node.js require as a global in node-webkit, we can safely call the native node.js TCP API.
A note on TLS: Native TLS is not yet available for chrome.socket.. For this reason, we cannot tap into the browser's native SSL certificates. If you want to use TLS, you must provide a certificate for pinning! This shim depends on forge for TLS. Please consult the forge project page for examples how to make forge available in your application and/or have a look at the example in this repository.
Use of web workers: If you are on a platform where we fall back to forge for TLS, we can spin up a Web Worker to handle the TLS-related computation. To do this, you need to browserify tcp-socket-tls-worker.js
. Please keep in mind that forge.min.js
and the browserified version of tcp-socket-tls-worker.js
must in the same folder! If you use a different path relative to your html file, you can provide it this file when you fire up the socket. If tlsWorkerPath is undefined, no Web Worker will be started and the TLS-relatid computation will happen on the main thread!
// creates a TLS socket with a specific TLS worker path
var tls = navigator.TCPSocket.open('127.0.0.1', 9000, {
useSecureTransport: true,
tlsWorkerPath: 'relative/path/to/tcp-socket-tls-worker.js'
});
You can either supply the socket with a certificate, or use a trust-on-first-use based approach, where the socket is accepted in the first try and you will receive a callback with the certificate. Use this certificate in subsequent interactions with this host. Host authenticity is evaluated based on their Common Name (or SubjectAltNames) and the certificate's public key fingerprint.
var tls = navigator.TCPSocket.open('127.0.0.1', 9000, {
useSecureTransport: true
});
tls.oncert = function(pemEncodedCertificate) {
// do something useful with the certificate, e.g.
// store it and reuse it on a trust-on-first-use basis
};
Here's how the TLS socket will behave when presented with a server certificate:
A note on STARTTLS: upgrateToSecure()
will return immediately. If the TLS negotiation fails, the socket will throw an error and close. The socket buffers writes that occur in the meantime and writes the data out altogether when the TLS handshake is done. If said behavior is a problem in your protocol, please open an issue and/or submit a PR. Also, STARTTLS is experimental in Chrome Apps on Chrome 38+, where chrome.socket.secure() is available.
For everything else, see the Mozilla TCPSocket API Documentation.
A note on WebSockets: Run the websocket proxy (socket.io + express) to use TCPSocket straight from the browser.
WebSocket shim adds a new configuration object ws
to TCPSocket.open
url is the url for the WebSocket proxy server (defaults to '/')
options are Socket.io options
var socket = TCPSocket.open('127.0.0.1', 9000, { ... ws: { url: 'http://localhost:8889', options: { upgrade: false } } });
To run WebSocket integration tests that connect to imap.gmail.com:993
run
NODE_ENV=integration node ws-proxy/server.js
Parallel to that, run
grunt connect:dev
and open http://localhost:12345/test/integration/ws/integration.html in your browser.
WebSocket integration tests can be run via grunt ws-integration-test
. They are disabled by default because these do not run correctly under PhantomJS.
The following API is not available with this shim:
npm install --save tcp-socket
or directly from github
npm install --save https://github.com/whiteout-io/tcp-socket/tarball/<TAG_NAME>
This library is licensed under the MIT license.
Copyright (c) 2014 Whiteout Networks
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
This library uses crypto primitives from forge by Digital Bazaar, Inc. which is licensed under BSD and GPL.
FAQs
This shim brings the W3C Raw Socket API to node.js and Chromium. Its purpose is to enable apps to use the same api in Firefox OS, Chrome OS, and on the server.
The npm package tcp-socket receives a total of 12 weekly downloads. As such, tcp-socket popularity was classified as not popular.
We found that tcp-socket demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.