testipaketti_keketester 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of testipaketti_keketester might be problematic. Click here for more details.
- package/README.md +1 -0
- package/package.json +14 -0
- package/postinstall.js +5 -0
package/README.md
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
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
|
package/package.json
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
{
|
2
|
+
"name": "testipaketti_keketester",
|
3
|
+
"version": "1.0.2",
|
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