This repository was archived by the owner on Jun 20, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpkg_metafetcher_metaupdater_aarch64_arm64.yaml.old
3074 lines (3056 loc) · 185 KB
/
pkg_metafetcher_metaupdater_aarch64_arm64.yaml.old
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
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
name: 🛍️ (aarch64 | arm64) Generate | Update ⚙️ Daily Package 📦 Metadata 🗄️
#MAX_RUNTIME:
on:
workflow_dispatch:
schedule:
- cron: "*/75 * * * *" # Every 55 Mins
env:
GITHUB_TOKEN: "${{ secrets.HYSP_TOKEN }}"
jobs:
#------------------------------------------------------------------------------------#
#------------------------------------------------------------------------------------#
fetch-meta:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
path: main
- name: Install CoreUtils & Deps
run: |
set +e
sudo apt-get update -y
sudo apt-get install coreutils ca-certificates curl git dos2unix lzip jq moreutils p7zip-full util-linux wget -y
pip install ansi2txt --upgrade
#Re
sudo apt-get install coreutils ca-certificates curl git dos2unix lzip jq moreutils p7zip-full util-linux wget -y
pip install ansi2txt --upgrade
continue-on-error: true
- name: Install Addons
run: |
#Presets
set +x ; set +e
#--------------#
#delta
sudo curl -qfsSL "https://bin.ajam.dev/x86_64_Linux/delta" -o "/usr/local/bin/delta" && sudo chmod +xwr "/usr/local/bin/delta"
#eget
sudo curl -qfsSL "https://bin.ajam.dev/x86_64_Linux/eget" -o "/usr/local/bin/eget" && sudo chmod +xwr "/usr/local/bin/eget"
#validtoml
sudo curl -qfsSL "https://bin.ajam.dev/x86_64_Linux/validtoml" -o "/usr/local/bin/validtoml" && sudo chmod +xwr "/usr/local/bin/validtoml"
#Yj
sudo curl -qfsSL "https://bin.ajam.dev/x86_64_Linux/yj" -o "/usr/local/bin/yj" && sudo chmod +xwr "/usr/local/bin/yj"
#Yq
sudo curl -qfsSL "https://bin.ajam.dev/x86_64_Linux/yq" -o "/usr/local/bin/yq" && sudo chmod +xwr "/usr/local/bin/yq"
continue-on-error: true
- name: Setup Env
run: |
# Create Output Dir
mkdir -p "$GITHUB_WORKSPACE/main/data/aarch64_arm64"
continue-on-error: true
#------------------------------------------------------------------------------------#
#----------------------------#
#7z : A file archiver with a high compression ratio
- name: Generate Meta (7z)
run: |
#Presets
set +x ; set +e
#--------------#
#Generate Basic Meta
export SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux"
export BIN="7z" ; export DESCRIPTION="7-Zip is a file archiver with a high compression ratio." ; export AUTHOR="Igor Pavlov" ; export REPO_URL="https://sourceforge.net/projects/sevenzip/" ; export STARS="" ; export SOURCE_URL="https://bin.ajam.dev/aarch64_arm64_Linux/7z" ; export LANGUAGE="C++" ; export LICENSE="LGPL-2.1-or-later" ; export TOPICS='["File archiver", "Compression", "tar gz 7z zip rar xz bzip2"]'
PKG_METADATA="$(curl -qfsSL "$SOURCE_BIN/METADATA.json" 2>/dev/null | jq --arg bin "$BIN" '.[] | select(.Name == $bin)')" && export PKG_METADATA="$PKG_METADATA"
#Generate Dynamic Meta
BSUM="$(curl -qfsSL "$SOURCE_BIN/BLAKE3SUM.txt" 2>/dev/null | grep -i "$BIN$" | awk '{print $1}' | sort -u | head -n 1 | sed 's/"//g' | sed 's/^[ \t]*//;s/[ \t]*$//')" && export BSUM="$BSUM"
SHA="$(curl -qfsSL "$SOURCE_BIN/SHA256SUM.txt" 2>/dev/null | grep -i "$BIN$" | awk '{print $1}' | sort -u | head -n 1 | sed 's/"//g' | sed 's/^[ \t]*//;s/[ \t]*$//')" && export SHA="$SHA"
SIZE="$(echo $PKG_METADATA | jq -r '.Size' | sed 's/"//g' | sed 's/^[ \t]*//;s/[ \t]*$//')" && export SIZE="$SIZE"
PKG_VERSION="$(curl -qfsSL "https://www.7-zip.org/download.html" | grep -oP '<B>Download 7-Zip \K[^<]*' | grep -iv 'windows' | sort -u | tail -n 1 | awk '{print $1}')" && export PKG_VERSION="$PKG_VERSION"
PKG_RELEASED="$(curl -qfsSL "https://www.7-zip.org/download.html" | grep -oP '<B>Download 7-Zip \K[^<]*' | grep -iv 'windows' | sort -u | tail -n 1 | awk '{print $2}')" && export PKG_RELEASED="$PKG_RELEASED"
#Update
bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metaupdater_aarch64_arm64.sh")
continue-on-error: true
#----------------------------#
#act : Run your GitHub Actions locally 🚀
- name: Generate Meta (act)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="act" REPO="nektos/act" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#actionlint : :octocat: Static checker for GitHub Actions workflow files
- name: Generate Meta (actionlint)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="actionlint" REPO="rhysd/actionlint" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#agg: asciinema gif generator
- name: Generate Meta (agg)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="agg" REPO="asciinema/agg" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#airiXSS : xss automater
- name: Generate Meta (airixss)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="airixss" REPO="ferreiraklet/airixss" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#aix : AIx is a cli tool to interact with Large Language Models (LLM) APIs.
- name: Generate Meta (aix)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="aix" REPO="projectdiscovery/aix" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#algernon : Small self-contained pure-Go web server with Lua, Teal, Markdown, HTTP/2, QUIC, Redis and PostgreSQL support
- name: Generate Meta (algernon)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="algernon" REPO="xyproto/algernon" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#alist : A file list/WebDAV program that supports multiple storages
- name: Generate Meta (alist)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="alist" REPO="alist-org/alist" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#alterx : Fast and customizable subdomain wordlist generator using DSL
- name: Generate Meta (alterx)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="alterx" REPO="projectdiscovery/alterx" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#amass : In-depth attack surface mapping and asset discovery
- name: Generate Meta (amass)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="amass" REPO="owasp-amass/amass" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#analyticsrelationships : Get related domains / subdomains by looking at Google Analytics IDs
- name: Generate Meta (analyticsrelationships)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="analyticsrelationships" REPO="Josue87/AnalyticsRelationships" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#anew : A tool for adding new lines to files, skipping duplicates
- name: Generate Meta (anew)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="anew" REPO="tomnomnom/anew" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#angle-grinder: Slice and dice logs on the command line
- name: Generate Meta (agrind)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="agrind" REPO="rcoh/angle-grinder" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#aria2c : aria2 is a multi-protocol (HTTP/HTTPS, FTP, SFTP, BitTorrent & Metalink) & multi-source command-line download utility
- name: Generate Meta (aria2c)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="aria2c" REPO="aria2/aria2" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#asn : ASN / RPKI validity / BGP stats / IPv4v6 / Prefix / URL / ASPath / Organization / IP reputation / IP geolocation / IP fingerprinting / Network recon / lookup API server / Web traceroute server
- name: Generate Meta (asn)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="asn" REPO="nitefood/asn" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#asnmap : Mapping organization network ranges using ASN information
- name: Generate Meta (asnmap)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="asnmap" REPO="projectdiscovery/asnmap" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#assetfinder : Find domains and subdomains related to a given domain
- name: Generate Meta (assetfinder)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="assetfinder" REPO="tomnomnom/assetfinder" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#assh : 💻 make your ssh client smarter
- name: Generate Meta (assh)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="assh" REPO="moul/assh" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#atuin: Sync Shell History
- name: Generate Meta (atuin)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="atuin" REPO="atuinsh/atuin" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#b3sum : the official Rust and C implementations of the BLAKE3 cryptographic hash function
- name: Generate Meta (b3sum)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="b3sum" REPO="BLAKE3-team/BLAKE3" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#Bandwhich : Terminal bandwidth utilization tool
- name: Generate Meta (bandwhich)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="bandwhich" REPO="imsnif/bandwhich" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#bat: cat with colors & syntax highlights
- name: Generate Meta (bat)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="bat" REPO="sharkdp/bat" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#Berty : Secure peer-to-peer messaging app that works with or without internet access, cellular data or trust in the network
- name: Generate Meta (berty)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="berty" REPO="berty/berty" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#bin: Effortless binary manager
- name: Generate Meta (bin)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="bin" REPO="marcosnils/bin" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#BinGrep : like ~~grep~~ UBER, but for binaries
- name: Generate Meta (bingrep)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="bingrep" REPO="m4b/bingrep" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#binocle : a graphical tool to visualize binary data
- name: Generate Meta (binocle)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="binocle" REPO="sharkdp/binocle" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#bluetuith : A TUI bluetooth manager for Linux.
- name: Generate Meta (bluetuith)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="bluetuith" REPO="darkhz/bluetuith" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#BoltConn : Transparent and flexible L4/L7 networking manager, supporting WireGuard, firewall and scripted MitM
- name: Generate Meta (boltconn)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="boltconn" REPO="XOR-op/BoltConn" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
# #----------------------------#
# #bombadillo : Browser for gopher | gemini | finger | local (a user's file system)
# - name: Generate Meta (bombadillo)
# run: |
# #Presets
# set -x ; set +e ; ulimit -S -s unlimited
# #--------------#
# BIN="bombadillo" REPO="sloum/bombadillo" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
# continue-on-error: true
#----------------------------#
#bore : ngrok alternative for making tunnels to localhost
- name: Generate Meta (bore)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="bore" REPO="ekzhang/bore" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#boringtun-cli : Userspace WireGuard® Implementation in Rust
- name: Generate Meta (boringtun-cli)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="boringtun-cli" REPO="cloudflare/boringtun" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#bottom : htop clone | graphical process/system monitor
- name: Generate Meta (bottom)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="bottom" REPO="ClementTsang/bottom" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#boxxy : boxxy puts bad Linux applications in a box with only their files.
- name: Generate Meta (boxxy)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="boxxy" REPO="queer/boxxy" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#brename : tool for safely batch renaming files/directories via regular expression
- name: Generate Meta (brename)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="brename" REPO="shenwei356/brename" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#broot : A new way to see and navigate directory trees
- name: Generate Meta (broot)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="broot" REPO="Canop/broot" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#btop : htop clone | A monitor of resources
- name: Generate Meta (btop)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="btop" REPO="aristocratos/btop" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#BucketLoot : Automated S3-compatible bucket inspector
- name: Generate Meta (bucketloot)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="bucketloot" REPO="redhuntlabs/BucketLoot" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#busybox : several Unix utilities in a single executable file
- name: Generate Meta (busybox)
run: |
#Presets
set -x ; set +e
#--------------#
BIN="busybox" REPO="mirror/busybox" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#byp4xx : 40X/HTTP bypasser in Go. Features: Verb tampering, headers, #bugbountytips, User-Agents, extensions, default credentials
- name: Generate Meta (byp4xx)
run: |
#Presets
set -x ; set +e
#--------------#
BIN="byp4xx" REPO="lobuhi/byp4xx" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#caddy : Fast and extensible multi-platform HTTP/1-2-3 web server with automatic HTTPS
- name: Generate Meta (caddy)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="caddy" REPO="caddyserver/caddy" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#cdncheck : A utility to detect various technology for a given IP address.
- name: Generate Meta (cdncheck)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="cdncheck" REPO="projectdiscovery/cdncheck" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#cent : Fetch & Organize all Nuclei Templates
- name: Generate Meta (cent)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="cent" REPO="xm1k3/cent" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#certstream : Cli for calidog's certstream
- name: Generate Meta (certstream )
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="certstream" REPO="Azathothas/Arsenal" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#chaos-client : cli for Chaos DB API
- name: Generate Meta (chaos)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="chaos-client" REPO="projectdiscovery/chaos-client" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#cherrybomb : Validating and Testing APIs using an OpenAPI file
- name: Generate Meta (cherrybomb)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="cherrybomb" REPO="blst-security/cherrybomb" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#cloudlist : Cloudlist is a tool for listing Assets from multiple Cloud Providers.
- name: Generate Meta (cloudlist)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="cloudlist" REPO="projectdiscovery/cloudlist" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#cloudreve : Self-hosted file management and sharing system, supports multiple storage providers
- name: Generate Meta (cloudreve)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="cloudreve" REPO="cloudreve/Cloudreve" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#comb : Combine the lines from two files in every combination.
- name: Generate Meta (comb)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="comb" REPO="tomnomnom/hacks" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#containerd : An open and reliable container runtime
- name: Generate Meta (containerd)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="containerd" REPO="containerd/containerd" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#coreutils: Cross-platform Rust rewrite of the GNU coreutils
- name: Generate Meta (coreutils)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="coreutils" REPO="uutils/coreutils" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#cotp : Trustworthy, encrypted, command-line TOTP/HOTP authenticator app with import functionality.
- name: Generate Meta (cotp)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="cotp" REPO="replydev/cotp" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#cowtiness : mimic an HTTP server and a DNS server, providing complete responses
- name: Generate Meta (cowtiness)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="cowtiness" REPO="stolenusername/cowitness" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#cpufetch : fetch for cpu
- name: Generate Meta (cpufetch)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="cpufetch" REPO="Dr-Noob/cpufetch" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#cri-tools : CLI and validation tools for Kubelet Container Runtime Interface (CRI)
- name: Generate Meta (crictl)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="crictl" REPO="kubernetes-sigs/cri-tools" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#crlfuzz : A fast tool to scan CRLF vulnerability written in Go
- name: Generate Meta (crlfuzz)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="crlfuzz" REPO="dwisiswant0/crlfuzz" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#croc : Easily and securely send things from one computer to another
- name: Generate Meta (croc)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="croc" REPO="schollz/croc" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#crt : A CLI tool to check Certificate Transparency logs of a domain name
- name: Generate Meta (crt)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="crt" REPO="cemulus/crt" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#csprecon : Discover new target domains using Content Security Policy
- name: Generate Meta (csprecon)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="csprecon" REPO="edoardottt/csprecon" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#csvtk : A cross-platform, efficient and practical CSV/TSV toolkit
- name: Generate Meta (csvtk)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="csvtk" REPO="shenwei356/csvtk" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#curl
- name: Generate Meta (curl)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="curl" REPO="curl/curl" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#curlie : The power of curl, the ease of use of httpie.
- name: Generate Meta (curlie)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="curlie" REPO="rs/curlie" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#cut-cdn : ✂️ Removing CDN IPs from the list of IP addresses
- name: Generate Meta (cut-cdn)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="cut-cdn" REPO="ImAyrix/cut-cdn" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#dalfox : 🌙🦊 Dalfox is a powerful open-source XSS scanner and utility focused on automation.
- name: Generate Meta (dalfox)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="dalfox" REPO="hahwul/dalfox" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#Datadash : Visualize and graph data in the terminal
- name: Generate Meta (datadash)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="datadash" REPO="keithknott26/datadash" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#DevBox : Instant, easy, and predictable development environments
- name: Generate Meta (devbox)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="devbox" REPO="jetpack-io/devbox" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#delta : A syntax-highlighting pager for git, diff, and grep output
- name: Generate Meta (delta)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="delta" REPO="dandavison/delta" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#direnv: unclutter your .profile
- name: Generate Meta (direnv)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="direnv" REPO="direnv/direnv" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#dirstat-rs : (fastest?) disk usage cli, similar to windirstat.
- name: Generate Meta (dirstat-rs)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="ds" REPO="scullionw/dirstat-rs" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#dns-doctor : Runs dig +trace and dig +norecurse , parses the output, and tries to diagnose some problems
- name: Generate Meta (dns-doctor)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="dns-doctor" REPO="jvns/dns-doctor" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#dnstake : Check missing hosted DNS zones that can lead to subdomain takeover
- name: Generate Meta (dnstake)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="dnstake" REPO="pwnesia/dnstake" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#dnsx : Multi-purpose DNS toolkit allow to run multiple DNS queries
- name: Generate Meta (dnsx)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="dnsx" REPO="projectdiscovery/dnsx" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#doggo : 🐶 Command-line DNS Client for Humans
- name: Generate Meta (doggo)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="doggo" REPO="mr-karan/doggo" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#Dropbear : A smallish SSH server and client
- name: Generate Meta (dropbear)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="dbclient" REPO="mkj/dropbear" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
BIN="dropbear" REPO="mkj/dropbear" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
BIN="dropbearconvert" REPO="mkj/dropbear" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
BIN="dropbearkey" REPO="mkj/dropbear" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
BIN="dropbearmulti" REPO="mkj/dropbear" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
BIN="dropbearscp" REPO="mkj/dropbear" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#dsieve : Filter and enrich a list of subdomains by level
- name: Generate Meta (dsieve)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="dsieve" REPO="trickest/dsieve" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#duf : Disk Usage/Free Utility - a better 'df' alternative
- name: Generate Meta (duf)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="duf" REPO="muesli/duf" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#dust : A more intuitive version of du in rust
- name: Generate Meta (dust)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="dust" REPO="bootandy/dust" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#dysk : A linux utility to get information on filesystems, like df but better
- name: Generate Meta (dysk)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="dysk" REPO="Canop/dysk" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#eget : Easily install prebuilt binaries from GitHub
- name: Generate Meta (eget)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="eget" REPO="zyedidia/eget" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#encode : Encode|Decode input from stdin
- name: Generate Meta (encode)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="encode" REPO="Brum3ns/encode" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#enumerepo : List all public repositories for (valid) GitHub usernames
- name: Generate Meta (enumerepo)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="enumerepo" REPO="trickest/enumerepo" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#eza : A modern replacement for ‘ls’. (Fork of exa)
- name: Generate Meta (eza)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="eza" REPO="eza-community/eza" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#fblog : Small command-line JSON Log viewer
- name: Generate Meta (fblog)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="fblog" REPO="brocode/fblog" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#fclones : Efficient Duplicate File Finder
- name: Generate Meta (fclones)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="fclones" REPO="pkolaczk/fclones" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#fd : A simple, fast and user-friendly alternative to 'find'
- name: Generate Meta (fd)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="fd" REPO="sharkdp/fd" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#feroxbuster : A fast, simple, recursive content discovery tool written in Rust.
- name: Generate Meta (feroxbuster)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="feroxbuster" REPO="epi052/feroxbuster" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#fget : Multithread download for a list of files.
- name: Generate Meta (fget)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="fget" REPO="bp0lr/fget" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#Findomain : Subdomains Finder
- name: Generate Meta (findomain)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="findomain" REPO="Findomain/Findomain" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#fingerprintx : Standalone utility for service discovery on open ports!
- name: Generate Meta (fingerprintx)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="fingerprintx" REPO="praetorian-inc/fingerprintx" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#ffmpeg : collection of libraries and tools to process multimedia content
- name: Generate Meta (ffmpeg)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="ffmpeg" REPO="FFmpeg/FFmpeg" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#ffprobe : collection of libraries and tools to process multimedia content
- name: Generate Meta (ffprobe)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="ffprobe" REPO="FFmpeg/FFmpeg" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#ffuf : Fast web fuzzer written in Go
- name: Generate Meta (ffuf)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="ffuf" REPO="ffuf/ffuf" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#ffufPostprocessing : Filter ffuf results
- name: Generate Meta (ffufPostprocessing)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="ffufPostprocessing" REPO="Damian89/ffufPostprocessing" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#filebrowser : 📂 Web File Browser
- name: Generate Meta (filebrowser)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="filebrowser" REPO="filebrowser/filebrowser" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#findutils : Rust implementation of findutils
- name: Generate Meta (findutils-rs)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="find-rs" REPO="uutils/findutils" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
BIN="xargs-rs" REPO="uutils/findutils" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#fq : jq for binary formats - tool, language and decoders for working with binary and text formats
- name: Generate Meta (fq)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="fq" REPO="wader/fq" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#fuzzuli : URL fuzzing tool that aims to find critical backup files by creating a dynamic wordlist based on the domain.
- name: Generate Meta (fuzzuli)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="fuzzuli" REPO="musana/fuzzuli" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#fx: Terminal JSON viewer & processor
- name: Generate Meta (fx)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="fx" REPO="antonmedv/fx" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#fzf : 🌸 A command-line fuzzy finder
- name: Generate Meta (fzf)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="fzf" REPO="junegunn/fzf" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#gau : Fetch known URLs from AlienVault's Open Threat Exchange, the Wayback Machine, and Common Crawl.
- name: Generate Meta (gau)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="gau" REPO="lc/gau" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#gdu : Fast disk usage analyzer with console interface written in Go
- name: Generate Meta (gdu)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="gdu" REPO="dundee/gdu" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#getghrel(get github release) is a tool that fetches and installs the latest release assets from Github
- name: Generate Meta (getghrel)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="getghrel" REPO="kavishgr/getghrel" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#getJS : A tool to fastly get all javascript sources/files
- name: Generate Meta (getJS)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited
#--------------#
BIN="getJS" REPO="003random/getJS" SOURCE_BIN="https://bin.ajam.dev/aarch64_arm64_Linux" bash <(curl -qfsSL "https://raw.githubusercontent.com/metis-os/hysp-pkgs/main/.github/scripts/pkg_metafetcher_aarch64_arm64_bin.ajam.dev.sh")
continue-on-error: true
#----------------------------#
#gf : A wrapper around grep
- name: Generate Meta (gf)
run: |
#Presets
set -x ; set +e ; ulimit -S -s unlimited