New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

black-socks-server

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

black-socks-server - npm Package Compare versions

Comparing version 1.0.4 to 1.0.5

2

package.json
{
"name": "black-socks-server",
"version": "1.0.4",
"version": "1.0.5",
"description": "",

@@ -5,0 +5,0 @@ "main": "server.js",

const net = require('net')
const { unzip } = require('node:zlib')

@@ -26,5 +27,6 @@ class tunnel_outlet

stream.on('data',(buf)=>{
console.log(buf)
this.tunnel(buf[0],buf.slice(1))
stream.on('data',(input)=>{
unzip(input, (err, output) => {
this.tunnel(output[0],output.slice(1))
})
})

@@ -37,2 +39,3 @@

{
console.log(id,data)
if(id == 0x00)

@@ -44,3 +47,3 @@ {

{
this.chromes[id].send(data)
//this.chromes[id].send(data)
}

@@ -47,0 +50,0 @@ }

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc