
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
This is a wrapper around the UDT4 library.
See http://en.wikipedia.org/wiki/UDP-based_Data_Transfer_Protocol
This library is intentionally marked as 0.1.0 and should be considered alpha
udt4.createServer(function (data) {
console.log(data);
}).listen(1337);
var udt4 = require('../udt4');
var clt = udt4.createClient(1337, '127.0.0.1');
clt.write('data\n');
clt.end();
Returns a new server object.
The dataListener is a function which is automatically added to the 'data' event.
Begin accepting connections on the specified port. As the hostname is currently omitted, the server will accept connections directed to any IPv4 address (INADDR_ANY).
Stops the server from accepting new connections and keeps existing connections. This function is asynchronous, the server is finally closed when all connections are ended and the server emits a 'close' event.
Constructs a new UDT4 client. port and host refer to the server to be connected to.
Opens a connection to the server
Sends data to the server.
Closes the connection to the server.
| Anton Whalley | GitLab/No9 | Twitter/@dhigit9 |
|---|
FAQs
A node.js UDT binding for FAST data transfers
The npm package udt4 receives a total of 3 weekly downloads. As such, udt4 popularity was classified as not popular.
We found that udt4 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.