1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-24 09:25:01 +00:00
freebsd-ports/security
Santhosh Raju 71c26f55a1 security/wolfssl: Update to v5.0.0
Changes since v4.8.1:

wolfSSL Release 5.0.0 (Nov 01, 2021)

Release 5.0.0 of wolfSSL embedded TLS has bug fixes and new features including:
Vulnerabilities

  * [\Low] Hang with DSA signature creation when a specific q value is used in a
    maliciously crafted key. If a DSA key with an invalid q value of either 1 or
    0 was decoded and used for creating a signature, it would result in a hang
    in wolfSSL. Users that are creating signatures with DSA and are using keys
    supplied from an outside source are affected.
  * [\Low] Issue with incorrectly validating a certificate that has multiple
    subject alternative names when given a name constraint. In the case where
    more than one subject alternative name is used in the certificate, previous
    versions of wolfSSL could incorrectly validate the certificate. Users
    verifying certificates with multiple alternative names and name constraints,
    are recommended to either use the certificate verify callback to check for
    this case or update the version of wolfSSL used. Thanks to Luiz Angelo Daros
    de Luca for the report.

New Feature Additions
New Product

  * FIPS 140-3 -- currently undergoing laboratory testing, code review and
    ultimately CMVP validation. Targeting the latest FIPS standard.

Ports

  * IoT-Safe with TLS demo
  * SE050 port with support for RNG, SHA, AES, ECC (sign/verify/shared secret)
    and ED25519
  * Support for Renesas TSIP v1.13 on RX72N

Post Quantum

  * Support for OQS's (liboqs version 0.7.0) implementation of NIST Round 3 KEMs
    as TLS 1.3 groups --with-liboqs
  * Hybridizing NIST ECC groups with the OQS groups
  * Remove legacy NTRU and QSH
  * Make quantum-safe groups available to the compatibility layer

Linux Kernel Module

  * Full support for FIPS 140-3, with in-kernel power on self test (POST) and
    conditional algorithm self test(s) (CAST)
  * --enable-linuxkm-pie -- position-independent in-kernel wolfCrypt container,
      for FIPS
  * Vectorized x86 acceleration in PK algs (RSA, ECC, DH, DSA) and AES/AES-GCM
  * Vectorized x86 acceleration in interrupt handlers
  * Support for Linux-native module signatures
  * Complete SSL/TLS and Crypto API callable from other kernel module(s)
  * Support for LTS kernel lines: 3.16, 4.4, 4.9, 5.4, 5.10

Compatibility Layer Additions

  * Ports
      * Add support for libssh2
      * Add support for pyOpenSSL
      * Add support for libimobiledevice
      * Add support for rsyslog
      * Add support for OpenSSH 8.5p1
      * Add support for Python 3.8.5
  * API/Structs Added
      * ERR_lib_error_string
      * EVP_blake2
      * wolfSSL_set_client_CA_list
      * wolfSSL_EVP_sha512_224
      * wolfSSL_EVP_sha512_256
      * wc_Sha512_224/2256Hash
      * wc_Sha512_224/256Hash
      * wc_InitSha512_224/256
      * wc_InitSha512_224/256_ex
      * wc_Sha512_224/256Update
      * wc_Sha512_224/256FinalRaw
      * wc_Sha512_224/256Final
      * wc_Sha512_224/256Free
      * wc_Sha512_224/256GetHash
      * wc_Sha512_224/256Copy
      * wc_Sha512_224/256SetFlags
      * wc_Sha512_224/256GetFlags
      * wc_Sha512_224/256Transform
      * EVP_MD_do_all and OBJ_NAME_do_all
      * EVP_shake128
      * EVP_shake256
      * SSL_CTX_set_num_tickets
      * SSL_CTX_get_num_tickets
      * SSL_CIPHER_get_auth_nid
      * SSL_CIPHER_get_cipher_nid
      * SSL_CIPHER_get_digest_nid
      * SSL_CIPHER_get_kx_nid
      * SSL_CIPHER_is_aead
      * SSL_CTX_set_msg_callback
      * a2i_IPADDRESS
      * GENERAL_NAME_print
      * X509_VERIFY_PARAM_set1_ip
      * EVP_CIPHER_CTX_set_iv_length
      * PEM_read_bio_RSA_PUBKEY
      * i2t_ASN1_OBJECT
      * DH_set_length
      * Set_tlsext_max_fragment_length
      * AUTHORITY_iNFO_ACCESS_free
      * EVP_PBE_scrypt
      * ASN1_R_HEADER_TOO_LONG
      * ERR_LIB
      * X509_get_default_cert_file/file_env/dir/dir_env() stubs
      * SSL_get_read_ahead/SSL_set_read_ahead()
      * SSL_SESSION_has_ticket()
      * SSL_SESSION_get_ticket_lifetime_hint()
      * DIST_POINT_new
      * DIST_POINT_free
      * DIST_POINTS_free
      * CRL_DIST_POINTS_free
      * sk_DIST_POINT_push
      * sk_DIST_POINT_value
      * sk_DIST_POINT_num
      * sk_DIST_POINT_pop_free
      * sk_DIST_POINT_free
      * X509_get_extension_flags
      * X509_get_key_usage
      * X509_get_extended_key_usage
      * ASN1_TIME_to_tm
      * ASN1_TIME_diff
      * PEM_read_X509_REQ
      * ERR_load_ERR_strings
      * BIO_ssl_shutdown
      * BIO_get_ssl
      * BIO_new_ssl_connect
      * BIO_set_conn_hostname
      * NID_pkcs9_contentType

Misc.

  * KCAPI: add support for using libkcapi for crypto (Linux Kernel)
  * Configure option for --with-max-rsa-bits= and --with-max-ecc-bits=
  * SP ARM Thumb support for Keil and performance improvements
  * Add support for WOLFSSL_VERIFY_POST_HANDSHAKE verify mode
  * PKCS #11: support static linking with PKCS #11 library
    --enable-pkcs11=static LIBS=-l
  * Add build option --enable-wolfclu for use with wolfCLU product
  * Add support for X9.42 header i.e “BEGIN X9.42 DH PARAMETERS”
  * Add --enable-altcertchains for configuring wolfSSL with alternate
    certificate chains feature enabled
  * Add public API wc_RsaKeyToPublicDer_ex to allow getting RSA public key
    without ASN.1 header (can return only seq + n + e)
  * Add SNI and TLSx options to CMake build

Fixes
PORT Fixes

  * Add return value checking for FREESCALE_RNGA
  * Fix MMCAU_SHA256 type warnings
  * Fixes for building with Microchip XC32 and ATECC

Math Library Fixes

  * TFM check that the modulus length is valid for fixed data array size
  * TFM fp_submod_ct fix check for greater
  * Check return value of mp_grow in mp_mod_2d
  * Fix for ECC point multiply to error out on large multipliers
  * SP ECC error on multiplier larger than curve order

TLS 1.3

  * TLS1.3 sanity check for cases where a private key is larger than the configured maximum
  * Fix early data max size handling in TLS v1.3
  * Fixes for PK callbacks with TLS v1.3
  * Check min downgrade when no extensions are sent with the ServerHello

Misc.

   * Previously wolfSSL enum values were used as NID’s. Now only the
     compatibility layer NID enums are the NID values:
      * CTC_SHAwDSA -> NID_dsaWithSHA1
      * CTC_SHA256wDSA -> NID_dsa_with_SHA256
      * CTC_MD2wRSA -> NID_md2WithRSAEncryption
      * CTC_MD5wRSA -> NID_md5WithRSAEncryption
      * CTC_SHAwRSA -> NID_sha1WithRSAEncryption
      * CTC_SHA224wRSA -> NID_sha224WithRSAEncryption
      * CTC_SHA256wRSA -> NID_sha256WithRSAEncryption
      * CTC_SHA384wRSA -> NID_sha384WithRSAEncryption
      * CTC_SHA512wRSA -> NID_sha512WithRSAEncryption
      * CTC_SHA3_224wRSA -> NID_RSA_SHA3_224
      * CTC_SHA3_256wRSA -> NID_RSA_SHA3_256
      * CTC_SHA3_384wRSA -> NID_RSA_SHA3_384
      * CTC_SHA3_512wRSA -> NID_RSA_SHA3_512
      * CTC_SHAwECDSA -> NID_ecdsa_with_SHA1
      * CTC_SHA224wECDSA -> NID_ecdsa_with_SHA224
      * CTC_SHA256wECDSA -> NID_ecdsa_with_SHA256
      * CTC_SHA384wECDSA -> NID_ecdsa_with_SHA384
      * CTC_SHA512wECDSA -> NID_ecdsa_with_SHA512
      * CTC_SHA3_224wECDSA -> NID_ecdsa_with_SHA3_224
      * CTC_SHA3_256wECDSA -> NID_ecdsa_with_SHA3_256
      * CTC_SHA3_384wECDSA -> NID_ecdsa_with_SHA3_384
      * CTC_SHA3_512wECDSA -> NID_ecdsa_with_SHA3_512
      * DSAk -> NID_dsa
      * RSAk -> NID_rsaEncryption
      * ECDSAk -> NID_X9_62_id_ecPublicKey
      * BASIC_CA_OID -> NID_basic_constraints
      * ALT_NAMES_OID -> NID_subject_alt_name
      * CRL_DIST_OID -> NID_crl_distribution_points
      * AUTH_INFO_OID -> NID_info_access
      * AUTH_KEY_OID -> NID_authority_key_identifier
      * SUBJ_KEY_OID -> NID_subject_key_identifier
      * INHIBIT_ANY_OID -> NID_inhibit_any_policy
   * Fix for DES IV size used with FIPSv2
   * Fix signed comparison issue with serialSz
   * Fix missing CBIOSend and properly guard hmac in DupSSL()
   * Fix calculation of length of encoding in ssl.c
   * Fix encoding to check proper length in asn.c
   * Fix for wc_ecc_ctx_free and heap hint
   * Fix for debug messages with AF_ALG build
   * Fix for static memory with bucket size matching.
   * Fixes for SRP with heap hint.
   * Fixes for CAAM build macros and spelling for Keil build
   * Sniffer fix for possible math issue around 64-bit pointer and 32-bit unsigned int
   * Fix for sniffer TCP sequence rollover
   * wolfSSL_PEM_write_bio_PUBKEY to write only the public part
   * Fix for sending only supported groups in TLS extension
   * Fix for sniffer to better handle spurious retransmission edge case
   * SSL_set_alpn_protos and SSL_CTX_set_alpn_protos now returns 0 on
     successFixes issue with SSL_CTX_set1_curves_list and SSL_set1_curves_list
     not checking the last character of the names variable provided, non-0 on
     failure to better match expected return values
   * Fixes and improvements for crypto callbacks with TLS (mutual auth)
   * Fix for bad memory_mutex lock on static memory cleanup
   * Zero terminate name constraints strings when parsing certificates
   * Fix for verifying a certificate when multiple permitted name constraints are used
   * Fix typo in ifdef for HAVE_ED448
   * Fix typos in comments in SHA512
   * Add sanity check on buffer size with ED25519 key decode
   * Sanity check on PKCS7 stream amount read
   * PKCS7 fix for double free on error case and sanity check on set serial number
   * Sanity check on PKCS7 input size wc_PKCS7_ParseSignerInfo
   * Forgive a DTLS session trying to send too much at once

Improvements/Optimizations
Build Options and Warnings

   * Rework of RC4 disable by default and depreciation
   * wolfSSL as a Zephyr module (without setup.sh)
   * Add include config.h to bio.c
   * Support for PKCS7 without AES CBC.
   * Fixes for building without AES CBC
   * Added WOLFSSL_DH_EXTRA to --enable-all and --enable-sniffer
   * Add a CMake option to build wolfcrypt test and bench code as libraries
   * GCC makefile: allow overriding and provide more flexibility

Math Libraries

   * Improve performance of fp_submod_ct() and fp_addmod_ct()
   * Improve performance of sp_submod_ct() and sp_addmod_ct()
   * SP int, handle even modulus with exponentiation

Misc.

   * Cleanups for Arduino examples and memory documentation
   * Refactor hex char to byte conversions
   * Added GCC-ARM TLS server example
   * Improvements to session locking to allow per-row
   * Improved sniffer statistics and documentation
   * EVP key support for heap hint and crypto callbacks
   * Reduced stack size for dh_generation_test and Curve ASN functions
   * Espressif README Syntax / keyword highlighting / clarifications
   * AARCH64 SHA512: implementation using crypto instructions added
   * wc_RsaPSS_CheckPadding_ex2 added for use with HEAP hint
   * wc_AesKeyWrap_ex and wc_AesKeyUnWrap_ex bound checks on input and output sizes
   * Add additional error handling to wolfSSL_BIO_get_len
   * Add code to use popen and the command 'host', useful with qemu
   * Adjustment to subject alt names order with compatibility layer to better match expected order
   * Reduce BIO compatibility layer verbosity
   * Set a default upper bound on error queue size with compatibility layer
   * WOLFSSL_CRL_ALLOW_MISSING_CDP macro for Skip CRL verification in case no CDP in peer cert
   * Fixes for scan-build LLVM-13 and expanded coverage
   * Increase the default DTLS_MTU_ADDITIONAL_READ_BUFFER and make it adjustable
2021-11-06 05:57:38 +01:00
..
0d1n
1password-client security/1password-client: upgrade to 1.12.2 2021-10-23 14:42:48 -05:00
2fa
acme.sh security/acme.sh: Update to 3.0.1 2021-10-03 19:04:14 +00:00
acmed *: Rebuild for Rust 1.56.0 2021-10-25 10:55:19 +02:00
acmetool
ADMsmb
ADMsnmp
aescrypt
aespipe
afl Style: improve ONLY_FOR_ARCHS_REASON (grammar, markup, etc.) 2021-10-25 12:58:29 +00:00
afl++ security/afl++: Update to 3.14c 2021-10-12 17:01:36 +02:00
afterglow
age security/age: reinstate PORTREVISION... 2021-09-11 09:27:01 +02:00
aide
akmos
amap
amavis-stats
amavisd-milter *: fix tab vs. space issues, and comments according to the guide. 2021-10-16 11:51:39 +02:00
amavisd-new
apache-xml-security-c security/apache-xml-security-c: update to 2.0.3 2021-10-27 00:20:26 +02:00
apg
apkid
arirang Mk/bsd.ruby.mk: Remove RUBY_NAME 2021-11-02 05:28:58 +08:00
arpCounterattack
arti security/arti: Update to 0.0.1 2021-10-31 17:18:21 +01:00
asignify
assh
authenticator *: Rebuild for Rust 1.56.0 2021-10-25 10:55:19 +02:00
autossh
aws-c-auth security/aws-c-auth: Add new port 2021-10-25 15:04:51 +01:00
aws-c-cal security/aws-c-cal: Update to 0.5.12 2021-10-25 15:04:49 +01:00
aws-iam-authenticator
aws-vault
axTLS security/axTLS: Add CPE information 2021-10-21 16:27:02 +02:00
barnyard2
barnyard2-sguil
base
base-audit
bastillion
bcrypt
bcwipe *: fix tab vs. space issues, and comments according to the guide. 2021-10-16 11:51:39 +02:00
bdes
bearssl
beecrypt security/beecrypt: Add CPE information 2021-09-21 12:57:57 +00:00
beid
belier
bfbtester
binwalk
boringssl security/boringssl: Add CPE information 2021-09-25 20:28:58 +00:00
botan2 security/botan2: Update to 2.18.2 2021-10-29 14:49:33 +08:00
botan110 security/botan110: Add CPE information 2021-10-21 16:27:02 +02:00
bruteblock
bruteforceblocker
bsdsfv
bsmtrace
bsmtrace3
bzrtp security/bzrtp: Add CPE information 2021-10-21 16:27:02 +02:00
ca_root_nss security/ca_root_nss: Update to 3.71 2021-10-08 17:01:25 +02:00
caesarcipher
calife
cardpeek INSTALLS_ICONS: retire the macro and rework the related dependencies 2021-10-10 21:44:42 +02:00
cargo-audit *: Rebuild for Rust 1.56.0 2021-10-25 10:55:19 +02:00
ccrypt
ccsrch
certmgr
cfs
cfssl security/cfssl: Add the RC script to start as a daemon to run the HTTP-based API server 2021-10-18 09:54:28 -07:00
cfv
chaosreader
checkpassword
checkpassword-pam
chkrootkit
chntpw
chroot_safe
chrootuid
cisco-torch
ckpass
cksfv
cl-md5
cl-md5-sbcl */*: Bump PORTREVISION on *-sbcl ports after lang/sbcl upgrade. 2021-09-30 08:47:56 +02:00
clamassassin *: fix tab vs. space issues, and comments according to the guide. 2021-10-16 11:51:39 +02:00
clamav security/clamav: Update to new bugfix release 0.104.1 2021-11-04 06:18:10 +09:00
clamav-lts security/clamav-lts: Update to new bugfix release 0.103.4 2021-11-04 06:18:11 +09:00
clamav-unofficial-sigs
clamd-stream-client
clamfs
clamsmtp security/clamsmtp: Update MASTER_SITES 2021-09-29 16:38:49 +09:00
clamtk
cloak *: Rebuild for Rust 1.56.0 2021-10-25 10:55:19 +02:00
clusterssh
cops
courier-authlib
courier-authlib-base
courierpassd
courierpasswd
courieruserinfo
cowrie
cp2fwb
cracklib security/cracklib: Add CPE information 2021-09-10 21:17:44 +00:00
crackpkcs12
create-cert
crlfuzz
crowdsec
crowdsec-firewall-bouncer
cryptlib
cryptopp
ct-submit
cvechecker
cvm
cyberchef security/cyberchef: Add CPE information 2021-10-21 16:27:03 +02:00
cyrus-sasl2
cyrus-sasl2-gssapi
cyrus-sasl2-ldapdb
cyrus-sasl2-saslauthd
cyrus-sasl2-sql
cyrus-sasl2-srp
d0_blind_id
dcetest
dehydrated
denyhosts security/denyhosts: fix whitespace in pkg-descr. 2021-10-16 09:09:16 +02:00
destroy
digestpp
dirbuster
dirmngr
distcache
doas security/doas: Add CPE information 2021-10-13 15:12:46 +02:00
doscan
dotdotpwn
dropbear security/dropbear: Fix CPE information because current one is deprecated 2021-09-14 10:55:29 +00:00
dsniff cleanup: drop support for EOL FreeBSD 11.X 2021-09-30 23:23:30 +02:00
dsvpn
duo
duo_openvpn
easy-rsa
elixir-comeonin
elixir-comeonin_i18n
elixir-jose
enchive
erlang-fast_tls security/erlang-fast_tls: update to 1.1.13 2021-09-30 22:03:14 +00:00
erlang-jose
eschalot
esteidfirefoxplugin
expiretable
f-prot
fakebo
fakeident
fakeroot
farmhash
fcheck
fcrackzip
ffuf
fiked
find-zlib
fizz security/fizz: Add CPE information 2021-10-21 16:27:03 +02:00
fl0p
flawfinder
fpc-gnutls
fpc-openssl
fprint_demo INSTALLS_ICONS: retire the macro and rework the related dependencies 2021-10-10 21:44:42 +02:00
fprintd
fragroute
fragrouter
fswatch
ftimes *: fix tab vs. space issues, and comments according to the guide. 2021-10-16 11:51:39 +02:00
fuzz
fwanalog
fwbuilder *: fix tab vs. space issues, and comments according to the guide. 2021-10-16 11:51:39 +02:00
fwknop *: fix tab vs. space issues, and comments according to the guide. 2021-10-16 11:51:39 +02:00
fwlogwatch security/fwanalog: Fix 14-CURRENT build 2021-11-01 09:46:24 -07:00
gcr INSTALLS_ICONS: retire the macro and rework the related dependencies 2021-10-10 21:44:42 +02:00
gef security/gef: Update to 2021.10 2021-10-20 11:46:18 +02:00
git-crypt
git-remote-gcrypt
git-secret
gitjacker security/gitjacker: Add CPE information 2021-10-21 16:27:03 +02:00
gnome-keyring INSTALLS_ICONS: retire the macro and rework the related dependencies 2021-10-10 21:44:42 +02:00
gnome-keyring-sharp
gnome-ssh-askpass
gnomint
gnupg sysutils/gnupg: Fix running without procfs 2021-11-02 05:22:07 -06:00
gnupg1
gnupg-pkcs11-scd
gnutls
go-cve-dictionary
gokart security/gokart: update to 0.3.0. 2021-10-06 13:50:35 +08:00
gonepass *: apply refactor.remove-consecutive-empty-lines 2021-10-19 10:36:47 +02:00
gopass Style: improve ONLY_FOR_ARCHS_REASON (grammar, markup, etc.) 2021-10-25 12:58:29 +00:00
gorilla
gost-engine cleanup: drop support for EOL FreeBSD 11.X 2021-09-30 23:23:30 +02:00
govpn
gpa
gpg-gui INSTALLS_ICONS: retire the macro and rework the related dependencies 2021-10-10 21:44:42 +02:00
gpg-tui *: Rebuild for Rust 1.56.0 2021-10-25 10:55:19 +02:00
gpgdir
gpgme
gpgme-cpp *: Clean up some things 2021-10-12 17:01:38 +02:00
gpgme-qt5 *: Clean up some things 2021-10-12 17:01:38 +02:00
gputty
greenbone-security-assistant security/gvm: update to 21.4.3 2021-11-05 11:32:20 -05:00
gringotts
gsasl
gss */*: Remove redundant '-[0-9]*' from CONFLICTS 2021-10-29 11:50:18 +02:00
gstreamer1-plugins-dtls
gtkpasman
gvm security/gvm: update to 21.4.3 2021-11-05 11:32:20 -05:00
gvm-libs security/gvm: update to 21.4.3 2021-11-05 11:32:20 -05:00
gvmd security/gvm: update to 21.4.3 2021-11-05 11:32:20 -05:00
gwee
hackbot
hardening-check
hash
hashcat
hashcat-legacy
heaan
heimdal */*: Remove redundant '-[0-9]*' from CONFLICTS 2021-10-29 11:50:18 +02:00
helib security/helib: Update 2.2.0 -> 2.2.1 2021-10-02 15:59:59 -07:00
hexl security/hexl: Broken on i386 2021-10-11 00:38:53 -07:00
highwayhash Style: improve ONLY_FOR_ARCHS_REASON (grammar, markup, etc.) 2021-10-25 12:58:29 +00:00
hitch
hlfl
hockeypuck
honeytrap security/honeytrap: Update to g20210510 2021-10-01 15:07:25 +02:00
honggfuzz
horcrux
hpenc
hs-cryptol security/hs-cryptol: Mark as broken on aarch64. 2021-10-14 17:58:01 +02:00
hydra
i2p security/i2p: Add CPE information 2021-10-21 16:27:03 +02:00
i2pd security/i2pd: add lowest boost-libs version required 2021-09-18 01:02:22 +07:00
iaikpkcs11wrapper
idea
identify
ike security/ike: enable on powerpc64le 2021-10-07 17:54:00 +00:00
imds-filterd
integrit
intel-ipsec-mb
ipfilter2dshield
ipfmeta
ipfw2dshield
ipguard
ipsec-tools */*: Remove redundant '-[0-9]*' from CONFLICTS 2021-10-29 11:50:18 +02:00
ipv6toolkit security/ipv6toolkit: fix build on 14-CURRENT on amd64 2021-10-19 11:47:41 -07:00
isakmpd
isal-kmod security/isal-kmod: Use native crypto_cursor_segment() on 13.0-STABLE. 2021-10-21 15:07:26 -07:00
isnprober
jbrofuzz
john
kbfsd
kc24 ncurses: fix build with futur base and ports ncurses 2021-09-23 18:22:54 +02:00
kdbxviewer security/kdbxviewer: Update to 0.1.10 2021-11-03 16:23:32 +01:00
keepass INSTALLS_ICONS: retire the macro and rework the related dependencies 2021-10-10 21:44:42 +02:00
keepass-plugin-keepassrpc security/keepass-plugin-keepassrpc: Add CPE information 2021-10-21 16:27:04 +02:00
keepassx-devel INSTALLS_ICONS: retire the macro and rework the related dependencies 2021-10-10 21:44:42 +02:00
keepassxc
keybase
keychain
keynote
keyprint
kf5-kdesu KDE: Update KDE Frameworks to 5.87.0 2021-10-17 09:25:06 +02:00
kgpg KDE: Update KDE Gear to 21.08.3 2021-11-04 20:11:34 +01:00
kickpass
klee
kleopatra KDE: Update KDE Gear to 21.08.3 2021-11-04 20:11:34 +01:00
knock */*: Remove redundant '-[0-9]*' from CONFLICTS 2021-10-29 11:50:18 +02:00
knocker
kpcli
kpkpass KDE: Update KDE Gear to 21.08.3 2021-11-04 20:11:34 +01:00
kpmenu *: fix tab vs. space issues, and comments according to the guide. 2021-10-16 11:51:39 +02:00
krb5
krb5-117 */*: Remove redundant '-[0-9]*' from CONFLICTS 2021-10-29 11:50:18 +02:00
krb5-118 */*: Remove redundant '-[0-9]*' from CONFLICTS 2021-10-29 11:50:18 +02:00
krb5-119 */*: Remove redundant '-[0-9]*' from CONFLICTS 2021-10-29 11:50:18 +02:00
krb5-appl */*: Remove redundant '-[0-9]*' from CONFLICTS 2021-10-29 11:50:18 +02:00
krb5-devel security/krb5-devel: update to the latest MIT/KRB5 github commit 2021-11-01 09:46:25 -07:00
kripp
kstart
ktls_isa-l_crypto-kmod
kuku
kwalletmanager KDE: Update KDE Gear to 21.08.3 2021-11-04 20:11:34 +01:00
l0pht-watch
l0phtcrack
l5
lasso
lastpass-cli
lego security/lego: Update to 4.5.3 2021-10-10 04:48:46 -04:00
libadacrypt
libargon2
libassuan
libcryptui
libdecaf
libecc
libfido2 security/libfido2: Update to 1.9.0 2021-11-01 21:41:26 +08:00
libfprint
libgcrypt
libgnome-keyring
libgpg-error security/libgpg-error: update to 1.43 2021-11-04 16:55:39 +04:00
libgringotts
libgsasl
libhijack
libident
libkleo KDE: Update KDE Gear to 21.08.3 2021-11-04 20:11:34 +01:00
libkpass
libksba security/libksba: Cosmetic change 2021-09-19 13:59:50 +08:00
libmcrypt
libnitrokey
libntlm security/libntlm: Add CPE information 2021-09-21 12:57:58 +00:00
liboqs security/liboqs: correct the patch 2021-10-22 11:42:22 +00:00
libotr
libotr3
libp11 security/libp11: Add CPE information 2021-10-23 23:02:14 +02:00
libprelude
libpreludedb
libpwquality
libpwstor
libressl security/libressl: Update to 3.3.5 2021-10-03 11:54:58 +00:00
libressl-devel security/libressl-devel: Update to 3.4.1 2021-10-16 16:56:09 +00:00
libreswan
libretls cleanup: drop support for EOL FreeBSD 11.X 2021-09-30 23:23:30 +02:00
libscep
libscrypt
libsecret
libsectok
libsodium
libssh security/libssh: Update to 0.9.6 2021-09-21 11:35:20 +08:00
libssh2
libtasn1
libtomcrypt security/libtomcrypt: Add CPE information 2021-10-21 16:27:04 +02:00
libu2f-host
libuecc
libwhisker
libyubikey
libzrtpcppcore
linux-bitwarden-cli security/linux-bitwarden-cli: Add a new port 2021-10-07 13:31:37 +02:00
linux-c7-cyrus-sasl2 */*: Remove redundant '-[0-9]*' from CONFLICTS 2021-10-29 11:50:18 +02:00
linux-c7-gnutls */*: Remove redundant '-[0-9]*' from CONFLICTS 2021-10-29 11:50:18 +02:00
linux-c7-libgcrypt */*: Remove redundant '-[0-9]*' from CONFLICTS 2021-10-29 11:50:18 +02:00
linux-c7-libgpg-error */*: Remove redundant '-[0-9]*' from CONFLICTS 2021-10-29 11:50:18 +02:00
linux-c7-libssh2 */*: Remove redundant '-[0-9]*' from CONFLICTS 2021-10-29 11:50:18 +02:00
linux-c7-libtasn1 */*: Remove redundant '-[0-9]*' from CONFLICTS 2021-10-29 11:50:18 +02:00
linux-c7-nettle security/linux-c7-nettle: Add CPE information 2021-10-21 16:27:05 +02:00
linux-c7-nss */*: Remove redundant '-[0-9]*' from CONFLICTS 2021-10-29 11:50:18 +02:00
linux-c7-p11-kit
linux-c7-trousers security/linux-c7-trousers: Add CPE information 2021-10-21 16:27:05 +02:00
logcheck */*: Update MAINTAINER address of my ports to that of FreeBSD.org 2021-09-28 14:13:33 +09:00
lua-bcrypt
luasec
lxqt-openssh-askpass
lxqt-sudo
lynis
mac-robber
maia
mailzu security/mailzu: Fix runtime error with recent PHP 2021-11-05 10:16:55 +09:00
makepasswd security/makepasswd: Add CPE information 2021-10-13 15:13:25 +02:00
maltrail
manipulate_data
masscan security/masscan: fix build on powerpc* 2021-09-12 21:06:06 +00:00
matrixssl security/matrixssl: Add CPE information 2021-09-10 21:18:19 +00:00
mbedtls
mcrypt
md5deep
medusa
meek
metasploit security/metasploit: fix dependencies 2021-09-21 19:04:45 +00:00
mhash
mindterm-binary
minisign
mkp224o
modsecurity3 security/modsecurity3: Update to 3.0.5 2021-10-11 12:16:10 -04:00
modsecurity3-apache
modsecurity3-nginx security/modsecurity3-nginx: Update to 1.0.2 2021-10-16 07:44:48 +02:00
monkeysphere
munge security/munge: Add CPE information 2021-10-21 16:27:06 +02:00
mussh
n2n
nacl security/nacl: Deprecate and set expiration date to 2021-12-31 2021-09-29 09:42:27 +02:00
ncrack cleanup: drop support for EOL FreeBSD 11.X 2021-09-30 23:23:30 +02:00
ncrypt
nebula security/nebula: Add CPE information 2021-10-21 16:27:06 +02:00
nettle security/nettle: Add CPE information 2021-09-10 21:17:44 +00:00
nextcloud-end_to_end_encryption security/nextcloud-end_to_end_encryption: Update to 1.8.1 2021-10-30 12:10:44 +00:00
nextcloud-passman security/nextcloud-passman: Udpate to 2.3.1335 2021-10-07 07:30:40 +00:00
nextcloud-twofactor_admin *: apply refactor.remove-consecutive-empty-lines 2021-10-19 10:36:47 +02:00
nextcloud-twofactor_nextcloud_notification *: apply refactor.remove-consecutive-empty-lines 2021-10-19 10:36:47 +02:00
nextcloud-twofactor_totp security/nextcloud-twofactor_totp: Auto-generate plist 2021-10-10 17:36:11 +00:00
nextcloud-twofactor_u2f
nextcloud-twofactor_webauthn *: fix tab vs. space issues, and comments according to the guide. 2021-10-16 11:51:39 +02:00
nflib
ngrok
nikto security/nikto: Add CPE information 2021-10-13 15:13:36 +02:00
nist-kat
nitrokey-app
nmap
nss security/nss: update to 3.72 2021-10-29 08:05:08 +00:00
nss_compat_ossl security/nss_compat_ossl: Add CPE information 2021-10-21 16:27:06 +02:00
nyx
oath-toolkit
obfs4proxy-tor security/obfs4proxy-tor: update WWW on port's pkg-descr 2021-10-04 10:09:38 +00:00
obfsclient
ocaml-cryptgps security/ocaml-cryptgps: ease transition to post-4.06 OCaml 2021-09-08 08:02:23 +00:00
ocaml-cryptokit
ocaml-ssl security/ocaml-ssl: update to version 0.5.9, assume maintainership 2021-10-27 11:40:43 +00:00
oidentd
oinkmaster
olm security/olm: Update to 3.2.6, latest release 2021-10-28 21:57:43 +02:00
onionscan
op
openbsm
openconnect
openconnect-freebsd-daemon security/openconnect-freebsd-daemon: Update to 2.1.0 2021-10-20 17:12:09 +02:00
openconnect-gui
opencryptoki
openct
openfortivpn security/openfortivpn: Add CPE information 2021-10-21 16:27:06 +02:00
openiked
openiked-portable security/openiked-portable: Update to 7.0 2021-11-05 17:35:43 -04:00
opensaml security/opensaml: Add CPE information 2021-10-21 16:27:07 +02:00
opensc security/opensc: Add CPE information 2021-10-21 16:27:07 +02:00
openscep
openssh-askpass
openssh-portable security/openssh-portable: libfido fix went in 505373243 2021-10-15 20:58:23 -07:00
openssl
openssl_tpm_engine
openssl-devel security/openssl-devel: Bump portrevision 2021-09-12 12:59:33 +00:00
openssl-quictls security/openssl-quictls: Update to 3.0.0 RELEASE 2021-09-12 15:39:39 +00:00
openssl-unsafe
openvas security/gvm: update to 21.4.3 2021-11-05 11:32:20 -05:00
openvpn security/openvpn: rearrange Makefile 2021-11-01 13:16:37 +01:00
openvpn-admin
openvpn-auth-ldap
openvpn-auth-radius
openvpn-auth-script
openvpn-devel
openvpn-mbedtls
ophcrack
ossec-hids
ossec-hids-agent
ossec-hids-agent-config
ossec-hids-local
ossec-hids-local-config
ossec-hids-server
ossec-hids-server-config
osslsigncode
otpw
outguess
owasp-dependency-check
p5-Alt-Crypt-RSA-BigInt
p5-Apache-Htpasswd
p5-App-Acmeman
p5-App-Genpass
p5-App-TLSMe *: re-assign kuriyama@s ports to the pool, commit bit safekept 2021-10-04 21:58:01 +02:00
p5-Auth-YubikeyDecrypter
p5-AuthCAS *: apply refactor.remove-consecutive-empty-lines 2021-10-19 10:36:47 +02:00
p5-Authen-Bitcard
p5-Authen-Captcha
p5-Authen-CyrusSASL
p5-Authen-DecHpwd
p5-Authen-Htpasswd
p5-Authen-Krb5
p5-Authen-Krb5-Simple
p5-Authen-Libwrap
p5-Authen-NTLM
p5-Authen-OATH
p5-Authen-PAAS
p5-Authen-PAM
p5-Authen-Passphrase
p5-Authen-PluggableCaptcha
p5-Authen-Radius
p5-Authen-SASL
p5-Authen-SASL-Cyrus
p5-Authen-SASL-SASLprep
p5-Authen-SCRAM
p5-Authen-Simple
p5-Authen-Simple-DBI
p5-Authen-Simple-DBM
p5-Authen-Simple-HTTP
p5-Authen-Simple-Kerberos
p5-Authen-Simple-LDAP
p5-Authen-Simple-Net
p5-Authen-Simple-PAM
p5-Authen-Simple-Passwd
p5-Authen-Simple-RADIUS
p5-Authen-Simple-SMB
p5-Authen-Simple-SSH
p5-Authen-Smb
p5-Authen-TacacsPlus
p5-Authen-Ticket
p5-Authen-TypeKey
p5-Business-PayPal-EWP
p5-Bytes-Random-Secure
p5-Bytes-Random-Secure-Tiny
p5-CACertOrg-CA
p5-Cisco-Hash
p5-Crypt-Anubis
p5-Crypt-AppleTwoFish
p5-Crypt-Argon2
p5-Crypt-Blowfish
p5-Crypt-Blowfish_PP
p5-Crypt-Caesar
p5-Crypt-Camellia_PP
p5-Crypt-CAST5
p5-Crypt-CAST5_PP
p5-Crypt-CBC
p5-Crypt-CBCeasy
p5-Crypt-CFB
p5-Crypt-Chimera
p5-Crypt-CipherSaber
p5-Crypt-Cracklib
p5-Crypt-Ctr
p5-Crypt-Curve25519
p5-Crypt-DES
p5-Crypt-DES_EDE3
p5-Crypt-DES_PP
p5-Crypt-DH
p5-Crypt-Dining
p5-Crypt-DSA
p5-Crypt-ECB
p5-Crypt-Eksblowfish
p5-Crypt-Enigma
p5-Crypt-Format
p5-Crypt-GCrypt
p5-Crypt-GeneratePassword
p5-Crypt-GOST
p5-Crypt-GOST_PP
p5-Crypt-GPG
p5-Crypt-HCE_MD5
p5-Crypt-HCE_SHA
p5-Crypt-HSXKPasswd
p5-Crypt-IDEA
p5-Crypt-Imail
p5-Crypt-Juniper
p5-Crypt-JWT
p5-Crypt-Khazad
p5-Crypt-LE security/p5-Crypt-LE: Upgrade to 0.38. 2021-09-28 04:30:59 +00:00
p5-Crypt-LibSCEP
p5-Crypt-License
p5-Crypt-Lite
p5-Crypt-Loki97
p5-Crypt-MySQL
p5-Crypt-NULL
p5-Crypt-OFB
p5-Crypt-OICQ
p5-Crypt-OpenPGP
p5-Crypt-OpenSSL-AES
p5-Crypt-OpenSSL-Bignum
p5-Crypt-OpenSSL-CA *: fix tab vs. space issues, and comments according to the guide. 2021-10-16 11:51:39 +02:00
p5-Crypt-OpenSSL-DSA
p5-Crypt-OpenSSL-EC
p5-Crypt-OpenSSL-ECDSA
p5-Crypt-OpenSSL-Guess security/p5-Crypt-OpenSSL-Guess: Update to 0.14 2021-11-01 21:41:33 +08:00
p5-Crypt-OpenSSL-PKCS10
p5-Crypt-OpenSSL-Random security/p5-Crypt-OpenSSL-Random: Cosmetic change 2021-09-27 23:56:24 +08:00
p5-Crypt-OpenSSL-RSA security/p5-Crypt-OpenSSL-RSA: Strip shared library 2021-09-27 23:56:25 +08:00
p5-Crypt-OpenSSL-X509
p5-Crypt-OTP
p5-Crypt-PassGen
p5-Crypt-Passwd-XS
p5-Crypt-PasswdMD5
p5-Crypt-Password-Util
p5-Crypt-PBKDF2
p5-Crypt-Perl
p5-Crypt-PKCS10
p5-Crypt-Primes
p5-Crypt-PWSafe3
p5-Crypt-Rabbit
p5-Crypt-Random
p5-Crypt-Random-Seed
p5-Crypt-Random-Source
p5-Crypt-Random-TESHA2
p5-Crypt-RandPasswd
p5-Crypt-RC4
p5-Crypt-RC5
p5-Crypt-RC6
p5-Crypt-RHash
p5-Crypt-Rijndael
p5-Crypt-Rijndael_PP
p5-Crypt-RIPEMD160
p5-Crypt-RSA
p5-Crypt-RSA-Parse
p5-Crypt-RSA-Yandex
p5-Crypt-Salt
p5-Crypt-SaltedHash
p5-Crypt-Serpent
p5-Crypt-Shark
p5-Crypt-Simple
p5-Crypt-SKey
p5-Crypt-SmbHash
p5-Crypt-SMIME security/p5-Crypt-SMIME: Update to 0.28 2021-11-06 03:15:56 +08:00
p5-Crypt-Sodium
p5-Crypt-Solitaire
p5-Crypt-SSLeay
p5-Crypt-SSSS
p5-Crypt-T_e_a */*: Remove redundant '-[0-9]*' from CONFLICTS 2021-10-29 11:50:18 +02:00
p5-Crypt-TEA
p5-Crypt-Tea_JS */*: Remove redundant '-[0-9]*' from CONFLICTS 2021-10-29 11:50:18 +02:00
p5-Crypt-TripleDES
p5-Crypt-Twofish
p5-Crypt-Twofish2
p5-Crypt-Twofish_PP
p5-Crypt-UnixCrypt
p5-Crypt-UnixCrypt_XS
p5-Crypt-URandom *: re-assign kuriyama@s ports to the pool, commit bit safekept 2021-10-04 21:58:01 +02:00
p5-Crypt-X509
p5-Crypt-X509-CRL
p5-Crypt-xDBM_File
p5-Crypt-XTEA
p5-CryptX
p5-CSP
p5-Dancer2-Plugin-Auth-Extensible
p5-Dancer2-Plugin-Auth-Extensible-Provider-Database
p5-Dancer2-Plugin-Auth-Extensible-Provider-DBIC
p5-Dancer2-Plugin-Auth-Extensible-Provider-IMAP
p5-Dancer2-Plugin-Auth-Extensible-Provider-Usergroup
p5-Dancer2-Plugin-Passphrase
p5-Dancer-Plugin-Auth-Extensible
p5-Dancer-Plugin-Auth-Extensible-Provider-Usergroup
p5-Dancer-Plugin-Passphrase
p5-Data-Entropy
p5-Data-Password
p5-dicewaregen
p5-Digest security/p5-Digest: Update to 1.20 2021-09-20 15:44:00 +08:00
p5-Digest-Adler32
p5-Digest-Bcrypt
p5-Digest-BubbleBabble
p5-Digest-Crc32
p5-Digest-CRC
p5-Digest-DJB
p5-Digest-DMAC
p5-Digest-Elf
p5-Digest-EMAC
p5-Digest-FNV
p5-Digest-GOST
p5-Digest-Hashcash
p5-Digest-Haval256
p5-Digest-HMAC
p5-Digest-JHash
p5-Digest-ManberHash
p5-Digest-MD2
p5-Digest-MD4
p5-Digest-MD5
p5-Digest-MD5-File
p5-Digest-MD5-M4p
p5-Digest-MD5-Reverse
p5-Digest-MurmurHash *: re-assign kuriyama@s ports to the pool, commit bit safekept 2021-10-04 21:58:01 +02:00
p5-Digest-Nilsimsa
p5-Digest-Pearson
p5-Digest-Pearson-PurePerl
p5-Digest-Perl-MD4
p5-Digest-Perl-MD5
p5-Digest-SHA
p5-Digest-SHA1
p5-Digest-SHA3
p5-Digest-SHA-PurePerl
p5-Digest-SV1
p5-Digest-Tiger
p5-Digest-Whirlpool
p5-File-KeePass
p5-File-KeePass-Agent
p5-File-Scan
p5-File-Scan-ClamAV
p5-Filter-CBC
p5-Filter-Crypto
p5-GD-SecurityImage
p5-GnuPG
p5-GnuPG-Interface
p5-GSSAPI
p5-Heimdal-Kadm5
p5-HTML-Email-Obfuscate
p5-IO-Async-SSL
p5-IO-Socket-SSL
p5-Mcrypt
p5-MD5
p5-Module-Signature
p5-Net-Daemon-SSL
p5-Net-OpenID-Common
p5-Net-OpenID-JanRain
p5-Net-OpenID-Server
p5-Net-Radius-Server
p5-Net-SAML
p5-Net-Server-Mail-ESMTP-AUTH
p5-Net-SinFP
p5-Net-SSH-AuthorizedKeysFile
p5-Net-SSL-ExpireDate security/p5-Net-SSL-ExpireDate: Update to 1.22 2021-11-06 03:15:56 +08:00
p5-Net-SSLeay mail/fetchmail: Fix build with LibreSSL 3.4 2021-10-23 17:08:00 +00:00
p5-Net-SSLGlue
p5-Nmap-Parser
p5-Nmap-Scanner
p5-OpenCA-CRL
p5-OpenCA-CRR
p5-OpenCA-OpenSSL *: fix tab vs. space issues, and comments according to the guide. 2021-10-16 11:51:39 +02:00
p5-OpenCA-PKCS7
p5-OpenCA-REQ
p5-OpenCA-X509
p5-openxpki security/p5-openxpki: Fix shebang related bugs 2021-11-01 17:20:30 +09:00
p5-openxpki-i18n
p5-Parse-Snort
p5-PBKDF2-Tiny
p5-PerlCryptLib
p5-PGP
p5-PGP-Sign
p5-plog
p5-POE-Component-SSLify
p5-POE-Filter-SSL
p5-Protocol-ACME
p5-Safe-Hole
p5-SAVI-Perl
p5-Session-Token
p5-SHA
p5-Snort-Rule
p5-String-MkPasswd
p5-Sudo
p5-Text-Password-Pronounceable
p5-Tie-EncryptedHash
p5-Tree-Authz
p5-Unix-Passwd-File
p5-Unix-setuid
p5-Yahoo-BBAuth
p11-kit security/p11-kit: Add CPE information 2021-09-10 21:17:54 +00:00
palisade *: apply refactor.remove-consecutive-empty-lines 2021-10-19 10:36:47 +02:00
pam_google_authenticator
pam_helper
pam_jail
pam_kde
pam_krb5
pam_krb5-rh
pam_ldap security/pam_ldap: Add CPE information 2021-09-11 11:25:30 +00:00
pam_mkhomedir
pam_ocra
pam_p11
pam_pkcs11
pam_pwdfile *: fix tab vs. space issues, and comments according to the guide. 2021-10-16 11:51:39 +02:00
pam_require
pam_script
pam_search_list
pam_ssh_agent_auth cleanup: drop support for EOL FreeBSD 11.X 2021-09-30 23:23:30 +02:00
pam_yubico
pam-modules
pam-mysql *: fix tab vs. space issues, and comments according to the guide. 2021-10-16 11:51:39 +02:00
pam-pgsql
pamtester
paperkey
passivedns security/passivedns: add JSON option 2021-10-06 14:13:53 -05:00
pbc
pbnj
pcsc-tools
pdfcrack
pear-Auth
pear-Auth_HTTP
pear-Auth_PrefManager
pear-Auth_SASL
pear-Auth_SASL2
pear-Crypt_Blowfish
pear-Crypt_CBC security/pear-Crypt_CBC: Add LICENSE 2021-09-19 14:00:09 +08:00
pear-Crypt_CHAP
pear-Crypt_DiffieHellman
pear-Crypt_GPG security/pear-Crypt_GPG: Update to 1.6.6 2021-09-21 11:44:15 +08:00
pear-Crypt_HMAC2
pear-Crypt_MicroID
pear-Crypt_RC4
pear-Crypt_RSA
pear-Crypt_XXTEA
pear-File_HtAccess
pear-File_Passwd
pear-File_SMBPasswd
pear-Horde_Auth */*: Add CPE information for horde ports 2021-10-08 07:09:48 +00:00
pear-Horde_Crypt */*: Add CPE information for horde ports 2021-10-08 07:09:48 +00:00
pear-Horde_Crypt_Blowfish */*: Add CPE information for horde ports 2021-10-08 07:09:48 +00:00
pear-Horde_Group */*: Add CPE information for horde ports 2021-10-08 07:09:48 +00:00
pear-Horde_Oauth */*: Add CPE information for horde ports 2021-10-08 07:09:48 +00:00
pear-Horde_Perms */*: Add CPE information for horde ports 2021-10-08 07:09:48 +00:00
pear-Horde_Secret */*: Add CPE information for horde ports 2021-10-08 07:09:48 +00:00
pear-Horde_Share */*: Add CPE information for horde ports 2021-10-08 07:09:48 +00:00
pear-HTML_Crypt
pear-LiveUser
pear-LiveUser_Admin
pear-Net_Portscan
pear-Text_Password
pecl-crypto
pecl-gnupg
pecl-krb5
pecl-libsodium
pecl-mcrypt
pecl-pam security/pecl-pam: Update to 2.2.3 2021-09-22 06:23:26 +08:00
pecl-pkcs11
pecl-scrypt
pecl-ssh2
peda
pev
pgpdump security/pgpdump: Cosmetic change 2021-10-14 03:12:34 +08:00
pgpgpg
pgpin
php73-filter *: fix tab vs. space issues, and comments according to the guide. 2021-10-16 11:51:39 +02:00
php73-hash *: fix tab vs. space issues, and comments according to the guide. 2021-10-16 11:51:39 +02:00
php73-openssl *: fix tab vs. space issues, and comments according to the guide. 2021-10-16 11:51:39 +02:00
php73-sodium *: fix tab vs. space issues, and comments according to the guide. 2021-10-16 11:51:39 +02:00
php74-filter *: fix tab vs. space issues, and comments according to the guide. 2021-10-16 11:51:39 +02:00
php74-openssl *: fix tab vs. space issues, and comments according to the guide. 2021-10-16 11:51:39 +02:00
php74-sodium *: fix tab vs. space issues, and comments according to the guide. 2021-10-16 11:51:39 +02:00
php80-filter *: fix tab vs. space issues, and comments according to the guide. 2021-10-16 11:51:39 +02:00
php80-openssl *: fix tab vs. space issues, and comments according to the guide. 2021-10-16 11:51:39 +02:00
php80-sodium *: fix tab vs. space issues, and comments according to the guide. 2021-10-16 11:51:39 +02:00
phpsecinfo
picosha2
pidgin-encryption
pidgin-otr
pinentry
pinentry-curses
pinentry-efl
pinentry-fltk
pinentry-gnome3
pinentry-gtk2
pinentry-qt5
pinentry-tty
pixiewps
pkcrack
pkcs11-dump
pkcs11-gateway
pkcs11-helper
pkcs11-tools security/pkcs11-tools: update to 2.5.0 2021-10-09 04:18:36 +01:00
pkesh
pks cleanup: drop support for EOL FreeBSD 11.X 2021-09-30 23:23:30 +02:00
pktsuckers
plasma5-kscreenlocker KDE: Update KDE Plasma to 5.23.2 2021-10-26 21:42:49 +02:00
plasma5-ksshaskpass KDE: Update KDE Plasma to 5.23.2 2021-10-26 21:42:49 +02:00
plasma5-kwallet-pam KDE: Update KDE Plasma to 5.23.2 2021-10-26 21:42:49 +02:00
please
poly1305aes security/poly1305aes: fix build on powerpc* 2021-10-27 02:44:37 +00:00
portsentry
ppars
proftpd-mod_clamav
protonvpn-cli
proxycheck
proxytunnel
pscan
pssh
pulledpork
pure-sfv
putty security/putty: Fix CPE information because current one is deprecated 2021-09-14 10:55:30 +00:00
putty-gtk2
putty-nogtk
pvk
pwauth
pwman
pwman3
pwned-check
pxytest
py-acme security-py-{acme,certbot*}: Update to 1.21.0 2021-11-06 11:25:22 +09:00
py-acme-tiny
py-ailment
py-angr
py-argon2-cffi
py-artifacts
py-asyncssh security/py-asyncssh: Update to 2.8.0 2021-11-06 03:14:25 +08:00
py-authlib security/py-authlib: Update to 0.15.5 2021-10-26 05:46:46 +08:00
py-azure-keyvault-certificates
py-azure-keyvault-keys
py-azure-keyvault-secrets
py-bcrypt
py-btchip-python
py-cerealizer
py-cert-human
py-certbot security-py-{acme,certbot*}: Update to 1.21.0 2021-11-06 11:25:22 +09:00
py-certbot-apache security-py-{acme,certbot*}: Update to 1.21.0 2021-11-06 11:25:22 +09:00
py-certbot-dns-cloudflare security-py-{acme,certbot*}: Update to 1.21.0 2021-11-06 11:25:22 +09:00
py-certbot-dns-cloudxns security-py-{acme,certbot*}: Update to 1.21.0 2021-11-06 11:25:22 +09:00
py-certbot-dns-cpanel
py-certbot-dns-digitalocean security-py-{acme,certbot*}: Update to 1.21.0 2021-11-06 11:25:22 +09:00
py-certbot-dns-dnsimple security-py-{acme,certbot*}: Update to 1.21.0 2021-11-06 11:25:22 +09:00
py-certbot-dns-dnsmadeeasy security-py-{acme,certbot*}: Update to 1.21.0 2021-11-06 11:25:22 +09:00
py-certbot-dns-gehirn security-py-{acme,certbot*}: Update to 1.21.0 2021-11-06 11:25:22 +09:00
py-certbot-dns-google security-py-{acme,certbot*}: Update to 1.21.0 2021-11-06 11:25:22 +09:00
py-certbot-dns-linode security-py-{acme,certbot*}: Update to 1.21.0 2021-11-06 11:25:22 +09:00
py-certbot-dns-luadns security-py-{acme,certbot*}: Update to 1.21.0 2021-11-06 11:25:22 +09:00
py-certbot-dns-nsone security-py-{acme,certbot*}: Update to 1.21.0 2021-11-06 11:25:22 +09:00
py-certbot-dns-ovh security-py-{acme,certbot*}: Update to 1.21.0 2021-11-06 11:25:22 +09:00
py-certbot-dns-rfc2136 security-py-{acme,certbot*}: Update to 1.21.0 2021-11-06 11:25:22 +09:00
py-certbot-dns-route53 security-py-{acme,certbot*}: Update to 1.21.0 2021-11-06 11:25:22 +09:00
py-certbot-dns-sakuracloud security-py-{acme,certbot*}: Update to 1.21.0 2021-11-06 11:25:22 +09:00
py-certbot-nginx security-py-{acme,certbot*}: Update to 1.21.0 2021-11-06 11:25:22 +09:00
py-certifi security/py-certifi: Update to 2021.10.8 2021-10-14 03:14:40 +08:00
py-certstream
py-ckcc-protocol
py-coincurve
py-cpe
py-cryptography security/py-cryptography: Add CPE information 2021-10-13 15:14:06 +02:00
py-cryptography-vectors security/py-cryptography-vectors: Update to 3.4.8 2021-09-21 11:44:56 +08:00
py-ctypescrypto
py-cybox
py-dfdatetime
py-dfvfs
py-dfwinreg
py-django-auth-kerberos security/py-django-auth-kerberos: UCL-ify pkg-message 2021-10-20 17:33:48 +02:00
py-docker-pycreds
py-ecdsa
py-ed25519ll
py-exscript
py-fail2ban security/py-fail2ban: Add upstream patch to fix possible RCE vulnerability 2021-10-28 00:48:14 +09:00
py-fido2 security/py-fido2: Update to 0.9.2 2021-10-26 05:54:38 +08:00
py-first-server security/py-first-server: remove reference to "Fig. A" from pkg-descr. 2021-10-16 09:09:28 +02:00
py-flask-httpauth
py-flask-kerberos
py-flask-saml
py-gixy
py-gnupg
py-gnutls
py-google-auth security/py-google-auth: Update to 2.3.3 2021-11-06 03:14:25 +08:00
py-google-auth-httplib2
py-google-auth-oauthlib security/py-google-auth-oauthlib: Update to 0.4.6 2021-09-21 11:44:56 +08:00
py-gpgme
py-gpsoauth
py-gssapi
py-gvm-tools security/gvm: update to 21.4.3 2021-11-05 11:32:20 -05:00
py-hkdf
py-htpasswd
py-itsdangerous security/py-itsdangerous: Update to 2.0.1 [1] 2021-10-26 09:31:49 +08:00
py-josepy security/py-josepy: Update to 1.10.0 2021-10-13 13:40:07 +08:00
py-keepkey security/py-keepkey: Update to 7.2.1 2021-10-27 23:04:30 +02:00
py-kerberos
py-keyring security/py-keyring: Add CPE information 2021-10-13 15:14:14 +02:00
py-keyrings.alt
py-krb5 security/py-krb5: Update to 0.2.0 2021-10-26 05:46:46 +08:00
py-libnacl
py-m2crypto security/py-m2crypto: Cosmetic change 2021-10-14 03:14:55 +08:00
py-maec
py-merkletools
py-mixbox
py-mnemonic
py-msoffcrypto-tool
py-muacrypt
py-netbox-secretstore security/py-netbox-secretstore: Add new port 2021-10-04 19:22:59 +02:00
py-netmiko
py-ntlm-auth
py-oauth2client
py-oauthlib www/py-pyjwt: Rename to www/py-pyjwt1 2021-10-04 19:10:05 +02:00
py-onlykey
py-openssl cleanup: drop support for EOL FreeBSD 11.X 2021-09-30 23:23:30 +02:00
py-ospd security/gvm: update to 21.4.3 2021-11-05 11:32:20 -05:00
py-ospd-openvas security/gvm: update to 21.4.3 2021-11-05 11:32:20 -05:00
py-paramiko security/py-paramiko: Add CPE information 2021-09-10 21:18:13 +00:00
py-pass-audit
py-passlib
py-pbkdf2
py-pgpdump
py-pgpy
py-plaso
py-potr
py-pyaes
py-pyaff4
py-pyaxo
py-pyblake2
py-pyclamd
py-pycrypto security/py-pycrypto: Add CPE information 2021-09-10 21:17:55 +00:00
py-pycryptodome security/py-pycryptodome: Add CPE information 2021-10-13 15:14:32 +02:00
py-pycryptodomex
py-pyelliptic
py-pylibacl
py-pymacaroons
py-pynacl
py-pyotp
py-pyotp2289
py-pysaml2 security/py-pysaml2: Cosmetic change 2021-10-14 03:15:02 +08:00
py-pysaml24 security/py-pysaml24: Cosmetic change 2021-10-14 03:15:09 +08:00
py-pysaml26 security/py-pysaml26: Cosmetic change 2021-10-14 03:15:16 +08:00
py-pyscard
py-pysha3
py-pysodium security/py-pysodium: Update to 0.7.10 2021-10-13 13:37:44 +08:00
py-pyspnego security/py-pyspnego: Update to 0.3.1 2021-11-01 21:41:50 +08:00
py-python3-openid
py-python3-saml security/py-python3-saml: Update to 1.12.0 2021-09-21 11:44:57 +08:00
py-python-axolotl
py-python-axolotl-curve25519
py-python-gnupg
py-python-gvm security/gvm: update to 21.4.3 2021-11-05 11:32:20 -05:00
py-python-jose
py-python-nss
py-python-openid
py-python-pam
py-python-pkcs11
py-python-registry
py-pyvex
py-pywinrm
py-requests-credssp
py-requests-kerberos
py-RestrictedPython
py-ropper
py-rsa security/py-rsa: Add CPE information 2021-10-13 15:15:13 +02:00
py-safe
py-scp
py-scramp security/py-scramp: Update to 1.4.1 2021-09-21 09:12:16 +08:00
py-scrypt
py-SecretStorage
py-securesystemslib
py-sequoia
py-service_identity
py-signedjson
py-social-auth-core www/py-pyjwt: Rename to www/py-pyjwt1 2021-10-04 19:10:05 +02:00
py-spake2
py-ssh
py-ssh-audit
py-sshpubkeys
py-stem
py-stix
py-stix2
py-stix2-patterns
py-taxii2-client
py-tls-parser
py-tlslite security/py-tlslite: Add CPE information 2021-10-13 15:15:21 +02:00
py-trezor security/py-trezor: Update to 0.12.4 2021-09-11 08:56:16 +02:00
py-trustme
py-tuf
py-txtorcon
py-uhashring
py-vici security/py-vici: Update to 5.9.3 2021-09-10 22:23:36 +02:00
py-virustotal-api
py-volatility3 security/py-volatility3: limit supported python version 2021-10-28 14:46:09 +03:00
py-vulndb
py-webauthn
py-xkcdpass
py-xmlsec security/py-xmlsec: Update version 1.3.11=>1.3.12 2021-09-27 19:02:38 -05:00
py-yara security/py-yara: Add CPE information 2021-10-13 15:15:31 +02:00
py-yubikey-manager security/py-yubikey-manager: update 4.0.5 to 4.0.7 2021-10-18 10:33:27 +00:00
py-YubiOTP
py-zkg
py-zope.password
py-zxcvbn
qtkeychain
quantis-kmod
R-cran-askpass
R-cran-credentials
R-cran-digest security/R-cran-digest: Update to 0.6.28 2021-09-25 07:07:27 +00:00
R-cran-gitcreds
R-cran-openssl security/R-cran-openssl: Update to 1.4.5 2021-09-07 11:04:13 +00:00
R-cran-ROAuth
racoon2 *: fix tab vs. space issues, and comments according to the guide. 2021-10-16 11:51:39 +02:00
radamsa
ratproxy
rats
razorback-api
razorback-archiveInflate
razorback-clamavNugget
razorback-fileInject
razorback-fsMonitor
razorback-fsWalk
razorback-masterNugget
razorback-officeCat
razorback-pdfFox
razorback-scriptNugget
razorback-swfScanner
razorback-syslogNugget
razorback-virusTotal
razorback-yaraNugget
rcracki_mt
reop
retranslator
revealrk
rhash security/rhash: Add CPE information 2021-10-13 15:15:40 +02:00
ridl
rifiuti2
rkhunter
rndpassw
rnp
ruby-bitwarden
rubygem-acme-client security/rubygem-acme-client: Update to 2.0.9 2021-09-21 11:47:09 +08:00
rubygem-aes_key_wrap
rubygem-airbrussh
rubygem-android_key_attestation
rubygem-attr_encrypted
rubygem-bcrypt
rubygem-bcrypt_pbkdf
rubygem-bcrypt_pbkdf10
rubygem-bcrypt-ruby
rubygem-cose
rubygem-declarative_policy
rubygem-devise_pam_authenticatable2
rubygem-devise-two-factor security/rubygem-devise-two-factor: Update to 4.0.1 2021-09-21 11:47:10 +08:00
rubygem-devise-two-factor30-rails52
rubygem-devise-two-factor30-rails60
rubygem-devise-two-factor-rails5 security/rubygem-devise-two-factor-rails5: Update to 4.0.1 2021-09-21 11:47:10 +08:00
rubygem-devise-two-factor-rails60
rubygem-devise-two-factor-rails61
rubygem-digest-crc
rubygem-doorkeeper */*: Revert "*/*: Make rails 6.1.3 available" 2021-10-27 08:20:24 +02:00
rubygem-doorkeeper-openid_connect
rubygem-doorkeeper-rails5 security/rubygem-doorkeeper-rails5: Update to 5.5.4 2021-10-26 05:54:43 +08:00
rubygem-doorkeeper-rails50 security/rubygem-doorkeeper-rails50: Update to 5.5.4 2021-10-26 05:54:43 +08:00
rubygem-ed25519
rubygem-encryptor
rubygem-ezcrypto
rubygem-googleauth security/rubygem-googleauth: Update to 0.17.1 2021-09-21 11:47:10 +08:00
rubygem-gpgme
rubygem-gpgr
rubygem-gssapi
rubygem-hkdf
rubygem-hkdf0
rubygem-hrr_rb_ssh security/rubygem-hrr_rb_ssh: update to 0.4.2 2021-09-21 17:49:01 +00:00
rubygem-hrr_rb_ssh-ed25519 security/rubygem-hrr_rb_ssh-ed25519: new port 2021-09-21 18:04:51 +00:00
rubygem-lockbox
rubygem-metasploit_data_models security/rubygem-metasploit_data_models: update to 5.0.4 2021-09-21 19:01:20 +00:00
rubygem-metasploit_payloads-mettle security/rubygem-metasploit_payloads-mettle: update to 1.0.10 2021-09-21 17:45:43 +00:00
rubygem-metasploit-aggregator
rubygem-metasploit-concern security/rubygem-metasploit-concern: update to 4.0.3 2021-09-21 18:55:21 +00:00
rubygem-metasploit-credential security/rubygem-metasploit-credential: update to 5.0.4 2021-09-21 18:56:19 +00:00
rubygem-metasploit-model security/rubygem-metasploit-model: update to 4.0.3 2021-09-21 18:59:58 +00:00
rubygem-metasploit-payloads security/rubygem-metasploit-payloads: update to 2.0.54 2021-09-21 17:43:54 +00:00
rubygem-nessus_rest
rubygem-net-scp
rubygem-net-scp1
rubygem-net-sftp
rubygem-net-sftp2
rubygem-net-ssh security/rubygem-net-ssh: Take maintainership 2021-10-25 23:57:59 +08:00
rubygem-net-ssh4
rubygem-net-ssh5
rubygem-net-ssh-gateway
rubygem-net-ssh-gateway1
rubygem-net-ssh-krb
rubygem-net-ssh-multi
rubygem-net-telnet
rubygem-nexpose security/rubygem-nexpose: update to 7.3.0 2021-09-19 19:28:51 +00:00
rubygem-nmap-parser
rubygem-omniauth security/rubygem-omniauth: Add CPE information 2021-10-21 16:27:07 +02:00
rubygem-omniauth1 security/rubygem-omniauth1: Add CPE information 2021-10-21 16:27:08 +02:00
rubygem-omniauth-atlassian-oauth2 *: fix tab vs. space issues, and comments according to the guide. 2021-10-16 11:51:39 +02:00
rubygem-omniauth-bitbucket
rubygem-omniauth-cas
rubygem-omniauth-cas3
rubygem-omniauth-gitlab
rubygem-omniauth-jwt
rubygem-omniauth-multipassword
rubygem-omniauth-oauth2-generic
rubygem-omniauth-saml
rubygem-omniauth-shibboleth
rubygem-openssl security/rubygem-openssl: Update to 2.2.1 2021-10-26 05:54:44 +08:00
rubygem-openssl-ccm
rubygem-openssl-cmac
rubygem-openssl-signature_algorithm
rubygem-openvas-omp
rubygem-origami
rubygem-pbkdf2-ruby
rubygem-pundit security/rubygem-pundit: Update to 2.1.1 2021-09-21 11:47:11 +08:00
rubygem-pyu-ruby-sasl
rubygem-rack-oauth2 */*: Switch deps from rails 6.0 to 6.1 2021-09-30 14:47:21 +02:00
rubygem-razorback-scriptNugget
rubygem-rbnacl
rubygem-rbnacl-libsodium
rubygem-recog security/rubygem-recog: update to 2.3.21 2021-09-19 19:35:33 +00:00
rubygem-rex-arch
rubygem-rex-bin_tools security/rubygem-rex-bin_tools: update to 0.1.8 2021-09-20 19:44:37 +00:00
rubygem-rex-core security/rubygem-rex-core: update to 0.1.17 2021-09-20 19:32:48 +00:00
rubygem-rex-encoder security/rubygem-rex-encoder: update to 0.1.6 2021-09-20 19:51:02 +00:00
rubygem-rex-exploitation security/rubygem-rex-exploitation: update to 0.1.28 2021-09-20 20:13:05 +00:00
rubygem-rex-java
rubygem-rex-mime
rubygem-rex-nop
rubygem-rex-ole
rubygem-rex-powershell security/rubygem-rex-powershell: update to 0.1.93 2021-09-21 17:36:54 +00:00
rubygem-rex-random_identifier security/rubygem-rex-random_identifier: update to 0.1.8 2021-09-20 20:22:02 +00:00
rubygem-rex-registry
rubygem-rex-rop_builder
rubygem-rex-socket security/rubygem-rex-socket: update to 0.1.33 2021-09-21 17:38:30 +00:00
rubygem-rex-sslscan security/rubygem-rex-sslscan: update to 0.1.6 2021-09-21 17:39:52 +00:00
rubygem-rex-struct2
rubygem-rex-text security/rubygem-rex-text: update to 0.2.37 2021-09-20 19:38:09 +00:00
rubygem-rex-zip
rubygem-roauth
rubygem-rpam2
rubygem-ruby-hmac
rubygem-ruby-rc4
rubygem-ruby-saml security/rubygem-ruby-saml: Update to 1.13.0 2021-09-23 21:42:06 +02:00
rubygem-safety_net_attestation
rubygem-scrypt
rubygem-securecompare
rubygem-securerandom security/rubygem-securerandom: Update to 0.1.1 2021-10-26 05:54:36 +08:00
rubygem-signet security/rubygem-signet: Update to 0.16.0 2021-09-21 11:47:11 +08:00
rubygem-six
rubygem-sshkey
rubygem-sshkit
rubygem-sslshake *: apply refactor.remove-consecutive-empty-lines 2021-10-19 10:36:47 +02:00
rubygem-ssrf_filter
rubygem-timfel-krb5
rubygem-tpm-key_attestation
rubygem-twitter_oauth
rubygem-unix-crypt security/rubygem-unix-crypt: new port 2021-09-21 18:01:33 +00:00
rubygem-webauthn
rubygem-webpush
rustscan *: Rebuild for Rust 1.56.0 2021-10-25 10:55:19 +02:00
s2n security/s2n: Update to 1.1.2 2021-10-25 15:04:49 +01:00
safesh
samhain security/samhain: fix build on powerpc64 2021-10-22 11:42:49 +00:00
samhain-client
samhain-server
sancp
sasp
scanlogd
scanssh
scrypt
seahorse INSTALLS_ICONS: retire the macro and rework the related dependencies 2021-10-10 21:44:42 +02:00
seal security/seal: Update 3.6.5 -> 3.7.1 2021-10-15 14:01:57 -07:00
seccure
secpanel
sectok
secure_delete */*: Remove redundant '-[0-9]*' from CONFLICTS 2021-10-29 11:50:18 +02:00
sedutil
sequoia *: Rebuild for Rust 1.56.0 2021-10-25 10:55:19 +02:00
setaudit
sha
sha1collisiondetection
sha2wordlist
shibboleth-sp
shimmer
shishi
shttpscanner
sig2dot
signify security/signify: update to 0.10 2021-10-17 19:35:20 +02:00
signing-party
silktools
sks
slurpie
slush
smtpscan
smurflog
sniff
snoopy security/snoopy: Update to 2.4.14 2021-09-27 23:55:51 +08:00
snort
snort2pfcd
snort3 security/snort3: Update to 3.1.16.0 2021-11-03 17:55:26 +00:00
snort-rep
snortsam
snortsnarf
snuffleupagus
softether
softether5
softether-devel
softhsm2 cleanup: drop support for EOL FreeBSD 11.X 2021-09-30 23:23:30 +02:00
solana *: Rebuild for Rust 1.56.0 2021-10-25 10:55:19 +02:00
sops
spass
spass-qt5
spectre-meltdown-checker
spm
spybye
sqlmap
sqlninja
srm */*: Remove redundant '-[0-9]*' from CONFLICTS 2021-10-29 11:50:18 +02:00
ssb
ssdeep
ssh-multiadd
ssh-vault
sshguard security/sshguard: Fix memset() off-by-one 2021-10-04 12:15:18 +08:00
sshpass
ssl-admin security/ssl-admin: Fetch from GitHub 2021-10-02 23:59:12 +02:00
ssllabs-scan
sslproxy security/sslproxy: Update version 0.8.6=>0.9.0 2021-10-29 13:58:34 -05:00
sslscan
sslsniffer
sslsplit
sslwrap
sssd security/sssd: Fix man page paths 2021-11-01 18:24:23 +01:00
ssss
sst
starttls *: re-assign kuriyama@s ports to the pool, commit bit safekept 2021-10-04 21:58:01 +02:00
steghide security/steghide: Add CPE information 2021-10-21 16:27:08 +02:00
stegify
step-certificates security/step-certificates: Update to 0.17.4 2021-10-05 04:05:11 -04:00
step-cli security/step-cli: Update to 0.17.5 2021-10-05 04:05:46 -04:00
stoken
strobe
strongswan security/strongswan: Update to 5.9.4 2021-10-20 15:19:32 +08:00
stud
stunnel security/stunnel: Mark BROKEN with libressl 2021-10-08 11:04:16 -04:00
subversion-gnome-keyring
sudo security/sudo: Update to 1.9.8p2 2021-09-30 06:51:29 -07:00
sudoscript
super
suricata *: Rebuild for Rust 1.56.0 2021-10-25 10:55:19 +02:00
swatchdog
symbion-sslproxy
tailscale security/tailscale: Update to 1.16.1. 2021-10-21 17:46:46 +02:00
tang
tclsasl
tcpcrypt
teleport
testssl.sh security/testssl.sh: Update to 3.0.6 2021-10-03 10:53:09 -06:00
tfhe
theonionbox
tinc security/tinc: fix typos in pkg-descr. 2021-10-16 09:09:19 +02:00
tinc-devel
tinyca
tls-check
tlswrap
tor security/tor: Update 0.4.6.7 -> 0.4.6.8 2021-10-29 12:41:23 -07:00
tor-devel security/tor-devel: Update 0.4.7.1-alpha -> 0.4.7.2-alpha 2021-10-29 12:41:22 -07:00
totp-cli security/totp-cli: Update to 1.1.17 2021-10-14 03:12:41 +08:00
tpm2-abrmd
tpm2-tools security/tpm2-tools: Update to 5.2 2021-10-04 10:33:48 +08:00
tpm2-tss
tpm-tools
trezord
trinokiller
tripwire
tripwire-131 Style: improve ONLY_FOR_ARCHS_REASON (grammar, markup, etc.) 2021-10-25 12:58:29 +00:00
trousers security/trousers: Add CPE information 2021-10-13 15:15:48 +02:00
truecrypt security/truecrypt: Add CPE information 2021-09-21 12:57:59 +00:00
tthsum */*: Remove redundant '-[0-9]*' from CONFLICTS 2021-10-29 11:50:18 +02:00
u2f-devd security/u2f-devd: add USB ID for SoloKeys Solo 2 2021-11-05 20:40:19 -04:00
uacme cleanup: drop support for EOL FreeBSD 11.X 2021-09-30 23:23:30 +02:00
ubuntu-keyring
unhide
unicornscan
vanguards-tor
vault security/vault: Add CPE information 2021-10-13 15:15:57 +02:00
vaultwarden security/vaultwarden: Revert update to 1.23.0 2021-11-04 17:56:04 +01:00
veracrypt security/veracrypt: Improve pkg-message 2021-11-05 12:21:39 -05:00
vigenere
vinetto
vlock
vm-to-tor
vnccrack
vouch-proxy security/vouch-proxy: Update to 0.35.1 2021-10-18 08:10:31 +00:00
vpnc
vuls
vuxml security/vuxml: Document net/pyrad security issues 2021-11-05 09:35:56 +01:00
vxquery
wapiti
wazuh-agent
webfwlog
webscarab
weggli *: Rebuild for Rust 1.56.0 2021-10-25 10:55:19 +02:00
whatweb security/whatweb: Add CPE information 2021-10-21 16:27:09 +02:00
wipe
wolfssh
wolfssl security/wolfssl: Update to v5.0.0 2021-11-06 05:57:38 +01:00
wpa_supplicant
wpa_supplicant-devel cleanup: drop support for EOL FreeBSD 11.X 2021-09-30 23:23:30 +02:00
xca
xinetd
xml-security security/xml-security: Update MASTER_SITES 2021-10-11 20:48:06 +02:00
xmlsec1
xorsearch
xray-core security/xray-core: Update to 1.4.5 2021-11-01 09:56:35 -07:00
yafic
yapet
yara security/yara: Add CPE information 2021-10-21 16:27:09 +02:00
yersinia
ykclient
ykpers
ylva security/ylva: Update WWW 2021-10-07 12:52:45 -07:00
yubico-piv-tool
yubikey-agent
yubikey-manager-qt
yubikey-personalization-gui
yubioath-desktop
zebedee
zeek *: fix tab vs. space issues, and comments according to the guide. 2021-10-16 11:51:39 +02:00
zeronet
zxid
zzuf
Makefile */*: Revert "*/*: Make rails 6.1.3 available" 2021-10-27 08:20:24 +02:00