[Bug 196431] security/ca_root_nss: Fix broken SSL verification for software (and Python) using OpenSSL from ports

2017-11-06 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196431

Kubilay Kocak  changed:

   What|Removed |Added

   See Also||https://bugs.freebsd.org/bu
   ||gzilla/show_bug.cgi?id=1898
   ||11

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
freebsd-gecko@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-gecko
To unsubscribe, send any mail to "freebsd-gecko-unsubscr...@freebsd.org"


[Bug 196431] security/ca_root_nss: Fix broken SSL verification for software (and Python) using OpenSSL from ports

2015-02-09 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196431

--- Comment #10 from commit-h...@freebsd.org ---
A commit references this bug:

Author: koobs
Date: Mon Feb  9 09:44:29 UTC 2015
New revision: 378720
URL: https://svnweb.freebsd.org/changeset/ports/378720

Log:
  security/ca_root_nss: Fix SSL verification for ports OpenSSL consumers

  Since 2.7.9, Python verifies SSL certificates by default. Currently,
  even with security/ca_root_nss installed, Python fails certificate
  verification.

  Upon investigation, Python uses OpenSSL's standard
  SSL_CTX_load_verify_locations function to load a list of CA root
  certificates.

  Support was added to ca_root_nss for out of the box certificate
  verification for a number of base utilities in r372629 [1], but this
  did not include support for software that uses OpenSSL's
  SSL_CTX_load_verify_locations function.

  [1] https://svnweb.freebsd.org/changeset/ports/372629

  OpenSSL defaults (at compile time) to the following paths and filenames
  for certificate and CAFile lookup:

  Base:
SSL_CERT_DIR=/etc/ssl/certs
SSL_CERT_FILE/etc/ssl/cert.pem

  Ports:
SSL_CERT_DIR=/usr/local/openssl/certs
SSL_CERT_FILE=/usr/local/openssl/cert.pem

  This change installs a symlink which points to the root certificate
  bundle in the location that OpenSSL from ports looks for them.

  This allows any and all software utilising SSL_CTX_load_verify_locations
  function to verify SSL certificates by default after installation of
  this package.

  Additionally, display a pkg-message to the user about the lack of
  warranty associated with these certificates.

  Note: This is *NOT* related to solving for SSL certificate verification
  for OpenSSL in Base, which is covered in bug 189811.

  While I'm here:

  - Add LICENSE
  - Use options helpers and OPTIONS_SUB
  - Fix typo in !!! message !!!

  PR: 196431
  Submitted by:koobs
  Reviewed by:jbeich
  Approved by:maintainer timeout (1 month)

Changes:
  head/security/ca_root_nss/Makefile
  head/security/ca_root_nss/files/pkg-message.in
  head/security/ca_root_nss/pkg-plist

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
freebsd-gecko@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-gecko
To unsubscribe, send any mail to freebsd-gecko-unsubscr...@freebsd.org


[Bug 196431] security/ca_root_nss: Fix broken SSL verification for software (and Python) using OpenSSL from ports

2015-02-09 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196431

Kubilay Kocak ko...@freebsd.org changed:

   What|Removed |Added

 Status|Open|Closed
 Resolution|--- |FIXED
  Flags|maintainer-feedback?(gecko@ |
   |FreeBSD.org)|
   Assignee|ge...@freebsd.org   |ko...@freebsd.org

--- Comment #11 from Kubilay Kocak ko...@freebsd.org ---
Committed, with minor changes.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
freebsd-gecko@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-gecko
To unsubscribe, send any mail to freebsd-gecko-unsubscr...@freebsd.org


[Bug 196431] security/ca_root_nss: Fix broken SSL verification for software (and Python) using OpenSSL from ports

2015-01-28 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196431

--- Comment #9 from Kubilay Kocak ko...@freebsd.org ---
wowi42, please create a separate issue for your patch introducing a dependency
on OpenSSL.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
___
freebsd-gecko@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-gecko
To unsubscribe, send any mail to freebsd-gecko-unsubscr...@freebsd.org


[Bug 196431] security/ca_root_nss: Fix broken SSL verification for software (and Python) using OpenSSL from ports

2015-01-27 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196431

wowi42 w...@wowi.io changed:

   What|Removed |Added

 CC||w...@wowi.io

--- Comment #8 from wowi42 w...@wowi.io ---
Created attachment 152293
  -- https://bugs.freebsd.org/bugzilla/attachment.cgi?id=152293action=edit
Port diff to have valid SSL with openssl port (option PORT_ETCSYMLINK)

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
freebsd-gecko@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-gecko
To unsubscribe, send any mail to freebsd-gecko-unsubscr...@freebsd.org


[Bug 196431] security/ca_root_nss: Fix broken SSL verification for software (and Python) using OpenSSL from ports

2015-01-02 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196431

Kubilay Kocak ko...@freebsd.org changed:

   What|Removed |Added

 Attachment #151202|maintainer-approval?(gecko@ |
  Flags|FreeBSD.org)|
 Attachment #151202|0   |1
is obsolete||

--- Comment #6 from Kubilay Kocak ko...@freebsd.org ---
Created attachment 151211
  -- https://bugs.freebsd.org/bugzilla/attachment.cgi?id=151211action=edit
Fix SSL verification for ports OpenSSL v2

Patch v2, adds:

- Use @sample for LOCALBASE/etc/ssl and LOCALBASE/openssl symlinks
- Add LICENSE (MPL)
- Add pkg-message to SUB_LIST and variable'ise PREFIX
- Tweak pkg-message

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
___
freebsd-gecko@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-gecko
To unsubscribe, send any mail to freebsd-gecko-unsubscr...@freebsd.org


[Bug 196431] security/ca_root_nss: Fix broken SSL verification for software (and Python) using OpenSSL from ports

2015-01-02 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196431
Bug 196431 depends on bug 196432, which changed state.

Bug 196432 Summary: Allow @sample keyword reference a symlink
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196432

   What|Removed |Added

 Status|New |Closed
 Resolution|--- |Works As Intended

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
___
freebsd-gecko@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-gecko
To unsubscribe, send any mail to freebsd-gecko-unsubscr...@freebsd.org


[Bug 196431] security/ca_root_nss: Fix broken SSL verification for software (and Python) using OpenSSL from ports

2015-01-02 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196431

Antoine Brodin anto...@freebsd.org changed:

   What|Removed |Added

 Depends on|196432  |

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
freebsd-gecko@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-gecko
To unsubscribe, send any mail to freebsd-gecko-unsubscr...@freebsd.org


[Bug 196431] security/ca_root_nss: Fix broken SSL verification for software (and Python) using OpenSSL from ports

2015-01-02 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196431

Kubilay Kocak ko...@freebsd.org changed:

   What|Removed |Added

 Depends on|196432  |

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
freebsd-gecko@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-gecko
To unsubscribe, send any mail to freebsd-gecko-unsubscr...@freebsd.org


[Bug 196431] security/ca_root_nss: Fix broken SSL verification for software (and Python) using OpenSSL from ports

2015-01-02 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196431

Roller possnfif...@snowboard.com changed:

   What|Removed |Added

 CC||possnfif...@snowboard.com

--- Comment #7 from Roller possnfif...@snowboard.com ---
+1

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
freebsd-gecko@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-gecko
To unsubscribe, send any mail to freebsd-gecko-unsubscr...@freebsd.org