Security
Headlines
HeadlinesLatestCVEs

Headline

CVE-2020-11054: Security: Remember hosts with ignored cert errors for load status · qutebrowser/qutebrowser@19f01bb

In qutebrowser versions less than 1.11.1, reloading a page with certificate errors shows a green URL. After a certificate error was overridden by the user, qutebrowser displays the URL as yellow (colors.statusbar.url.warn.fg). However, when the affected website was subsequently loaded again, the URL was mistakenly displayed as green (colors.statusbar.url.success_https). While the user already has seen a certificate error prompt at this point (or set content.ssl_strict to false, which is not recommended), this could still provide a false sense of security. This has been fixed in 1.11.1 and 1.12.0. All versions of qutebrowser are believed to be affected, though versions before v0.11.x couldn’t be tested. Backported patches for older versions (greater than or equal to 1.4.0 and less than or equal to 1.10.2) are available, but no further releases are planned.

CVE
#web#perl#chrome#ssl

@@ -864,6 +864,13 @@ class AbstractTab(QWidget):

# arg 1: The exit code.

renderer_process_terminated = pyqtSignal(TerminationStatus, int)

# Hosts for which a certificate error happened. Shared between all tabs.

# Note that we remember hosts here, without scheme/port:

# QtWebEngine/Chromium also only remembers hostnames, and certificates are

# for a given hostname anyways.

_insecure_hosts = set() # type: typing.Set[str]

def __init__(self, *, win_id: int, private: bool,

parent: QWidget = None) -> None:

self.is_private = private

@@ -881,7 +888,6 @@ def __init__(self, *, win_id: int, private: bool,

self._layout = miscwidgets.WrapperLayout(self)

self._widget = None # type: typing.Optional[QWidget]

self._progress = 0

self._has_ssl_errors = False

self._load_status = usertypes.LoadStatus.none

self._mouse_event_filter = mouse.MouseEventFilter(

self, parent=self)

@@ -969,7 +975,6 @@ def _on_url_changed(self, url: QUrl) -> None:

@pyqtSlot()

def _on_load_started(self) -> None:

self._progress = 0

self._has_ssl_errors = False

self.data.viewing_source = False

self._set_load_status(usertypes.LoadStatus.loading)

self.load_started.emit()

@@ -1029,9 +1034,12 @@ def _update_load_status(self, ok: bool) -> None:

Needs to be called by subclasses to trigger a load status update, e.g.

as a response to a loadFinished signal.

“"”

if ok and not self._has_ssl_errors:

if ok:

if self.url().scheme() == 'https’:

self._set_load_status(usertypes.LoadStatus.success_https)

if self.url().host() in self._insecure_hosts:

self._set_load_status(usertypes.LoadStatus.warn)

else:

self._set_load_status(usertypes.LoadStatus.success_https)

else:

self._set_load_status(usertypes.LoadStatus.success)

elif ok:

CVE: Latest News

CVE-2023-50976: Transactions API Authorization by oleiman · Pull Request #14969 · redpanda-data/redpanda
CVE-2023-6905
CVE-2023-6903
CVE-2023-6904
CVE-2023-3907