Monday, October 14, 2024

Mozilla Firefox Version 131.0.3 Released with Updates

   Mozilla sent Firefox Version 131.0.3 to the Release Channel.

Fixed

  • Fixed an issue where some users could not access the Bill Pay portion of their bank's site. (Bug 1923500).
  • Fixed an issue where some VR180 and 360 videos were not properly rendering on YouTube. (Bug 1922278).
  • Fixed a crash that Windows users with Avast or AVG security software were experiencing when visiting certain sites. (Bug 1919678).
  • Fixed an issue where the "List all tabs" button was not able to be moved from the toolbar. (Bug 1918681).

Update: To get the update now, select "Help" from the Firefox menu, then pick "About Firefox".  Mac users need to select "About Firefox" from the Firefox menu.  For non-English versions, Fully Localized Versions are available for download.

Release Notes


Remember - "A day without laughter is a day wasted."
May the wind sing to you and the sun rise in your heart...

Wednesday, October 09, 2024

Pale Moon Version 33.4.0.1 Released

  Pale MoonPale Moon has been updated to version 33.4.0.1.  This is a small update to address two important issues.

Changes/fixes:

  • Extension compatibility issues with the ghostbuster (leading to tab handling problems).
  • Windows 7 compatibility issues in 32-bit builds on some systems (leading to application UI paint failures/black window).

Pale Moon includes both 32- and 64-bit versions for Windows: Pale Moon for Windows downloads.

Update: To get the update now, select "Help" from the Pale Moon menu at the upper left of the browser window.  Select About Pale Moon > Check for Updates.

Release Notes
Release Cycle

Home
Remember - "A day without laughter is a day wasted."
May the wind sing to you and the sun rise in your heart...

Mozilla Firefox Version 131.0.2 Released with a Critical Security Update

 FirefoxMozilla sent Firefox Version 131.0.2 to the release channel.  Firefox ESR versions were updated to ESR 128.3.1 and ESR 115.16.1.

The update includes one (1) critical security update. The update is critical due to an attacker achieving code execution in the content process by exploiting a use-after-free in Animation timelines. There are reports of this vulnerability being exploited in the wild. 

Critical

#CVE-2024-9680: Use-after-free in Animation timeline

Update: To get the update now, select "Help" from the Firefox menu, then pick "About Firefox."  Mac users need to select "About Firefox" from the Firefox menu. If you do not use the English language version, Fully Localized Versions are available for download.

References


Remember - "A day without laughter is a day wasted."
May the wind sing to you and the sun rise in your heart...

Tuesday, October 08, 2024

Microsoft October 2024 Security Updates

 

The Microsoft September 2024 security updates have been released and consist of 117 new patches to Microsoft products.


Of the Microsoft CVEs released, 3 are rated critical, 115 important, and 2 moderate in security. At the time of release, five of the CVEs is listed as being publicly known and two are listed as under active attack.

The security updates apply to the following products, features and roles: Windows and Windows Components; Office and Office Components; Azure; .NET and Visual Studio; OpenSSH for Windows; Power BI; Windows Hyper-V; and Windows Mobile Broadband.

See the list of KBs at the bottom of the page at October 2024 Security Updates - Release Notes - Security Update Guide - Microsoft for information regarding known issues with the security updates as well as the CVEs with FAQs, Mitigations and/or Workarounds. For specific information on Windows 11, Version 24H2 see KB5044284, Version 21H2, see KB5044280.  For Windows 10, Versions 22H2 and 21H2, see KB5043273 (OS Builds 19044.4894 and 19045.4894).

Recommended Reading:   See Dustin Childs review and analysis in Zero Day Initiative -- The September 2024 Security Update Review.

Additional Update Notes:


 

References




Remember - "A day without laughter is a day wasted."
May the wind sing to you and the sun rise in your heart...

Pale Moon Version 33.4.0 Released with Security Updates

  Pale Moon Pale Moon has been updated to version 33.4.0.  This is a development and security update.  

Changes/fixes:

  • Introduced the "ghostbuster" concept; this is an automated internal mechanism to attempt cleanup of particularly problematic web content after a tab or window is closed. See implementation notes.
  • Added support for the PROT_MPROTECT security feature on targets that use it (notably PaX and NetBSD).
  • Implemented preferences to give the user control over the Same-Origin Policy (SOP) and CORS preflight. See implementation notes.
  • Improved buildability on NetBSD and Altivec architectures.
  • Fixed building issues on Apple Silicon Mac with XCode 16.
  • Added workarounds for non-standard MSE/WebM/VPx encoding on YouTube that could cause video buffering and halting issues.
  • Dev: Changed the default credentials mode for module scripts from 'omit' to 'same-origin', aligning with mainstream.
  • Dev: Implemented getTransform and setTransform with DOMMatrix arguments.
  • Dev: Implemented ES2023 Hashbang grammar proposal.
  • Fixed an issue with JavaScript's StructuredClone.
  • Security issues addressed: CVE-2024-9396.
  • Rejected: CVE-2024-9398 (properly informing the user about attempts to use unhandled protocols by web pages is considered more important than potential determination whether a handler for such a protocol is installed)

Implementation notes:

  • When very complex "modern" websites get closed by the user, it is possible that the browser is unable to properly release all the resources attached to it, especially those resources, modules and scripts that were part of Shadow DOM or complex interlinked module scripts. This can then result in "detached" web content and scripts that continue to use memory, have active event listeners and loaded scripts. Mainstream browsers are less affected by this as their multi-process setups will effectively "throw the baby out with the bath water" by simply killing the relevant content process. Since we don't have that luxury of a lazy solution to an architectural problem, we need to handle these so-called "ghost windows" resulting from this problem internally without restarting the browser process. This version of Pale Moon introduces the "ghostbuster" concept to try and address this: an automated, internal mechanism that periodically checks for the existence of ghost windows and severs links of them, so that garbage/cycle collection can come in afterwards and release the resources, hopefully preventing browser slowdowns and inflated memory usage over time. If this, for some reason, causes issues for you, you can disable the ghostbuster by setting the preference browser.ghostbuster.enabled to false. Also please report (in detail) on the forum about the issue you're having if flipping this preference to false resolves it, so we can look into improving this new feature.
  • By user request, primarily for advanced power users who need this for their local setups, 2 new preferences were introduced to control how the browser deals with same-origin and CORS.
    • security.same_origin_policy.enabled, when set to false, will completely disable checking if scripts are allowed to be loaded based on the same-origin policy. Security warning: this is a really bad idea on the open web and you should never blanket disable the Same-Origin Policy check in a web browser for normal use.
    • content.cors.bypass_preflight_request, when set to true, will no longer send CORS preflight requests or check preflight responses and always allow cross-origin requests. Note that this kind of request is normally only made if sending a request to a server might result in data changes server-side (e.g. POST). This preference only does something when CORS is already disabled; provided primarily for specific corner cases where CORS is disabled and preflight checks (providing an extra safety net for server data) need to be shut off too.
    There are dragons hiding in these two preferences. Please handle them responsibly.

*DiD: This means that a fix is "Defense-in-Depth": It is a fix that does not apply to a (potentially) actively exploitable vulnerability in Pale Moon, but prevents future vulnerabilities caused by the same code, e.g. when surrounding code changes, exposing the problem, or when new attack vectors are discovered.

**Rejected security patches: This means that patches were theoretically applicable to our code but considered undesirable, which could be due to unwanted changes in behavior, known regressions caused by the patches, or unnecessary risks for stability, security or privacy.

Pale Moon includes both 32- and 64-bit versions for Windows: Pale Moon for Windows downloads.

Update: To get the update now, select "Help" from the Pale Moon menu at the upper left of the browser window.  Select About Pale Moon > Check for Updates.

Release Notes
Release Cycle


Remember - "A day without laughter is a day wasted."

Friday, October 04, 2024

Adobe Acrobat/Reader Update

 

Adobe
Adobe is releasing an update with new features and bug fixes for Acrobat and Reader. 

Update or Complete Download

Adobe Acrobat and Reader were updated to version 24.003.20180.  Updates should become available via the internal updater or checks can be manually activated by choosing Help/Check for Updates.  

Reader DC and other versions are available here: https://get.adobe.com/reader/

Note: UNcheck any pre-checked additional options presented with the update. They are not part of the software update and are completely optional.

Release Notes

Home
Remember - "A day without laughter is a day wasted."
May the wind sing to you and the sun rise in your heart...

Tuesday, October 01, 2024

Windows 11 Version 24H2 Is Beginning to Roll Out!

 Starting today, the 10th Anniversary of the Windows Insider Program, Windows 11 Version 24H2 is being released.  

It will be a phased release starting with eligible devices running Windows 11, version 22H2 and 23H2 for those who have previously opted in to be amongst the first to experience new enhancements.  Eligible Windows 11 22H2 and 23H2 devices require the May 2024 non-security preview update and a full operating system.

For those anxious to get the update, refer to the instructions at Get Windows updates as soon as they're available for your device.

The full announcement by John Cable, Vice President, Program Management, Windows Servicing and Delivery, is available at How to get new experiences for Windows 11 and includes information on new features in Version 24H2.


Remember - "A day without laughter is a day wasted."
May the wind sing to you and the sun rise in your heart...

Mozilla Firefox Version 131.0 Released with Security Updates

 FirefoxMozilla sent Firefox Version 131.0 to the release channel.  Firefox ESR was updated to Version 115.16.0.

The update includes nine security updates of which seven (4) are rated high, three (3) are rated moderate, and three (3) are rated low.

High

#CVE-2024-9391: Prevent users from exiting full-screen mode in Firefox Focus for Android
#CVE-2024-9392: Compromised content process can bypass site isolation
#CVE-2024-9393: Cross-origin access to PDF contents through multipart responses
#CVE-2024-9394: Cross-origin access to JSON contents through multipart responses
#CVE-2024-9401: Memory safety bugs fixed in Firefox 131, Firefox ESR 115.16, Firefox ESR 128.3, Thunderbird 131, and Thunderbird 128.3
#CVE-2024-9402: Memory safety bugs fixed in Firefox 131, Firefox ESR 128.3, Thunderbird 131, and Thunderbird 128.3
#CVE-2024-9403: Memory safety bugs fixed in Firefox 131 and Thunderbird 131

Moderate

#CVE-2024-9395: Specially crafted filename could be used to obscure download type
#CVE-2024-9396: Potential memory corruption may occur when cloning certain objects
#CVE-2024-9397: Potential directory upload bypass via clickjacking

Low

#CVE-2024-9398: External protocol handlers could be enumerated via popups
#CVE-2024-9399: Specially crafted WebTransport requests could lead to denial of service
#CVE-2024-9400: Potential memory corruption during JIT compilation

New

  • Firefox will now offer to temporarily remember when users grant permissions to sites (e.g. geolocation). Temporary permissions will be removed either after one hour or when the tab is closed.
  • A tab preview is now displayed when hovering the mouse over background tabs, making it easier to locate the desired tab without needing to switch tabs.
  • When suggesting a default translation language, Firefox will now take into consideration languages you have previously used for translations.
  • We’ve re-introduced the ability to navigate to the search engine home page when the search bar is empty by using shift-enter/shift-click
    Fixed:
    • Fixed an issue where Copy and Paste context menu items intermittently were not enabled when expected.
    Changed:

    • The following language is now supported by Firefox translation: Swedish
    • The Tab overview (List all tabs) menu has received a new, refreshed icon.


    Update: To get the update now, select "Help" from the Firefox menu, then pick "About Firefox."  Mac users need to select "About Firefox" from the Firefox menu. If you do not use the English language version, Fully Localized Versions are available for download.

    References


    Remember - "A day without laughter is a day wasted."
    May the wind sing to you and the sun rise in your heart...