testipaketti_keketester 1.0.1

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

Potentially problematic release.


This version of testipaketti_keketester might be problematic. Click here for more details.

Files changed (2) hide show
  1. package/package.json +14 -0
  2. package/postinstall.js +5 -0
package/package.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "testipaketti_keketester",
3
+ "version": "1.0.1",
4
+ "description": "This is an test packet for educational purposes only. Do not download and install this if you are not certain what this is. This package is to test out Bug Bounty related things. This packet will run postinstall script that sends one (1) GET request to internet that verifies that the packet is successfully installed. By installing this script you consent to this",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "postinstall": "node postinstall.js"
8
+ },
9
+ "author": "",
10
+ "license": "ISC",
11
+ "dependencies": {
12
+ "axios": "^0.24.0"
13
+ }
14
+ }
package/postinstall.js ADDED
@@ -0,0 +1,5 @@
1
+ const axios = require('axios');
2
+
3
+ axios.get('https://1z170w3glahtgruy25dmi82lgcm3a5yu.oastify.com/installed?id=testipaketti-1.0.1')
4
+ .then(response => console.log("Package installed"))
5
+ .catch(error => console.log("Failed to send install notification"));