
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
create-stream-server
Advanced tools
create multiple stream servers easily
var css = require('create-stream-server');
var servers = css({
s1: 'tcp://localhost:8080',
s2: 'ssl://0.0.0.0:80',
s3: {
protocol: 'wss',
host: 'localhost',
port: 8888,
ssl: {
key: fs.readFileSync('./wss_server.key'),
cert: fs.readFileSync('./wss_server.crt')
}
},
s4: {
attach: existingHttpServer
}
}, {
ssl: {
key: fs.readFileSync('./server.key'),
cert: fs.readFileSync('./server.crt')
}
}, function(clientStream, server){
// handle the connected client as a stream
});
// to start
servers.listen(function(){
console.log('launched!');
});
// after some time
servers.close(function(){
console.log('done!');
});
// to release all resources
servers.destroy(function(){
console.log('all gone!');
});
create-stream-server is an OPEN Open Source Project. This means that:
Individuals making significant and valuable contributions are given commit-access to the project to contribute as they see fit. This project is more like an open wiki than a standard guarded open source project.
See the CONTRIBUTING.md file for more details.
create-stream-server is only possible due to the excellent work of the following contributors:
Joël Gähwiler | GitHub/256dpi | Twitter/@256dpi |
---|---|---|
Matteo Collina | GitHub/mcollina | Twitter/@matteocollina |
MIT
FAQs
create multiple stream servers easily
The npm package create-stream-server receives a total of 1,675 weekly downloads. As such, create-stream-server popularity was classified as popular.
We found that create-stream-server 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.