forked from vul-os/vulos
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregistry.json
More file actions
679 lines (679 loc) · 20.4 KB
/
Copy pathregistry.json
File metadata and controls
679 lines (679 loc) · 20.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
{
"apps": {
"wede": {
"name": "Wede",
"vetted": true,
"type": "web",
"description": "Lightweight web-based code editor — edit files and projects from your browser with syntax highlighting",
"category": "developer",
"author": "webcrft",
"homepage": "https://github.com/webcrft/wede",
"icon": "wede",
"keywords": ["editor", "code", "web", "ide", "files", "syntax"],
"license": "MIT",
"versions": {
"latest": {
"install": "curl -fsSL https://raw.githubusercontent.com/webcrft/wede/main/install.sh | bash",
"command": "/root/.local/bin/wede -port ${PORT}",
"port": 9090,
"permissions": ["network", "filesystem"],
"singleton": true
}
}
},
"cockpit": {
"name": "Cockpit",
"vetted": true,
"type": "web",
"description": "Web-based server management — terminal, logs, processes, networking, storage, and system monitoring in one dashboard",
"category": "system",
"author": "Red Hat / Cockpit Project",
"homepage": "https://cockpit-project.org",
"icon": "cockpit",
"keywords": ["admin", "server", "management", "terminal", "monitoring", "logs", "dashboard"],
"license": "LGPL-2.1",
"versions": {
"latest": {
"install": "apt-get install -y --no-install-recommends cockpit cockpit-ws cockpit-bridge cockpit-system cockpit-networkmanager cockpit-storaged cockpit-packagekit",
"command": "/usr/lib/cockpit/cockpit-ws --no-tls --port ${PORT}",
"port": 9090,
"permissions": ["network", "filesystem"],
"singleton": true
}
}
},
"httpbin": {
"name": "httpbin",
"vetted": true,
"type": "web",
"description": "HTTP request and response testing — inspect headers, methods, status codes",
"category": "developer",
"author": "Kenneth Reitz",
"homepage": "https://httpbin.org",
"icon": "httpbin",
"keywords": ["http", "api", "testing", "debug"],
"license": "ISC",
"versions": {
"0.9": {
"install": "apt-get install -y --no-install-recommends python3-pip python3 && pip3 install --break-system-packages httpbin gunicorn",
"command": "gunicorn -b 0.0.0.0:${PORT} httpbin:app",
"port": 8080,
"permissions": ["network"],
"singleton": true
}
}
},
"gitea": {
"name": "Gitea",
"vetted": true,
"type": "web",
"description": "Lightweight self-hosted Git forge with issues, pull requests, CI/CD, and package registry",
"category": "developer",
"author": "Gitea",
"homepage": "https://gitea.io",
"icon": "gitea",
"keywords": [
"git",
"repository",
"code",
"version-control",
"forge",
"ci"
],
"license": "MIT",
"versions": {
"1": {
"install": "wget -qO /usr/local/bin/gitea https://dl.gitea.com/gitea/1.22/gitea-1.22.0-linux-amd64 && chmod +x /usr/local/bin/gitea",
"command": "gitea web --config data/app.ini",
"port": 3000,
"post_install": "mkdir -p data/repositories data/lfs && printf '[server]\\nHTTP_PORT = %s\\nROOT_URL = http://localhost:%s/\\n[repository]\\nROOT = %s/data/repositories\\n' \"${PORT}\" \"${PORT}\" \"$APP_DIR\" > data/app.ini",
"permissions": [
"network",
"filesystem"
],
"singleton": true
}
}
},
"grafana": {
"name": "Grafana",
"vetted": true,
"type": "web",
"description": "Monitoring dashboards \u2014 visualize metrics from Prometheus, InfluxDB, PostgreSQL, and more",
"category": "developer",
"author": "Grafana Labs",
"homepage": "https://grafana.com",
"icon": "grafana",
"keywords": [
"monitoring",
"dashboard",
"metrics",
"grafana",
"visualization",
"observability"
],
"license": "AGPL-3.0",
"versions": {
"11": {
"install": "apt-get install -y --no-install-recommends apt-transport-https software-properties-common && wget -qO- https://apt.grafana.com/gpg.key | gpg --dearmor -o /usr/share/keyrings/grafana.gpg && echo \"deb [signed-by=/usr/share/keyrings/grafana.gpg] https://apt.grafana.com stable main\" > /etc/apt/sources.list.d/grafana.list && apt-get update && apt-get install -y --no-install-recommends grafana",
"command": "grafana server --homepath /usr/share/grafana --config data/grafana.ini",
"port": 3000,
"post_install": "mkdir -p data/plugins data/dashboards && printf '[paths]\\ndata = %s/data\\nplugins = %s/data/plugins\\n[server]\\nhttp_port = %s\\n' \"$APP_DIR\" \"$APP_DIR\" \"${PORT}\" > data/grafana.ini",
"permissions": [
"network"
],
"singleton": true
}
}
},
"jupyter": {
"name": "Jupyter Lab",
"vetted": true,
"type": "web",
"description": "Interactive notebooks for Python, data science, and computation \u2014 web-based IDE with rich output",
"category": "developer",
"author": "Project Jupyter",
"homepage": "https://jupyter.org",
"icon": "jupyter",
"keywords": [
"notebook",
"python",
"data",
"science",
"jupyter",
"computation"
],
"license": "BSD-3-Clause",
"versions": {
"4": {
"install": "apt-get install -y --no-install-recommends python3-pip python3-venv && python3 -m pip install --break-system-packages jupyterlab",
"command": "jupyter lab --ip=0.0.0.0 --port=${PORT} --no-browser --NotebookApp.token='' --NotebookApp.password='' --notebook-dir=data/",
"port": 8888,
"permissions": [
"network",
"filesystem"
],
"singleton": true
}
}
},
"nginx": {
"name": "Nginx",
"vetted": true,
"type": "web",
"description": "High-performance HTTP server and reverse proxy \u2014 serve static sites, proxy other services",
"category": "network",
"author": "F5 / Igor Sysoev",
"homepage": "https://nginx.org",
"icon": "nginx",
"keywords": [
"web",
"server",
"proxy",
"reverse-proxy",
"http",
"nginx"
],
"license": "BSD-2-Clause",
"versions": {
"1": {
"install": "apt-get install -y --no-install-recommends nginx",
"command": "nginx -c data/nginx.conf -g 'daemon off;'",
"port": 8080,
"post_install": "printf 'worker_processes 1;\\nevents { worker_connections 128; }\\nhttp {\\n include /etc/nginx/mime.types;\\n server {\\n listen %s;\\n root %s/static;\\n index index.html;\\n }\\n}\\n' \"${PORT}\" \"$APP_DIR\" > data/nginx.conf && mkdir -p static && echo '<h1>Nginx is running</h1>' > static/index.html",
"permissions": [
"network"
],
"singleton": true
}
}
},
"syncthing": {
"name": "Syncthing",
"vetted": true,
"type": "web",
"description": "Peer-to-peer file synchronization with web UI \u2014 sync folders across devices without a cloud",
"category": "productivity",
"author": "Syncthing Foundation",
"homepage": "https://syncthing.net",
"icon": "syncthing",
"keywords": [
"sync",
"files",
"p2p",
"backup",
"share",
"folders",
"web"
],
"license": "MPL-2.0",
"versions": {
"1": {
"install": "apt-get install -y --no-install-recommends curl apt-transport-https && curl -s https://syncthing.net/release-key.gpg | gpg --dearmor -o /usr/share/keyrings/syncthing.gpg && echo \"deb [signed-by=/usr/share/keyrings/syncthing.gpg] https://apt.syncthing.net/ syncthing stable\" > /etc/apt/sources.list.d/syncthing.list && apt-get update && apt-get install -y --no-install-recommends syncthing",
"command": "syncthing serve --gui-address=0.0.0.0:${PORT} --home=data/ --no-browser",
"port": 8384,
"permissions": [
"network",
"filesystem"
],
"singleton": true
}
}
},
"transmission": {
"name": "Transmission",
"vetted": true,
"type": "web",
"description": "Lightweight BitTorrent client with web UI \u2014 simple, fast, low resource usage",
"category": "network",
"author": "Transmission Project",
"homepage": "https://transmissionbt.com",
"icon": "transmission",
"keywords": [
"torrent",
"bittorrent",
"download",
"p2p",
"transfer",
"web"
],
"license": "GPL-2.0",
"versions": {
"4": {
"install": "apt-get install -y --no-install-recommends transmission-daemon",
"command": "transmission-daemon --foreground --config-dir data/ --port ${PORT} --no-auth",
"port": 9091,
"post_install": "mkdir -p data/downloads data/incomplete && printf '{\"rpc-authentication-required\":false,\"rpc-whitelist-enabled\":false,\"rpc-host-whitelist-enabled\":false,\"rpc-port\":%s}' \"${PORT}\" > data/settings.json",
"permissions": [
"network",
"filesystem"
],
"singleton": true
}
}
},
"gimp": {
"name": "GIMP",
"vetted": true,
"type": "desktop",
"description": "Professional image editor \u2014 layers, filters, brushes, and advanced photo manipulation tools",
"category": "media",
"author": "GIMP Team",
"homepage": "https://www.gimp.org",
"icon": "gimp",
"keywords": [
"image",
"editor",
"photo",
"graphics",
"design",
"painting"
],
"license": "GPL-3.0",
"versions": {
"latest": {
"flatpak_id": "org.gimp.GIMP",
"command": "flatpak run org.gimp.GIMP",
"permissions": [
"filesystem",
"gpu"
],
"singleton": true
}
}
},
"blender": {
"name": "Blender",
"vetted": true,
"type": "desktop",
"description": "3D creation suite \u2014 modelling, animation, rendering, compositing, and video editing",
"category": "media",
"author": "Blender Foundation",
"homepage": "https://www.blender.org",
"icon": "blender",
"keywords": [
"3d",
"modelling",
"animation",
"rendering",
"video",
"compositing"
],
"license": "GPL-3.0",
"versions": {
"4": {
"install": "apt-get install -y --no-install-recommends blender",
"command": "blender",
"permissions": [
"filesystem",
"gpu"
],
"singleton": true
}
}
},
"inkscape": {
"name": "Inkscape",
"vetted": true,
"type": "desktop",
"description": "Vector graphics editor \u2014 SVG editing, illustration, diagrams, and logo design",
"category": "media",
"author": "Inkscape Project",
"homepage": "https://inkscape.org",
"icon": "inkscape",
"keywords": [
"vector",
"svg",
"graphics",
"illustration",
"design",
"drawing"
],
"license": "GPL-2.0",
"versions": {
"latest": {
"flatpak_id": "org.inkscape.Inkscape",
"command": "flatpak run org.inkscape.Inkscape",
"permissions": [
"filesystem"
],
"singleton": true
}
}
},
"kicad": {
"name": "KiCad",
"vetted": true,
"type": "desktop",
"description": "Electronic design automation \u2014 schematic capture, PCB layout, 3D viewer, and Gerber export",
"category": "developer",
"author": "KiCad Developers",
"homepage": "https://www.kicad.org",
"icon": "kicad",
"keywords": [
"eda",
"pcb",
"schematic",
"electronics",
"circuit",
"hardware",
"cad"
],
"license": "GPL-3.0",
"versions": {
"latest": {
"flatpak_id": "org.kicad.KiCad",
"command": "flatpak run org.kicad.KiCad",
"permissions": [
"filesystem",
"gpu"
],
"singleton": true
}
}
},
"libreoffice": {
"name": "LibreOffice",
"vetted": true,
"type": "desktop",
"description": "Full office suite \u2014 word processor, spreadsheets, presentations, and database with MS Office compatibility",
"category": "productivity",
"author": "The Document Foundation",
"homepage": "https://www.libreoffice.org",
"icon": "libreoffice",
"keywords": [
"office",
"word",
"spreadsheet",
"presentation",
"document",
"writer",
"calc",
"excel",
"docx",
"xlsx"
],
"license": "MPL-2.0",
"versions": {
"26.2": {
"install": "apt-get install -y --no-install-recommends libreoffice",
"command": "libreoffice",
"permissions": [
"filesystem"
],
"singleton": true
}
}
},
"vlc": {
"name": "VLC",
"vetted": true,
"type": "desktop",
"description": "Universal media player \u2014 plays virtually any video and audio format, streams, DVDs, and network sources",
"category": "media",
"author": "VideoLAN",
"homepage": "https://www.videolan.org",
"icon": "vlc",
"keywords": [
"video",
"audio",
"player",
"media",
"streaming",
"codec"
],
"license": "GPL-2.0",
"versions": {
"latest": {
"flatpak_id": "org.videolan.VLC",
"command": "flatpak run org.videolan.VLC",
"permissions": [
"filesystem",
"gpu"
],
"singleton": true
}
}
},
"audacity": {
"name": "Audacity",
"vetted": true,
"type": "desktop",
"description": "Audio editor and recorder \u2014 multi-track editing, effects, noise reduction, and format conversion",
"category": "media",
"author": "Audacity Team",
"homepage": "https://www.audacityteam.org",
"icon": "audacity",
"keywords": [
"audio",
"editor",
"recording",
"music",
"sound",
"podcast"
],
"license": "GPL-3.0",
"versions": {
"latest": {
"flatpak_id": "org.audacityteam.Audacity",
"command": "flatpak run org.audacityteam.Audacity",
"permissions": [
"filesystem",
"microphone"
],
"singleton": true
}
}
},
"firefox": {
"name": "Firefox",
"vetted": true,
"type": "desktop",
"description": "Privacy-focused web browser by Mozilla \u2014 built-in DRM support for Netflix/Spotify, containers, and strong extension ecosystem",
"category": "internet",
"author": "Mozilla Foundation",
"homepage": "https://www.mozilla.org/firefox",
"icon": "firefox",
"keywords": [
"browser",
"web",
"internet",
"firefox",
"mozilla",
"privacy",
"drm",
"streaming"
],
"license": "MPL-2.0",
"versions": {
"latest": {
"flatpak_id": "org.mozilla.firefox",
"command": "flatpak run org.mozilla.firefox",
"permissions": [
"network",
"gpu"
],
"singleton": true
}
}
},
"thunderbird": {
"name": "Thunderbird",
"vetted": true,
"type": "desktop",
"description": "Email, calendar, and contacts client \u2014 IMAP/POP3, RSS feeds, encryption, and add-ons",
"category": "productivity",
"author": "Mozilla Foundation",
"homepage": "https://www.thunderbird.net",
"icon": "thunderbird",
"keywords": [
"email",
"mail",
"calendar",
"contacts",
"imap",
"pop3"
],
"license": "MPL-2.0",
"versions": {
"latest": {
"install": "apt-get install -y --no-install-recommends thunderbird",
"command": "thunderbird --no-remote",
"permissions": [
"network",
"filesystem"
],
"singleton": true
}
}
},
"kdenlive": {
"name": "Kdenlive",
"vetted": true,
"type": "desktop",
"description": "Non-linear video editor \u2014 multi-track timeline, effects, transitions, and proxy editing",
"category": "media",
"author": "KDE Community",
"homepage": "https://kdenlive.org",
"icon": "kdenlive",
"keywords": [
"video",
"editor",
"timeline",
"effects",
"rendering",
"film"
],
"license": "GPL-3.0",
"versions": {
"latest": {
"flatpak_id": "org.kde.kdenlive",
"command": "flatpak run org.kde.kdenlive",
"permissions": [
"filesystem",
"gpu"
],
"singleton": true
}
}
},
"filezilla": {
"name": "FileZilla",
"vetted": true,
"type": "desktop",
"description": "FTP/SFTP/FTPS client \u2014 fast file transfers, site manager, directory comparison",
"category": "network",
"author": "FileZilla Project",
"homepage": "https://filezilla-project.org",
"icon": "filezilla",
"keywords": [
"ftp",
"sftp",
"transfer",
"upload",
"download",
"files"
],
"license": "GPL-2.0",
"versions": {
"latest": {
"flatpak_id": "org.filezillaproject.Filezilla",
"command": "flatpak run org.filezillaproject.Filezilla",
"permissions": [
"network",
"filesystem"
],
"singleton": true
}
}
},
"keepassxc": {
"name": "KeePassXC",
"vetted": true,
"type": "desktop",
"description": "Offline password manager \u2014 AES-256 encrypted vault, TOTP, browser integration, auto-type",
"category": "system",
"author": "KeePassXC Team",
"homepage": "https://keepassxc.org",
"icon": "keepassxc",
"keywords": [
"password",
"security",
"vault",
"encryption",
"totp",
"manager"
],
"license": "GPL-3.0",
"versions": {
"latest": {
"flatpak_id": "org.keepassxc.KeePassXC",
"command": "flatpak run org.keepassxc.KeePassXC",
"permissions": [
"filesystem"
],
"singleton": true
}
}
},
"geany": {
"name": "Geany",
"vetted": true,
"type": "desktop",
"description": "Lightweight IDE and code editor \u2014 syntax highlighting, code folding, auto-completion, and build system",
"category": "developer",
"author": "Geany Project",
"homepage": "https://www.geany.org",
"icon": "geany",
"keywords": [
"code",
"editor",
"ide",
"development",
"programming",
"extensions"
],
"license": "GPL-2.0",
"versions": {
"latest": {
"flatpak_id": "org.geany.Geany",
"command": "flatpak run org.geany.Geany",
"permissions": [
"filesystem",
"network"
],
"singleton": true
}
}
},
"qbittorrent": {
"name": "qBittorrent",
"vetted": true,
"type": "desktop",
"description": "Feature-rich BitTorrent client \u2014 search, RSS, sequential download, IP filtering, and torrent creation",
"category": "network",
"author": "qBittorrent Project",
"homepage": "https://www.qbittorrent.org",
"icon": "qbittorrent",
"keywords": [
"torrent",
"bittorrent",
"download",
"p2p",
"transfer"
],
"license": "GPL-2.0",
"versions": {
"latest": {
"flatpak_id": "org.qbittorrent.qBittorrent",
"command": "flatpak run org.qbittorrent.qBittorrent",
"permissions": [
"network",
"filesystem"
],
"singleton": true
}
}
}
}
}