Hírolvasó
Rustproofing Linux (nccgroup)
In other words, the CONFIG_INIT_STACK_ALL_ZERO build option does nothing for Rust code! Developers must be cautious to avoid shooting themselves in the foot when porting a driver from C to Rust, especially if they previously relied on this config option to mitigate this class of vulnerability. It seems that kernel info leaks and KASLR bypasses might be here to stay, at least, for a little while longer.
Security updates for Wednesday
QNAP NAS-t használ? Kritikus hibát javítottak, frissítsen!
A QNAP Systems kritikus sebezhetőséget (CVE-2022-27596) javított NAS termékeinek szoftverében, javasolt mielőbb frissíteni a legújabb verzióra.
The post QNAP NAS-t használ? Kritikus hibát javítottak, frissítsen! first appeared on Nemzeti Kibervédelmi Intézet.
LibreSSL 3.5.4 and 3.6.2 released
Hot on the heels of syspatches for OpenBSD 7.1 and 7.2, Brent Cook (bcook@) announced the release of versions 3.5.4 and 3.6.2 of LibreSSL:
We have released LibreSSL 3.5.4 and 3.6.2, which will be arriving in the LibreSSL directory of your local OpenBSD mirror soon.
Dave Airlie (blogspot): vulkan video: status update (anv + radv)
Okay just a short status update.
radv H264/H265 decode:The radv h264/h265 support has been merged to mesa main branch. It is still behind RADV_PERFTEST=video_decode flag, and should work for basics from VI/GFX8+. It still has not passed all the CTS tests.
anv H264 decode:The anv h264 decode support has been merged to mesa main branch. It has been tested from Skylake up to DG2. It has no enable flag, just make sure to build with h264dec video-codec support. It passes all current CTS tests.
hasvk H264 decode:I ported the anv h264 decoder to hasvk the vulkan driver for Ivybridge/Haswell. This in a draft MR (HASVK H264). I haven't given this much testing yet, it has worked in the past. I'll get to testing it before trying to get it merged.
radv AV1 decode:I created an MR for spec discussion (radv av1). I've also cleaned up the radv AV1 decode code.
anv AV1 decode:I've started on anv AV1 decode support for DG2. I've gotten one very simple frame to decode. I will attempt to do more. I think filmgrain is not going to be supported in the short term. I'll fill in more details on this when it's working better. I think there are a few things that might need to be changed in the AV1 decoder provisional spec for Intel, there are some derived values that ffmpeg knows that it would be nice to not derive again, and there are also some hw limits around tiles and command buffers that will need to be figured out.
[$] Fedora packages versus upstream Flatpaks
Security updates for Tuesday
Six new stable kernels
[$] A survey of free CAD systems
Security updates for Monday
VMwre ESXi szerverek elleni tömeges zsarolóvírus támadásokról érkezett figyelmeztetés
Az olasz és francia nemzeti kibervédelmi ügynökségek a hétvége során VMware ESXi szerverek elleni tömeges ransomware támadásokról adtak ki figyelmeztetést.
The post VMwre ESXi szerverek elleni tömeges zsarolóvírus támadásokról érkezett figyelmeztetés first appeared on Nemzeti Kibervédelmi Intézet.
Oracle és SugarCRM sérülékenységek aktív kihasználásáról figyelmeztet a CISA
Újabb kritikus sérülékenységekkel bővült az amerikai kiberbiztonsági ügynökség (Cybersecurity and Infrastructure Security Agency – CISA) által vezetett ismert sérülékenységek listája. Az egyik ilyen aktívan kihasznált sérülékenység a CVE-2022-21587 számon nyomon követett hiba, ami (CVSS pontszám: 9,8) az Oracle E-Business Suite-ot érinti. Ez egy olyan vállalati alkalmazáskészlet, ami lehetővé teszi a szervezetek számára az olyan folyamatok […]
The post Oracle és SugarCRM sérülékenységek aktív kihasználásáról figyelmeztet a CISA first appeared on Nemzeti Kibervédelmi Intézet.
Nyílt forráskódúvá váltak a Dashlane jelszókezelő Android és iOS alkalmazásai
A Dashlane bejelentette, hogy elérhetővé teszi GitHubon, a Creative Commons Attribution-NonCommercial 4.0 licence alatt az Android és iOS alkalmazásainak forráskódját. A népszerű előfizetés-alapú jelszókezelő és digitális pénztárca alkalmazások kínáló cég úgy döntött, hogy kiadja mobilalkalmazásainak forráskódjait, hogy átláthatóbbá tegye működésüket és segítse az együttműködésen alapuló, nyitottabb fejlesztést. A cég elmondása szerint arra törekednek, hogy az […]
The post Nyílt forráskódúvá váltak a Dashlane jelszókezelő Android és iOS alkalmazásai first appeared on Nemzeti Kibervédelmi Intézet.
Kernel prepatch 6.2-rc7
So the 6.2 rc releases are continuing to be fairly small and controlled, to the point where normally I'd just say that this is the last rc. But since I've stated multiple times that I'll do an rc8 due to the holiday start of the release, that's what I'll do.
[$] Constant-time instructions and processor optimizations
Security updates for Friday
The Document Foundation announces LibreOffice 7.5 Community
Other 112 volunteers - representing hundreds of other people providing translations - have committed localizations in 158 languages. LibreOffice 7.5 Community is released in 120 different language versions, more than any other free or proprietary software, and as such can be used in the native language (L1) by over 5.4 billion people worldwide. In addition, over 2.3 billion people speak one of those 120 languages as their second language (L2).
OpenSSH 9.2/9.2p1 released!
As should be of no surprise to undeadly readers, OpenSSH is a 100% complete SSH protocol 2.0 implementation and includes sftp client and server support.
Ekstrand: Exploring Rust for Vulkan drivers, part 1
Whenever a Vulkan object is created or destroyed, the parent object is passed to both the create and destroy functions. This ensures that the lifetime of the child object is contained within the lifetime of the parent object. In Rust terms, this means it's safe for the child object to contain a non-mutable reference to the parent object. Vulkan also defines which entrypoint parameters must be externally synchronized by the client. Externally synchronized objects follow the same rules as mutable references in Rust.