No Image

USN-5260-2: Samba vulnerability

2022-02-01 KENNETH 0

USN-5260-2: Samba vulnerability Orange Tsai discovered that the Samba vfs_fruit module incorrectly handled certain memory operations. A remote attacker could use this issue to cause Samba to crash, resulting in a denial of service, or possibly execute arbitrary code as root. (CVE-2021-44142) Source: USN-5260-2: Samba vulnerability

No Image

USN-5260-1: Samba vulnerabilities

2022-02-01 KENNETH 0

USN-5260-1: Samba vulnerabilities Orange Tsai discovered that the Samba vfs_fruit module incorrectly handled certain memory operations. A remote attacker could use this issue to cause Samba to crash, resulting in a denial of service, or possibly execute arbitrary code as root. (CVE-2021-44142) Michael Hanselmann discovered that Samba incorrectly created directories. In certain configurations, a remote attacker could possibly create a directory on the server outside of the shared directory. (CVE-2021-43566) Kees van Vloten discovered that Samba incorrectly handled certain aliased SPN checks. A remote attacker could possibly use this issue to impersonate services. (CVE-2022-0336) Source: USN-5260-1: Samba vulnerabilities

No Image

Free Microsoft Flight Simulator Australia update takes you sky high Down Under

2022-02-01 KENNETH 0

Free Microsoft Flight Simulator Australia update takes you sky high Down Under Soar over the renowned Great Barrier Reef, visit the vast regions of Western Australia and marvel at the natural beauty of Mount Wellington. Do it all today with World Update VII, now available for free for all Microsoft Flight Simulator players. Just update your simulator, download the update and then enjoy the experience of flight throughout Australian skies. Orbx Simulation Systems, based in Melbourne, Australia, has handcrafted four airports and added high-resolution detail to over 100 others. And there are 16 new activities, including five bush trips, six discovery flights and five landing challenges. Head over to Xbox Wire to find out more. Source: Free Microsoft Flight Simulator Australia update takes you sky high Down Under

No Image

USN-5257-1: ldns vulnerabilities

2022-01-31 KENNETH 0

USN-5257-1: ldns vulnerabilities It was discovered that ldns incorrectly handled certain inputs. An attacker could possibly use this issue to expose sensitive information. (CVE-2020-19860, CVE-2020-19861) Source: USN-5257-1: ldns vulnerabilities

No Image

Making the app single-instanced (Part 3)

2022-01-29 KENNETH 0

Making the app single-instanced (Part 3) Single-instanced apps only allow one instance of the app running at a time. WinUI apps are multi-instanced by default. They allow you to launch multiple instances of the same app at one time, which we call multiple instances. However, you may implement single-instancing based on the use case of your app. Attempting to launch a second instance of a single-instanced app will only result in the first instance’s main window being activated instead. This tutorial demonstrates how to implement single-instancing. By the end of this section, you will be able to: 1. Turn off XAML’s generated Program code 2. Define customized MAIN method for redirection 3. Test single-instancing via app deployment Turn off XAML’s generated Program code We need to check for redirection as early as possible, and before creating any windows. To do [ more… ]