aboutsummaryrefslogtreecommitdiff
path: root/security/Makefile
blob: ce92287f6e4d08491df242730fc6966828f83df2 (plain) (blame)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
    COMMENT = Security tools

    SUBDIR += 0d1n
    SUBDIR += 1password-client
    SUBDIR += 2fa
    SUBDIR += ADMsmb
    SUBDIR += ADMsnmp
    SUBDIR += R-cran-ROAuth
    SUBDIR += R-cran-askpass
    SUBDIR += R-cran-digest
    SUBDIR += R-cran-gitcreds
    SUBDIR += R-cran-openssl
    SUBDIR += acme.sh
    SUBDIR += acmed
    SUBDIR += acmetool
    SUBDIR += aescrypt
    SUBDIR += aespipe
    SUBDIR += afl
    SUBDIR += afl++
    SUBDIR += afterglow
    SUBDIR += age
    SUBDIR += aide
    SUBDIR += akmos
    SUBDIR += amap
    SUBDIR += amavis-stats
    SUBDIR += amavisd-milter
    SUBDIR += amavisd-new
    SUBDIR += apache-xml-security-c
    SUBDIR += apg
    SUBDIR += apkid
    SUBDIR += arirang
    SUBDIR += arpCounterattack
    SUBDIR += asignify
    SUBDIR += assh
    SUBDIR += autossh
    SUBDIR += aws-c-cal
    SUBDIR += aws-iam-authenticator
    SUBDIR += aws-vault
    SUBDIR += axTLS
    SUBDIR += barnyard2
    SUBDIR += barnyard2-sguil
    SUBDIR += base
    SUBDIR += base-audit
    SUBDIR += bastillion
    SUBDIR += bcrypt
    SUBDIR += bcwipe
    SUBDIR += bdes
    SUBDIR += bearssl
    SUBDIR += beecrypt
    SUBDIR += beid
    SUBDIR += belier
    SUBDIR += bfbtester
    SUBDIR += binwalk
    SUBDIR += boringssl
    SUBDIR += botan110
    SUBDIR += botan2
    SUBDIR += bruteblock
    SUBDIR += bruteforceblocker
    SUBDIR += bsdsfv
    SUBDIR += bsmtrace
    SUBDIR += bsmtrace3
    SUBDIR += bzrtp
    SUBDIR += ca_root_nss
    SUBDIR += caesarcipher
    SUBDIR += calife
    SUBDIR += cardpeek
    SUBDIR += cargo-audit
    SUBDIR += ccrypt
    SUBDIR += ccsrch
    SUBDIR += cfs
    SUBDIR += cfssl
    SUBDIR += chaosreader
    SUBDIR += checkpassword
    SUBDIR += checkpassword-pam
    SUBDIR += chkrootkit
    SUBDIR += chntpw
    SUBDIR += chroot_safe
    SUBDIR += chrootuid
    SUBDIR += cisco-torch
    SUBDIR += ckpass
    SUBDIR += cksfv
    SUBDIR += cl-md5
    SUBDIR += cl-md5-sbcl
    SUBDIR += clamassassin
    SUBDIR += clamav
    SUBDIR += clamav-unofficial-sigs
    SUBDIR += clamd-stream-client
    SUBDIR += clamfs
    SUBDIR += clamsmtp
    SUBDIR += clamtk
    SUBDIR += cloak
    SUBDIR += clusterssh
    SUBDIR += cops
    SUBDIR += courier-authlib
    SUBDIR += courier-authlib-base
    SUBDIR += courierpassd
    SUBDIR += courierpasswd
    SUBDIR += courieruserinfo
    SUBDIR += cowrie
    SUBDIR += cp2fwb
    SUBDIR += cracklib
    SUBDIR += crackpkcs12
    SUBDIR += create-cert
    SUBDIR += crowdsec
    SUBDIR += crowdsec-firewall-bouncer
    SUBDIR += cryptlib
    SUBDIR += cryptopp
    SUBDIR += ct-submit
    SUBDIR += cvechecker
    SUBDIR += cvm
    SUBDIR += cyberchef
    SUBDIR += cyrus-sasl2
    SUBDIR += cyrus-sasl2-gssapi
    SUBDIR += cyrus-sasl2-ldapdb
    SUBDIR += cyrus-sasl2-saslauthd
    SUBDIR += cyrus-sasl2-sql
    SUBDIR += cyrus-sasl2-srp
    SUBDIR += d0_blind_id
    SUBDIR += dcetest
    SUBDIR += dehydrated
    SUBDIR += denyhosts
    SUBDIR += destroy
    SUBDIR += digestpp
    SUBDIR += dirbuster
    SUBDIR += dirmngr
    SUBDIR += distcache
    SUBDIR += doas
    SUBDIR += doscan
    SUBDIR += dotdotpwn
    SUBDIR += dropbear
    SUBDIR += dsniff
    SUBDIR += dsvpn
    SUBDIR += duo
    SUBDIR += duo_openvpn
    SUBDIR += easy-rsa
    SUBDIR += elixir-comeonin
    SUBDIR += elixir-comeonin_i18n
    SUBDIR += elixir-jose
    SUBDIR += enchive
    SUBDIR += erlang-fast_tls
    SUBDIR += erlang-jose
    SUBDIR += eschalot
    SUBDIR += esteidfirefoxplugin
    SUBDIR += expiretable
    SUBDIR += f-prot
    SUBDIR += fakebo
    SUBDIR += fakeident
    SUBDIR += fakeroot
    SUBDIR += farmhash
    SUBDIR += fcheck
    SUBDIR += fcrackzip
    SUBDIR += ffuf
    SUBDIR += fiked
    SUBDIR += find-zlib
    SUBDIR += fizz
    SUBDIR += fl0p
    SUBDIR += flawfinder
    SUBDIR += fpc-gnutls
    SUBDIR += fpc-openssl
    SUBDIR += fprint_demo
    SUBDIR += fprintd
    SUBDIR += fragroute
    SUBDIR += fragrouter
    SUBDIR += fswatch
    SUBDIR += ftimes
    SUBDIR += fuzz
    SUBDIR += fwanalog
    SUBDIR += fwbuilder
    SUBDIR += fwknop
    SUBDIR += fwlogwatch
    SUBDIR += gcr
    SUBDIR += gef
    SUBDIR += git-crypt
    SUBDIR += git-remote-gcrypt
    SUBDIR += git-secret
    SUBDIR += gitjacker
    SUBDIR += gnome-keyring
    SUBDIR += gnome-keyring-sharp
    SUBDIR += gnome-ssh-askpass
    SUBDIR += gnomint
    SUBDIR += gnupg
    SUBDIR += gnupg-pkcs11-scd
    SUBDIR += gnupg1
    SUBDIR += gnutls
    SUBDIR += go-cve-dictionary
    SUBDIR += gonepass
    SUBDIR += gopass
    SUBDIR += gorilla
    SUBDIR += gost-engine
    SUBDIR += govpn
    SUBDIR += gpa
    SUBDIR += gpg-gui
    SUBDIR += gpgdir
    SUBDIR += gpgme
    SUBDIR += gpgme-cpp
    SUBDIR += gpgme-qt5
    SUBDIR += gputty
    SUBDIR += greenbone-security-assistant
    SUBDIR += gringotts
    SUBDIR += gsasl
    SUBDIR += gss
    SUBDIR += gstreamer1-plugins-dtls
    SUBDIR += gtkpasman
    SUBDIR += gvm
    SUBDIR += gvm-libs
    SUBDIR += gvmd
    SUBDIR += gwee
    SUBDIR += hackbot
    SUBDIR += hardening-check
    SUBDIR += hash
    SUBDIR += hashcat
    SUBDIR += hashcat-legacy
    SUBDIR += heaan
    SUBDIR += heimdal
    SUBDIR += helib
    SUBDIR += highwayhash
    SUBDIR += hitch
    SUBDIR += hlfl
    SUBDIR += hockeypuck
    SUBDIR += honeytrap
    SUBDIR += honggfuzz
    SUBDIR += horcrux
    SUBDIR += hpenc
    SUBDIR += hs-cryptol
    SUBDIR += hydra
    SUBDIR += i2p
    SUBDIR += i2pd
    SUBDIR += iaikpkcs11wrapper
    SUBDIR += idea
    SUBDIR += identify
    SUBDIR += ike
    SUBDIR += imds-filterd
    SUBDIR += integrit
    SUBDIR += intel-ipsec-mb
    SUBDIR += ipfilter2dshield
    SUBDIR += ipfmeta
    SUBDIR += ipfw2dshield
    SUBDIR += ipguard
    SUBDIR += ipsec-tools
    SUBDIR += ipv6toolkit
    SUBDIR += isakmpd
    SUBDIR += isal-kmod
    SUBDIR += isnprober
    SUBDIR += jbrofuzz
    SUBDIR += john
    SUBDIR += kbfsd
    SUBDIR += kc24
    SUBDIR += kdbxviewer
    SUBDIR += keepass
    SUBDIR += keepass-plugin-keepassrpc
    SUBDIR += keepassx-devel
    SUBDIR += keepassxc
    SUBDIR += keybase
    SUBDIR += keychain
    SUBDIR += keynote
    SUBDIR += keyprint
    SUBDIR += kf5-kdesu
    SUBDIR += kgpg
    SUBDIR += kickpass
    SUBDIR += klee
    SUBDIR += kleopatra
    SUBDIR += knock
    SUBDIR += knocker
    SUBDIR += kpcli
    SUBDIR += kpkpass
    SUBDIR += kpmenu
    SUBDIR += krb5
    SUBDIR += krb5-117
    SUBDIR += krb5-118
    SUBDIR += krb5-119
    SUBDIR += krb5-appl
    SUBDIR += krb5-devel
    SUBDIR += kripp
    SUBDIR += kstart
    SUBDIR += ktls_isa-l_crypto-kmod
    SUBDIR += kuku
    SUBDIR += kwalletmanager
    SUBDIR += l0pht-watch
    SUBDIR += l0phtcrack
    SUBDIR += l5
    SUBDIR += lasso
    SUBDIR += lastpass-cli
    SUBDIR += lego
    SUBDIR += libadacrypt
    SUBDIR += libargon2
    SUBDIR += libassuan
    SUBDIR += libcryptui
    SUBDIR += libdecaf
    SUBDIR += libecc
    SUBDIR += libfido2
    SUBDIR += libfprint
    SUBDIR += libgcrypt
    SUBDIR += libgnome-keyring
    SUBDIR += libgpg-error
    SUBDIR += libgringotts
    SUBDIR += libgsasl
    SUBDIR += libhijack
    SUBDIR += libident
    SUBDIR += libkleo
    SUBDIR += libkpass
    SUBDIR += libksba
    SUBDIR += libmcrypt
    SUBDIR += libnitrokey
    SUBDIR += libntlm
    SUBDIR += libotr
    SUBDIR += libotr3
    SUBDIR += libp11
    SUBDIR += libprelude
    SUBDIR += libpreludedb
    SUBDIR += libpwquality
    SUBDIR += libpwstor
    SUBDIR += libressl
    SUBDIR += libressl-devel
    SUBDIR += libreswan
    SUBDIR += libretls
    SUBDIR += libscep
    SUBDIR += libscrypt
    SUBDIR += libsecret
    SUBDIR += libsectok
    SUBDIR += libsodium
    SUBDIR += libssh
    SUBDIR += libssh2
    SUBDIR += libtasn1
    SUBDIR += libtomcrypt
    SUBDIR += libu2f-host
    SUBDIR += libuecc
    SUBDIR += libwhisker
    SUBDIR += libyubikey
    SUBDIR += libzrtpcppcore
    SUBDIR += linux-c7-cyrus-sasl2
    SUBDIR += linux-c7-gnutls
    SUBDIR += linux-c7-libgcrypt
    SUBDIR += linux-c7-libgpg-error
    SUBDIR += linux-c7-libssh2
    SUBDIR += linux-c7-libtasn1
    SUBDIR += linux-c7-nettle
    SUBDIR += linux-c7-nss
    SUBDIR += linux-c7-p11-kit
    SUBDIR += linux-c7-trousers
    SUBDIR += logcheck
    SUBDIR += lua-bcrypt
    SUBDIR += luasec
    SUBDIR += lxqt-openssh-askpass
    SUBDIR += lxqt-sudo
    SUBDIR += lynis
    SUBDIR += mac-robber
    SUBDIR += maia
    SUBDIR += mailzu
    SUBDIR += makepasswd
    SUBDIR += maltrail
    SUBDIR += manipulate_data
    SUBDIR += masscan
    SUBDIR += matrixssl
    SUBDIR += mbedtls
    SUBDIR += mcrypt
    SUBDIR += md5deep
    SUBDIR += medusa
    SUBDIR += meek
    SUBDIR += metasploit
    SUBDIR += mhash
    SUBDIR += mindterm-binary
    SUBDIR += minisign
    SUBDIR += mkp224o
    SUBDIR += modsecurity3
    SUBDIR += modsecurity3-apache
    SUBDIR += modsecurity3-nginx
    SUBDIR += monkeysphere
    SUBDIR += munge
    SUBDIR += mussh
    SUBDIR += n2n
    SUBDIR += nacl
    SUBDIR += ncrack
    SUBDIR += ncrypt
    SUBDIR += nettle
    SUBDIR += nextcloud-end_to_end_encryption
    SUBDIR += nextcloud-passman
    SUBDIR += nextcloud-twofactor_totp
    SUBDIR += nextcloud-twofactor_u2f
    SUBDIR += nflib
    SUBDIR += ngrok
    SUBDIR += nikto
    SUBDIR += nist-kat
    SUBDIR += nitrokey-app
    SUBDIR += nmap
    SUBDIR += nss
    SUBDIR += nss_compat_ossl
    SUBDIR += nyx
    SUBDIR += oath-toolkit
    SUBDIR += obfs4proxy-tor
    SUBDIR += obfsclient
    SUBDIR += ocaml-cryptgps
    SUBDIR += ocaml-cryptokit
    SUBDIR += ocaml-ssl
    SUBDIR += oidentd
    SUBDIR += oinkmaster
    SUBDIR += olm
    SUBDIR += onionscan
    SUBDIR += op
    SUBDIR += openbsm
    SUBDIR += openca-tools-forked
    SUBDIR += openconnect
    SUBDIR += openconnect-freebsd-daemon
    SUBDIR += openconnect-gui
    SUBDIR += opencryptoki
    SUBDIR += openct
    SUBDIR += openfortivpn
    SUBDIR += openiked
    SUBDIR += opensaml
    SUBDIR += opensc
    SUBDIR += openscep
    SUBDIR += openssh-askpass
    SUBDIR += openssh-portable
    SUBDIR += openssl
    SUBDIR += openssl-devel
    SUBDIR += openssl-quictls
    SUBDIR += openssl-unsafe
    SUBDIR += openssl_tpm_engine
    SUBDIR += openvas
    SUBDIR += openvpn
    SUBDIR += openvpn-admin
    SUBDIR += openvpn-auth-ldap
    SUBDIR += openvpn-auth-radius
    SUBDIR += openvpn-auth-script
    SUBDIR += openvpn-devel
    SUBDIR += openvpn-mbedtls
    SUBDIR += ophcrack
    SUBDIR += ossec-hids
    SUBDIR += ossec-hids-agent
    SUBDIR += ossec-hids-agent-config
    SUBDIR += ossec-hids-local
    SUBDIR += ossec-hids-local-config
    SUBDIR += ossec-hids-server
    SUBDIR += ossec-hids-server-config
    SUBDIR += osslsigncode
    SUBDIR += otpw
    SUBDIR += outguess
    SUBDIR += owasp-dependency-check
    SUBDIR += p11-kit
    SUBDIR += p5-Alt-Crypt-RSA-BigInt
    SUBDIR += p5-Apache-Htpasswd
    SUBDIR += p5-App-Acmeman
    SUBDIR += p5-App-Genpass
    SUBDIR += p5-App-TLSMe
    SUBDIR += p5-Auth-YubikeyDecrypter
    SUBDIR += p5-AuthCAS
    SUBDIR += p5-Authen-Bitcard
    SUBDIR += p5-Authen-Captcha
    SUBDIR += p5-Authen-CyrusSASL
    SUBDIR += p5-Authen-DecHpwd
    SUBDIR += p5-Authen-Htpasswd
    SUBDIR += p5-Authen-Krb5
    SUBDIR += p5-Authen-Krb5-Simple
    SUBDIR += p5-Authen-Libwrap
    SUBDIR += p5-Authen-NTLM
    SUBDIR += p5-Authen-OATH
    SUBDIR += p5-Authen-PAAS
    SUBDIR += p5-Authen-PAM
    SUBDIR += p5-Authen-Passphrase
    SUBDIR += p5-Authen-PluggableCaptcha
    SUBDIR += p5-Authen-Radius
    SUBDIR += p5-Authen-SASL
    SUBDIR += p5-Authen-SASL-Cyrus
    SUBDIR += p5-Authen-SASL-SASLprep
    SUBDIR += p5-Authen-SCRAM
    SUBDIR += p5-Authen-Simple
    SUBDIR += p5-Authen-Simple-DBI
    SUBDIR += p5-Authen-Simple-DBM
    SUBDIR += p5-Authen-Simple-HTTP
    SUBDIR += p5-Authen-Simple-Kerberos
    SUBDIR += p5-Authen-Simple-LDAP
    SUBDIR += p5-Authen-Simple-Net
    SUBDIR += p5-Authen-Simple-PAM
    SUBDIR += p5-Authen-Simple-Passwd
    SUBDIR += p5-Authen-Simple-RADIUS
    SUBDIR += p5-Authen-Simple-SMB
    SUBDIR += p5-Authen-Simple-SSH
    SUBDIR += p5-Authen-Smb
    SUBDIR += p5-Authen-TacacsPlus
    SUBDIR += p5-Authen-Ticket
    SUBDIR += p5-Authen-TypeKey
    SUBDIR += p5-Business-PayPal-EWP
    SUBDIR += p5-Bytes-Random-Secure
    SUBDIR += p5-Bytes-Random-Secure-Tiny
    SUBDIR += p5-CACertOrg-CA
    SUBDIR += p5-CSP
    SUBDIR += p5-Cisco-Hash
    SUBDIR += p5-Crypt-Anubis
    SUBDIR += p5-Crypt-AppleTwoFish
    SUBDIR += p5-Crypt-Argon2
    SUBDIR += p5-Crypt-Blowfish
    SUBDIR += p5-Crypt-Blowfish_PP
    SUBDIR += p5-Crypt-CAST5
    SUBDIR += p5-Crypt-CAST5_PP
    SUBDIR += p5-Crypt-CBC
    SUBDIR += p5-Crypt-CBCeasy
    SUBDIR += p5-Crypt-CFB
    SUBDIR += p5-Crypt-Caesar
    SUBDIR += p5-Crypt-Camellia_PP
    SUBDIR += p5-Crypt-Chimera
    SUBDIR += p5-Crypt-CipherSaber
    SUBDIR += p5-Crypt-Cracklib
    SUBDIR += p5-Crypt-Ctr
    SUBDIR += p5-Crypt-Curve25519
    SUBDIR += p5-Crypt-DES
    SUBDIR += p5-Crypt-DES_EDE3
    SUBDIR += p5-Crypt-DES_PP
    SUBDIR += p5-Crypt-DH
    SUBDIR += p5-Crypt-DSA
    SUBDIR += p5-Crypt-Dining
    SUBDIR += p5-Crypt-ECB
    SUBDIR += p5-Crypt-Eksblowfish
    SUBDIR += p5-Crypt-Enigma
    SUBDIR += p5-Crypt-Format
    SUBDIR += p5-Crypt-GCrypt
    SUBDIR += p5-Crypt-GOST
    SUBDIR += p5-Crypt-GOST_PP
    SUBDIR += p5-Crypt-GPG
    SUBDIR += p5-Crypt-GeneratePassword
    SUBDIR += p5-Crypt-HCE_MD5
    SUBDIR += p5-Crypt-HCE_SHA
    SUBDIR += p5-Crypt-HSXKPasswd
    SUBDIR += p5-Crypt-IDEA
    SUBDIR += p5-Crypt-Imail
    SUBDIR += p5-Crypt-JWT
    SUBDIR += p5-Crypt-Juniper
    SUBDIR += p5-Crypt-Khazad
    SUBDIR += p5-Crypt-LE
    SUBDIR += p5-Crypt-LibSCEP
    SUBDIR += p5-Crypt-License
    SUBDIR += p5-Crypt-Lite
    SUBDIR += p5-Crypt-Loki97
    SUBDIR += p5-Crypt-MySQL
    SUBDIR += p5-Crypt-NULL
    SUBDIR += p5-Crypt-OFB
    SUBDIR += p5-Crypt-OICQ
    SUBDIR += p5-Crypt-OTP
    SUBDIR += p5-Crypt-OpenPGP
    SUBDIR += p5-Crypt-OpenSSL-AES
    SUBDIR += p5-Crypt-OpenSSL-Bignum
    SUBDIR += p5-Crypt-OpenSSL-CA
    SUBDIR += p5-Crypt-OpenSSL-DSA
    SUBDIR += p5-Crypt-OpenSSL-EC
    SUBDIR += p5-Crypt-OpenSSL-ECDSA
    SUBDIR += p5-Crypt-OpenSSL-Guess
    SUBDIR += p5-Crypt-OpenSSL-PKCS10
    SUBDIR += p5-Crypt-OpenSSL-RSA
    SUBDIR += p5-Crypt-OpenSSL-Random
    SUBDIR += p5-Crypt-OpenSSL-X509
    SUBDIR += p5-Crypt-PBKDF2
    SUBDIR += p5-Crypt-PKCS10
    SUBDIR += p5-Crypt-PWSafe3
    SUBDIR += p5-Crypt-PassGen
    SUBDIR += p5-Crypt-Passwd-XS
    SUBDIR += p5-Crypt-PasswdMD5
    SUBDIR += p5-Crypt-Password-Util
    SUBDIR += p5-Crypt-Perl
    SUBDIR += p5-Crypt-Primes
    SUBDIR += p5-Crypt-RC4
    SUBDIR += p5-Crypt-RC5
    SUBDIR += p5-Crypt-RC6
    SUBDIR += p5-Crypt-RHash
    SUBDIR += p5-Crypt-RIPEMD160
    SUBDIR += p5-Crypt-RSA
    SUBDIR += p5-Crypt-RSA-Parse
    SUBDIR += p5-Crypt-RSA-Yandex
    SUBDIR += p5-Crypt-Rabbit
    SUBDIR += p5-Crypt-RandPasswd
    SUBDIR += p5-Crypt-Random
    SUBDIR += p5-Crypt-Random-Seed
    SUBDIR += p5-Crypt-Random-Source
    SUBDIR += p5-Crypt-Random-TESHA2
    SUBDIR += p5-Crypt-Rijndael
    SUBDIR += p5-Crypt-Rijndael_PP
    SUBDIR += p5-Crypt-SKey
    SUBDIR += p5-Crypt-SMIME
    SUBDIR += p5-Crypt-SSLeay
    SUBDIR += p5-Crypt-SSSS
    SUBDIR += p5-Crypt-Salt
    SUBDIR += p5-Crypt-SaltedHash
    SUBDIR += p5-Crypt-Serpent
    SUBDIR += p5-Crypt-Shark
    SUBDIR += p5-Crypt-Simple
    SUBDIR += p5-Crypt-SmbHash
    SUBDIR += p5-Crypt-Sodium
    SUBDIR += p5-Crypt-Solitaire
    SUBDIR += p5-Crypt-TEA
    SUBDIR += p5-Crypt-T_e_a
    SUBDIR += p5-Crypt-Tea_JS
    SUBDIR += p5-Crypt-TripleDES
    SUBDIR += p5-Crypt-Twofish
    SUBDIR += p5-Crypt-Twofish2
    SUBDIR += p5-Crypt-Twofish_PP
    SUBDIR += p5-Crypt-URandom
    SUBDIR += p5-Crypt-UnixCrypt
    SUBDIR += p5-Crypt-UnixCrypt_XS
    SUBDIR += p5-Crypt-X509
    SUBDIR += p5-Crypt-X509-CRL
    SUBDIR += p5-Crypt-XTEA
    SUBDIR += p5-Crypt-xDBM_File
    SUBDIR += p5-CryptX
    SUBDIR += p5-Dancer-Plugin-Auth-Extensible
    SUBDIR += p5-Dancer-Plugin-Auth-Extensible-Provider-Usergroup
    SUBDIR += p5-Dancer-Plugin-Passphrase
    SUBDIR += p5-Dancer2-Plugin-Auth-Extensible
    SUBDIR += p5-Dancer2-Plugin-Auth-Extensible-Provider-DBIC
    SUBDIR += p5-Dancer2-Plugin-Auth-Extensible-Provider-Database
    SUBDIR += p5-Dancer2-Plugin-Auth-Extensible-Provider-IMAP
    SUBDIR += p5-Dancer2-Plugin-Auth-Extensible-Provider-Usergroup
    SUBDIR += p5-Dancer2-Plugin-Passphrase
    SUBDIR += p5-Data-Entropy
    SUBDIR += p5-Data-Password
    SUBDIR += p5-Digest
    SUBDIR += p5-Digest-Adler32
    SUBDIR += p5-Digest-Bcrypt
    SUBDIR += p5-Digest-BubbleBabble
    SUBDIR += p5-Digest-CRC
    SUBDIR += p5-Digest-Crc32
    SUBDIR += p5-Digest-DJB
    SUBDIR += p5-Digest-DMAC
    SUBDIR += p5-Digest-EMAC
    SUBDIR += p5-Digest-Elf
    SUBDIR += p5-Digest-FNV
    SUBDIR += p5-Digest-GOST
    SUBDIR += p5-Digest-HMAC
    SUBDIR += p5-Digest-Hashcash
    SUBDIR += p5-Digest-Haval256
    SUBDIR += p5-Digest-JHash
    SUBDIR += p5-Digest-MD2
    SUBDIR += p5-Digest-MD4
    SUBDIR += p5-Digest-MD5
    SUBDIR += p5-Digest-MD5-File
    SUBDIR += p5-Digest-MD5-M4p
    SUBDIR += p5-Digest-MD5-Reverse
    SUBDIR += p5-Digest-ManberHash
    SUBDIR += p5-Digest-MurmurHash
    SUBDIR += p5-Digest-Nilsimsa
    SUBDIR += p5-Digest-Pearson
    SUBDIR += p5-Digest-Pearson-PurePerl
    SUBDIR += p5-Digest-Perl-MD4
    SUBDIR += p5-Digest-Perl-MD5
    SUBDIR += p5-Digest-SHA
    SUBDIR += p5-Digest-SHA-PurePerl
    SUBDIR += p5-Digest-SHA1
    SUBDIR += p5-Digest-SHA3
    SUBDIR += p5-Digest-SV1
    SUBDIR += p5-Digest-Tiger
    SUBDIR += p5-Digest-Whirlpool
    SUBDIR += p5-File-KeePass
    SUBDIR += p5-File-KeePass-Agent
    SUBDIR += p5-File-Scan
    SUBDIR += p5-File-Scan-ClamAV
    SUBDIR += p5-Filter-CBC
    SUBDIR += p5-Filter-Crypto
    SUBDIR += p5-GD-SecurityImage
    SUBDIR += p5-GSSAPI
    SUBDIR += p5-GnuPG
    SUBDIR += p5-GnuPG-Interface
    SUBDIR += p5-HTML-Email-Obfuscate
    SUBDIR += p5-Heimdal-Kadm5
    SUBDIR += p5-IO-Async-SSL
    SUBDIR += p5-IO-Socket-SSL
    SUBDIR += p5-MD5
    SUBDIR += p5-Mcrypt
    SUBDIR += p5-Module-Signature
    SUBDIR += p5-Net-Daemon-SSL
    SUBDIR += p5-Net-OpenID-Common
    SUBDIR += p5-Net-OpenID-JanRain
    SUBDIR += p5-Net-OpenID-Server
    SUBDIR += p5-Net-Radius-Server
    SUBDIR += p5-Net-SAML
    SUBDIR += p5-Net-SSH-AuthorizedKeysFile
    SUBDIR += p5-Net-SSL-ExpireDate
    SUBDIR += p5-Net-SSLGlue
    SUBDIR += p5-Net-SSLeay
    SUBDIR += p5-Net-Server-Mail-ESMTP-AUTH
    SUBDIR += p5-Net-SinFP
    SUBDIR += p5-Nmap-Parser
    SUBDIR += p5-Nmap-Scanner
    SUBDIR += p5-OpenCA-CRL
    SUBDIR += p5-OpenCA-CRR
    SUBDIR += p5-OpenCA-OpenSSL
    SUBDIR += p5-OpenCA-PKCS7
    SUBDIR += p5-OpenCA-REQ
    SUBDIR += p5-OpenCA-X509
    SUBDIR += p5-PBKDF2-Tiny
    SUBDIR += p5-PGP
    SUBDIR += p5-PGP-Sign
    SUBDIR += p5-POE-Component-SSLify
    SUBDIR += p5-POE-Filter-SSL
    SUBDIR += p5-Parse-Snort
    SUBDIR += p5-PerlCryptLib
    SUBDIR += p5-Protocol-ACME
    SUBDIR += p5-SAVI-Perl
    SUBDIR += p5-SHA
    SUBDIR += p5-Safe-Hole
    SUBDIR += p5-Session-Token
    SUBDIR += p5-Snort-Rule
    SUBDIR += p5-String-MkPasswd
    SUBDIR += p5-Sudo
    SUBDIR += p5-Text-Password-Pronounceable
    SUBDIR += p5-Tie-EncryptedHash
    SUBDIR += p5-Tree-Authz
    SUBDIR += p5-Unix-Passwd-File
    SUBDIR += p5-Unix-setuid
    SUBDIR += p5-Yahoo-BBAuth
    SUBDIR += p5-dicewaregen
    SUBDIR += p5-openxpki
    SUBDIR += p5-openxpki-i18n
    SUBDIR += p5-plog
    SUBDIR += palisade
    SUBDIR += pam-modules
    SUBDIR += pam-mysql
    SUBDIR += pam-pgsql
    SUBDIR += pam_google_authenticator
    SUBDIR += pam_helper
    SUBDIR += pam_jail
    SUBDIR += pam_kde
    SUBDIR += pam_krb5
    SUBDIR += pam_krb5-rh
    SUBDIR += pam_ldap
    SUBDIR += pam_mkhomedir
    SUBDIR += pam_ocra
    SUBDIR += pam_p11
    SUBDIR += pam_pkcs11
    SUBDIR += pam_pwdfile
    SUBDIR += pam_require
    SUBDIR += pam_script
    SUBDIR += pam_search_list
    SUBDIR += pam_ssh_agent_auth
    SUBDIR += pam_yubico
    SUBDIR += pamtester
    SUBDIR += paperkey
    SUBDIR += passivedns
    SUBDIR += pbc
    SUBDIR += pbnj
    SUBDIR += pcsc-tools
    SUBDIR += pdfcrack
    SUBDIR += pear-Auth
    SUBDIR += pear-Auth_HTTP
    SUBDIR += pear-Auth_PrefManager
    SUBDIR += pear-Auth_SASL
    SUBDIR += pear-Auth_SASL2
    SUBDIR += pear-Crypt_Blowfish
    SUBDIR += pear-Crypt_CBC
    SUBDIR += pear-Crypt_CHAP
    SUBDIR += pear-Crypt_DiffieHellman
    SUBDIR += pear-Crypt_GPG
    SUBDIR += pear-Crypt_HMAC2
    SUBDIR += pear-Crypt_MicroID
    SUBDIR += pear-Crypt_RC4
    SUBDIR += pear-Crypt_RSA
    SUBDIR += pear-Crypt_XXTEA
    SUBDIR += pear-File_HtAccess
    SUBDIR += pear-File_Passwd
    SUBDIR += pear-File_SMBPasswd
    SUBDIR += pear-HTML_Crypt
    SUBDIR += pear-Horde_Auth
    SUBDIR += pear-Horde_Crypt
    SUBDIR += pear-Horde_Crypt_Blowfish
    SUBDIR += pear-Horde_Group
    SUBDIR += pear-Horde_Oauth
    SUBDIR += pear-Horde_Perms
    SUBDIR += pear-Horde_Secret
    SUBDIR += pear-Horde_Share
    SUBDIR += pear-LiveUser
    SUBDIR += pear-LiveUser_Admin
    SUBDIR += pear-Net_Portscan
    SUBDIR += pear-Text_Password
    SUBDIR += pecl-crypto
    SUBDIR += pecl-gnupg
    SUBDIR += pecl-krb5
    SUBDIR += pecl-libsodium
    SUBDIR += pecl-mcrypt
    SUBDIR += pecl-pam
    SUBDIR += pecl-pkcs11
    SUBDIR += pecl-scrypt
    SUBDIR += pecl-ssh2
    SUBDIR += peda
    SUBDIR += pev
    SUBDIR += pgpdump
    SUBDIR += pgpgpg
    SUBDIR += pgpin
    SUBDIR += php73-filter
    SUBDIR += php73-hash
    SUBDIR += php73-openssl
    SUBDIR += php73-sodium
    SUBDIR += php74-filter
    SUBDIR += php74-openssl
    SUBDIR += php74-sodium
    SUBDIR += php80-filter
    SUBDIR += php80-openssl
    SUBDIR += php80-sodium
    SUBDIR += phpsecinfo
    SUBDIR += picosha2
    SUBDIR += pidgin-encryption
    SUBDIR += pidgin-otr
    SUBDIR += pinentry
    SUBDIR += pinentry-curses
    SUBDIR += pinentry-efl
    SUBDIR += pinentry-fltk
    SUBDIR += pinentry-gnome3
    SUBDIR += pinentry-gtk2
    SUBDIR += pinentry-qt5
    SUBDIR += pinentry-tty
    SUBDIR += pixiewps
    SUBDIR += pkcrack
    SUBDIR += pkcs11-dump
    SUBDIR += pkcs11-gateway
    SUBDIR += pkcs11-helper
    SUBDIR += pkcs11-tools
    SUBDIR += pkesh
    SUBDIR += pks
    SUBDIR += pktsuckers
    SUBDIR += plasma5-kscreenlocker
    SUBDIR += plasma5-ksshaskpass
    SUBDIR += plasma5-kwallet-pam
    SUBDIR += please
    SUBDIR += poly1305aes
    SUBDIR += portsentry
    SUBDIR += ppars
    SUBDIR += proftpd-mod_clamav
    SUBDIR += protonvpn-cli
    SUBDIR += proxycheck
    SUBDIR += proxytunnel
    SUBDIR += pscan
    SUBDIR += pssh
    SUBDIR += pulledpork
    SUBDIR += pure-sfv
    SUBDIR += putty
    SUBDIR += putty-gtk2
    SUBDIR += putty-nogtk
    SUBDIR += pvk
    SUBDIR += pwauth
    SUBDIR += pwman
    SUBDIR += pwman3
    SUBDIR += pwned-check
    SUBDIR += pxytest
    SUBDIR += py-RestrictedPython
    SUBDIR += py-SecretStorage
    SUBDIR += py-YubiOTP
    SUBDIR += py-acme
    SUBDIR += py-acme-tiny
    SUBDIR += py-ailment
    SUBDIR += py-angr
    SUBDIR += py-argon2-cffi
    SUBDIR += py-artifacts
    SUBDIR += py-asyncssh
    SUBDIR += py-authlib
    SUBDIR += py-azure-keyvault-certificates
    SUBDIR += py-azure-keyvault-keys
    SUBDIR += py-azure-keyvault-secrets
    SUBDIR += py-bcrypt
    SUBDIR += py-btchip-python
    SUBDIR += py-cerealizer
    SUBDIR += py-cert-human
    SUBDIR += py-certbot
    SUBDIR += py-certbot-apache
    SUBDIR += py-certbot-dns-cloudflare
    SUBDIR += py-certbot-dns-cloudxns
    SUBDIR += py-certbot-dns-cpanel
    SUBDIR += py-certbot-dns-digitalocean
    SUBDIR += py-certbot-dns-dnsimple
    SUBDIR += py-certbot-dns-dnsmadeeasy
    SUBDIR += py-certbot-dns-gehirn
    SUBDIR += py-certbot-dns-google
    SUBDIR += py-certbot-dns-linode
    SUBDIR += py-certbot-dns-luadns
    SUBDIR += py-certbot-dns-nsone
    SUBDIR += py-certbot-dns-ovh
    SUBDIR += py-certbot-dns-rfc2136
    SUBDIR += py-certbot-dns-route53
    SUBDIR += py-certbot-dns-sakuracloud
    SUBDIR += py-certbot-nginx
    SUBDIR += py-certifi
    SUBDIR += py-certstream
    SUBDIR += py-ckcc-protocol
    SUBDIR += py-coincurve
    SUBDIR += py-cpe
    SUBDIR += py-cryptography
    SUBDIR += py-cryptography-vectors
    SUBDIR += py-ctypescrypto
    SUBDIR += py-cybox
    SUBDIR += py-dfdatetime
    SUBDIR += py-dfvfs
    SUBDIR += py-dfwinreg
    SUBDIR += py-docker-pycreds
    SUBDIR += py-ecdsa
    SUBDIR += py-ed25519ll
    SUBDIR += py-exscript
    SUBDIR += py-fail2ban
    SUBDIR += py-fido2
    SUBDIR += py-first-server
    SUBDIR += py-flask-httpauth
    SUBDIR += py-flask-kerberos
    SUBDIR += py-flask-saml
    SUBDIR += py-gixy
    SUBDIR += py-gnupg
    SUBDIR += py-gnutls
    SUBDIR += py-google-auth
    SUBDIR += py-google-auth-httplib2
    SUBDIR += py-gpgme
    SUBDIR += py-gpsoauth
    SUBDIR += py-gssapi
    SUBDIR += py-gvm-tools
    SUBDIR += py-hkdf
    SUBDIR += py-htpasswd
    SUBDIR += py-itsdangerous
    SUBDIR += py-josepy
    SUBDIR += py-keepkey
    SUBDIR += py-kerberos
    SUBDIR += py-keyring
    SUBDIR += py-keyrings.alt
    SUBDIR += py-libnacl
    SUBDIR += py-m2crypto
    SUBDIR += py-maec
    SUBDIR += py-merkletools
    SUBDIR += py-mixbox
    SUBDIR += py-mnemonic
    SUBDIR += py-msoffcrypto-tool
    SUBDIR += py-muacrypt
    SUBDIR += py-netmiko
    SUBDIR += py-ntlm-auth
    SUBDIR += py-oauth2client
    SUBDIR += py-oauthlib
    SUBDIR += py-onlykey
    SUBDIR += py-openssl
    SUBDIR += py-ospd
    SUBDIR += py-ospd-openvas
    SUBDIR += py-paramiko
    SUBDIR += py-paramiko1
    SUBDIR += py-pass-audit
    SUBDIR += py-passlib
    SUBDIR += py-pbkdf2
    SUBDIR += py-pgpdump
    SUBDIR += py-pgpy
    SUBDIR += py-plaso
    SUBDIR += py-potr
    SUBDIR += py-pyaes
    SUBDIR += py-pyaff4
    SUBDIR += py-pyaxo
    SUBDIR += py-pyblake2
    SUBDIR += py-pyclamd
    SUBDIR += py-pycrypto
    SUBDIR += py-pycryptodome
    SUBDIR += py-pycryptodomex
    SUBDIR += py-pyelliptic
    SUBDIR += py-pylibacl
    SUBDIR += py-pymacaroons
    SUBDIR += py-pynacl
    SUBDIR += py-pyotp
    SUBDIR += py-pyotp2289
    SUBDIR += py-pysaml2
    SUBDIR += py-pysaml24
    SUBDIR += py-pyscard
    SUBDIR += py-pysha3
    SUBDIR += py-pysodium
    SUBDIR += py-pyspnego
    SUBDIR += py-python-axolotl
    SUBDIR += py-python-axolotl-curve25519
    SUBDIR += py-python-gnupg
    SUBDIR += py-python-gvm
    SUBDIR += py-python-jose
    SUBDIR += py-python-nss
    SUBDIR += py-python-openid
    SUBDIR += py-python-pam
    SUBDIR += py-python-pkcs11
    SUBDIR += py-python-registry
    SUBDIR += py-python3-openid
    SUBDIR += py-python3-saml
    SUBDIR += py-pyvex
    SUBDIR += py-pywinrm
    SUBDIR += py-requests-credssp
    SUBDIR += py-requests-kerberos
    SUBDIR += py-ropper
    SUBDIR += py-rsa
    SUBDIR += py-safe
    SUBDIR += py-scp
    SUBDIR += py-scramp
    SUBDIR += py-scrypt
    SUBDIR += py-securesystemslib
    SUBDIR += py-sequoia
    SUBDIR += py-service_identity
    SUBDIR += py-signedjson
    SUBDIR += py-social-auth-core
    SUBDIR += py-spake2
    SUBDIR += py-ssh
    SUBDIR += py-ssh-audit
    SUBDIR += py-sshpubkeys
    SUBDIR += py-stem
    SUBDIR += py-stix
    SUBDIR += py-stix2
    SUBDIR += py-stix2-patterns
    SUBDIR += py-taxii2-client
    SUBDIR += py-tlslite
    SUBDIR += py-trezor
    SUBDIR += py-trustme
    SUBDIR += py-tuf
    SUBDIR += py-txtorcon
    SUBDIR += py-uhashring
    SUBDIR += py-vici
    SUBDIR += py-virustotal-api
    SUBDIR += py-volatility3
    SUBDIR += py-vulndb
    SUBDIR += py-webauthn
    SUBDIR += py-xkcdpass
    SUBDIR += py-xmlsec
    SUBDIR += py-yara
    SUBDIR += py-yubikey-manager
    SUBDIR += py-zkg
    SUBDIR += py-zope.password
    SUBDIR += py-zxcvbn
    SUBDIR += qtkeychain
    SUBDIR += quantis-kmod
    SUBDIR += racoon2
    SUBDIR += radamsa
    SUBDIR += ratproxy
    SUBDIR += rats
    SUBDIR += razorback-api
    SUBDIR += razorback-archiveInflate
    SUBDIR += razorback-clamavNugget
    SUBDIR += razorback-fileInject
    SUBDIR += razorback-fsMonitor
    SUBDIR += razorback-fsWalk
    SUBDIR += razorback-masterNugget
    SUBDIR += razorback-officeCat
    SUBDIR += razorback-pdfFox
    SUBDIR += razorback-scriptNugget
    SUBDIR += razorback-swfScanner
    SUBDIR += razorback-syslogNugget
    SUBDIR += razorback-virusTotal
    SUBDIR += razorback-yaraNugget
    SUBDIR += rcracki_mt
    SUBDIR += reop
    SUBDIR += retranslator
    SUBDIR += revealrk
    SUBDIR += rhash
    SUBDIR += ridl
    SUBDIR += rifiuti2
    SUBDIR += rkhunter
    SUBDIR += rndpassw
    SUBDIR += rnp
    SUBDIR += ruby-bitwarden
    SUBDIR += rubygem-acme-client
    SUBDIR += rubygem-aes_key_wrap
    SUBDIR += rubygem-airbrussh
    SUBDIR += rubygem-android_key_attestation
    SUBDIR += rubygem-attr_encrypted
    SUBDIR += rubygem-bcrypt
    SUBDIR += rubygem-bcrypt-ruby
    SUBDIR += rubygem-bcrypt_pbkdf
    SUBDIR += rubygem-bcrypt_pbkdf10
    SUBDIR += rubygem-cose
    SUBDIR += rubygem-devise-two-factor
    SUBDIR += rubygem-devise-two-factor-rails5
    SUBDIR += rubygem-devise-two-factor-rails60
    SUBDIR += rubygem-devise-two-factor30-rails52
    SUBDIR += rubygem-devise-two-factor30-rails60
    SUBDIR += rubygem-devise_pam_authenticatable2
    SUBDIR += rubygem-digest-crc
    SUBDIR += rubygem-doorkeeper
    SUBDIR += rubygem-doorkeeper-openid_connect
    SUBDIR += rubygem-doorkeeper-rails5
    SUBDIR += rubygem-doorkeeper-rails50
    SUBDIR += rubygem-ed25519
    SUBDIR += rubygem-encryptor
    SUBDIR += rubygem-ezcrypto
    SUBDIR += rubygem-googleauth
    SUBDIR += rubygem-gpgme
    SUBDIR += rubygem-gpgr
    SUBDIR += rubygem-gssapi
    SUBDIR += rubygem-hkdf
    SUBDIR += rubygem-hrr_rb_ssh
    SUBDIR += rubygem-lockbox
    SUBDIR += rubygem-metasploit-aggregator
    SUBDIR += rubygem-metasploit-concern
    SUBDIR += rubygem-metasploit-credential
    SUBDIR += rubygem-metasploit-model
    SUBDIR += rubygem-metasploit-payloads
    SUBDIR += rubygem-metasploit_data_models
    SUBDIR += rubygem-metasploit_payloads-mettle
    SUBDIR += rubygem-nessus_rest
    SUBDIR += rubygem-net-scp
    SUBDIR += rubygem-net-sftp
    SUBDIR += rubygem-net-ssh
    SUBDIR += rubygem-net-ssh-gateway
    SUBDIR += rubygem-net-ssh-gateway1
    SUBDIR += rubygem-net-ssh-krb
    SUBDIR += rubygem-net-ssh-multi
    SUBDIR += rubygem-net-ssh4
    SUBDIR += rubygem-net-ssh5
    SUBDIR += rubygem-net-telnet
    SUBDIR += rubygem-nexpose
    SUBDIR += rubygem-nmap-parser
    SUBDIR += rubygem-omniauth
    SUBDIR += rubygem-omniauth-atlassian-oauth2
    SUBDIR += rubygem-omniauth-bitbucket
    SUBDIR += rubygem-omniauth-cas
    SUBDIR += rubygem-omniauth-cas3
    SUBDIR += rubygem-omniauth-gitlab
    SUBDIR += rubygem-omniauth-jwt
    SUBDIR += rubygem-omniauth-multipassword
    SUBDIR += rubygem-omniauth-oauth2-generic
    SUBDIR += rubygem-omniauth-saml
    SUBDIR += rubygem-omniauth-shibboleth
    SUBDIR += rubygem-openssl
    SUBDIR += rubygem-openssl-ccm
    SUBDIR += rubygem-openssl-cmac
    SUBDIR += rubygem-openssl-signature_algorithm
    SUBDIR += rubygem-openvas-omp
    SUBDIR += rubygem-origami
    SUBDIR += rubygem-pbkdf2-ruby
    SUBDIR += rubygem-pundit
    SUBDIR += rubygem-pyu-ruby-sasl
    SUBDIR += rubygem-rack-oauth2
    SUBDIR += rubygem-razorback-scriptNugget
    SUBDIR += rubygem-rbnacl
    SUBDIR += rubygem-rbnacl-libsodium
    SUBDIR += rubygem-recog
    SUBDIR += rubygem-rex-arch
    SUBDIR += rubygem-rex-bin_tools
    SUBDIR += rubygem-rex-core
    SUBDIR += rubygem-rex-encoder
    SUBDIR += rubygem-rex-exploitation
    SUBDIR += rubygem-rex-java
    SUBDIR += rubygem-rex-mime
    SUBDIR += rubygem-rex-nop
    SUBDIR += rubygem-rex-ole
    SUBDIR += rubygem-rex-powershell
    SUBDIR += rubygem-rex-random_identifier
    SUBDIR += rubygem-rex-registry
    SUBDIR += rubygem-rex-rop_builder
    SUBDIR += rubygem-rex-socket
    SUBDIR += rubygem-rex-sslscan
    SUBDIR += rubygem-rex-struct2
    SUBDIR += rubygem-rex-text
    SUBDIR += rubygem-rex-zip
    SUBDIR += rubygem-roauth
    SUBDIR += rubygem-rpam2
    SUBDIR += rubygem-ruby-hmac
    SUBDIR += rubygem-ruby-rc4
    SUBDIR += rubygem-ruby-saml
    SUBDIR += rubygem-safety_net_attestation
    SUBDIR += rubygem-scrypt
    SUBDIR += rubygem-securecompare
    SUBDIR += rubygem-securerandom
    SUBDIR += rubygem-signet
    SUBDIR += rubygem-six
    SUBDIR += rubygem-sshkey
    SUBDIR += rubygem-sshkit
    SUBDIR += rubygem-sslshake
    SUBDIR += rubygem-ssrf_filter
    SUBDIR += rubygem-timfel-krb5
    SUBDIR += rubygem-tpm-key_attestation
    SUBDIR += rubygem-twitter_oauth
    SUBDIR += rubygem-webauthn
    SUBDIR += rubygem-webpush
    SUBDIR += rustscan
    SUBDIR += s2n
    SUBDIR += safesh
    SUBDIR += samhain
    SUBDIR += samhain-client
    SUBDIR += samhain-server
    SUBDIR += sancp
    SUBDIR += sasp
    SUBDIR += scanlogd
    SUBDIR += scanssh
    SUBDIR += scrypt
    SUBDIR += seahorse
    SUBDIR += seal
    SUBDIR += seccure
    SUBDIR += secpanel
    SUBDIR += sectok
    SUBDIR += secure_delete
    SUBDIR += sedutil
    SUBDIR += sequoia
    SUBDIR += setaudit
    SUBDIR += sha
    SUBDIR += sha1collisiondetection
    SUBDIR += sha2wordlist
    SUBDIR += shibboleth-sp
    SUBDIR += shimmer
    SUBDIR += shishi
    SUBDIR += shttpscanner
    SUBDIR += sig2dot
    SUBDIR += signify
    SUBDIR += signing-party
    SUBDIR += silktools
    SUBDIR += sks
    SUBDIR += slurpie
    SUBDIR += slush
    SUBDIR += smtpscan
    SUBDIR += smurflog
    SUBDIR += sniff
    SUBDIR += snoopy
    SUBDIR += snort
    SUBDIR += snort-rep
    SUBDIR += snort2pfcd
    SUBDIR += snort3
    SUBDIR += snortsam
    SUBDIR += snortsnarf
    SUBDIR += snuffleupagus
    SUBDIR += softether
    SUBDIR += softether-devel
    SUBDIR += softether5
    SUBDIR += softhsm2
    SUBDIR += solana
    SUBDIR += sops
    SUBDIR += spass
    SUBDIR += spass-qt5
    SUBDIR += spectre-meltdown-checker
    SUBDIR += spm
    SUBDIR += spybye
    SUBDIR += sqlmap
    SUBDIR += sqlninja
    SUBDIR += srm
    SUBDIR += ssb
    SUBDIR += ssdeep
    SUBDIR += ssh-multiadd
    SUBDIR += ssh-vault
    SUBDIR += sshguard
    SUBDIR += sshpass
    SUBDIR += ssl-admin
    SUBDIR += ssllabs-scan
    SUBDIR += sslproxy
    SUBDIR += sslscan
    SUBDIR += sslsniffer
    SUBDIR += sslsplit
    SUBDIR += sslwrap
    SUBDIR += sssd
    SUBDIR += ssss
    SUBDIR += sst
    SUBDIR += starttls
    SUBDIR += steghide
    SUBDIR += stegify
    SUBDIR += step-certificates
    SUBDIR += step-cli
    SUBDIR += stoken
    SUBDIR += strobe
    SUBDIR += strongswan
    SUBDIR += stud
    SUBDIR += stunnel
    SUBDIR += subversion-gnome-keyring
    SUBDIR += sudo
    SUBDIR += sudoscript
    SUBDIR += super
    SUBDIR += suricata
    SUBDIR += swatchdog
    SUBDIR += symbion-sslproxy
    SUBDIR += tailscale
    SUBDIR += tang
    SUBDIR += tclsasl
    SUBDIR += tcpcrypt
    SUBDIR += teleport
    SUBDIR += testssl.sh
    SUBDIR += tfhe
    SUBDIR += theonionbox
    SUBDIR += tinc
    SUBDIR += tinc-devel
    SUBDIR += tinyca
    SUBDIR += tls-check
    SUBDIR += tlswrap
    SUBDIR += tor
    SUBDIR += tor-devel
    SUBDIR += totp-cli
    SUBDIR += tpm-tools
    SUBDIR += tpm2-abrmd
    SUBDIR += tpm2-tools
    SUBDIR += tpm2-tss
    SUBDIR += trezord
    SUBDIR += trinokiller
    SUBDIR += tripwire
    SUBDIR += tripwire-131
    SUBDIR += trousers
    SUBDIR += truecrypt
    SUBDIR += tthsum
    SUBDIR += u2f-devd
    SUBDIR += uacme
    SUBDIR += ubuntu-keyring
    SUBDIR += unhide
    SUBDIR += unicornscan
    SUBDIR += vanguards-tor
    SUBDIR += vault
    SUBDIR += vaultwarden
    SUBDIR += veracrypt
    SUBDIR += vigenere
    SUBDIR += vinetto
    SUBDIR += vlock
    SUBDIR += vm-to-tor
    SUBDIR += vnccrack
    SUBDIR += vpnc
    SUBDIR += vuls
    SUBDIR += vuxml
    SUBDIR += vxquery
    SUBDIR += wapiti
    SUBDIR += wazuh-agent
    SUBDIR += webfwlog
    SUBDIR += webscarab
    SUBDIR += whatweb
    SUBDIR += wipe
    SUBDIR += wolfssh
    SUBDIR += wolfssl
    SUBDIR += wpa_supplicant
    SUBDIR += wpa_supplicant-devel
    SUBDIR += xca
    SUBDIR += xinetd
    SUBDIR += xml-security
    SUBDIR += xmlsec1
    SUBDIR += xorsearch
    SUBDIR += xray-core
    SUBDIR += yafic
    SUBDIR += yapet
    SUBDIR += yara
    SUBDIR += yersinia
    SUBDIR += ykclient
    SUBDIR += ykpers
    SUBDIR += ylva
    SUBDIR += yubico-piv-tool
    SUBDIR += yubikey-agent
    SUBDIR += yubikey-manager-qt
    SUBDIR += yubikey-personalization-gui
    SUBDIR += yubioath-desktop
    SUBDIR += zebedee
    SUBDIR += zeek
    SUBDIR += zeronet
    SUBDIR += zxid
    SUBDIR += zzuf

.include <bsd.port.subdir.mk>