<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Linux Malware &#8211; First Hackers News</title>
	<atom:link href="https://firsthackersnews.com/category/malware/linux-malware/feed/" rel="self" type="application/rss+xml" />
	<link>https://firsthackersnews.com</link>
	<description>Latest cybersecurity news, real attacks, and practical IOCs—made simple and actionable.</description>
	<lastBuildDate>Fri, 18 Sep 2026 22:31:34 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.8</generator>

<image>
	<url>https://firsthackersnews.com/wp-content/uploads/2026/03/cropped-FHN_512x512-32x32.png</url>
	<title>Linux Malware &#8211; First Hackers News</title>
	<link>https://firsthackersnews.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Four Linux Kernel Flaws Could Enable Root Access</title>
		<link>https://firsthackersnews.com/linux-kernel-flaws-root-access/</link>
					<comments>https://firsthackersnews.com/linux-kernel-flaws-root-access/#respond</comments>
		
		<dc:creator><![CDATA[FHN]]></dc:creator>
		<pubDate>Fri, 18 Sep 2026 12:31:00 +0000</pubDate>
				<category><![CDATA[Cybersecurity News]]></category>
		<category><![CDATA[Linux Malware]]></category>
		<category><![CDATA[Malware]]></category>
		<category><![CDATA[Secuirty Update]]></category>
		<category><![CDATA[Security Advisory]]></category>
		<category><![CDATA[vulnerability]]></category>
		<category><![CDATA[CVE]]></category>
		<category><![CDATA[cybersecurity]]></category>
		<category><![CDATA[kernel security]]></category>
		<category><![CDATA[linux kernel]]></category>
		<category><![CDATA[Linux security]]></category>
		<category><![CDATA[privilege escalation]]></category>
		<category><![CDATA[root access]]></category>
		<category><![CDATA[security update]]></category>
		<category><![CDATA[threat research]]></category>
		<category><![CDATA[vulnerabilities]]></category>
		<guid isPermaLink="false">https://firsthackersnews.com/?p=12416</guid>

					<description><![CDATA[<p>Four recently disclosed vulnerabilities in the Linux kernel could allow local attackers to corrupt kernel memory and potentially</p>
<p>The post <a rel="nofollow" href="https://firsthackersnews.com/linux-kernel-flaws-root-access/">Four Linux Kernel Flaws Could Enable Root Access</a> appeared first on <a rel="nofollow" href="https://firsthackersnews.com">First Hackers News</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Four recently disclosed vulnerabilities in the Linux kernel could allow local attackers to corrupt kernel memory and potentially gain root-level privileges on vulnerable systems.</p>



<p>The flaws affect several networking components that have been part of the Linux kernel for years. They are known as <strong>DirtyAH6, TUNderflow, PPPoEject, and DiagSpill</strong> and are tracked as:</p>



<ul class="wp-block-list">
<li><strong>CVE-2026-80844 — DirtyAH6</strong></li>



<li><strong>CVE-2026-81000 — TUNderflow</strong></li>



<li><strong>CVE-2026-68121 — PPPoEject</strong></li>



<li><strong>CVE-2026-74469 — DiagSpill</strong></li>
</ul>



<p>Upstream fixes are now available for the affected kernel code.</p>



<h2 class="wp-block-heading"><strong>DirtyAH6: IPv6 Memory Handling Bug</strong></h2>



<p>DirtyAH6 affects Linux IPsec/XFRM code responsible for processing IPv6 Authentication Headers.</p>



<p>The problem occurs when specially crafted IPv6 routing-header values are processed without properly checking the <code>segments_left</code> field. This can cause the kernel to use an invalid memory location and perform an out-of-bounds operation.</p>



<p>The main concern is <strong>local privilege escalation</strong>, particularly on systems where an attacker can create or control network namespaces.</p>



<p>In certain configurations, IPv6 routers or gateways using Authentication Header transport mode could also face a denial-of-service condition.</p>



<p>Researchers demonstrated root access in a controlled laboratory environment, although carrying out the same technique remotely was described as difficult.</p>



<h2 class="wp-block-heading"><strong>TUNderflow Targets Virtual Networking</strong></h2>



<p>TUNderflow affects the Linux <strong>TUN/TAP virtual networking subsystem</strong>.</p>



<p>A local attacker can potentially provide unusually large receive-headroom values through certain network-device configurations, including paths involving Open vSwitch.</p>



<p>This can trigger an integer underflow while the kernel allocates a socket buffer. As a result, packet data may be placed outside the expected memory area, creating opportunities for out-of-bounds reads and writes.</p>



<h2 class="wp-block-heading"><strong>PPPoEject Creates a Use-After-Free</strong></h2>



<p>PPPoEject affects Linux&#8217;s PPP-over-Ethernet implementation.</p>



<p>The vulnerability occurs because <code>pppoe_sendmsg()</code> can retain a pointer to a PPPoE header while another function modifies the underlying socket buffer.</p>



<p>If that buffer is reallocated, the original pointer becomes invalid. Subsequent operations using the stale pointer can then modify memory that has already been freed.</p>



<p>The upstream fix addresses the issue by retrieving the header pointer again after the device-header operation completes.</p>



<h2 class="wp-block-heading"><strong>DiagSpill Can Corrupt Kernel Memory</strong></h2>



<p>DiagSpill affects SCTP diagnostic processing through <code>sock_diag</code>.</p>



<p>The vulnerability is related to a mismatch between the maximum number of SCTP peer transports and the size of the counter used to track them.</p>



<p>When the counter reaches its limit, it can wrap around to zero. The kernel may then allocate too little space before copying peer information, potentially causing data to be written beyond the allocated Netlink response buffer.</p>



<p>Unlike the other three vulnerabilities, DiagSpill does not require unprivileged user namespaces or special capabilities when SCTP and <code>sctp_diag</code> are enabled.</p>



<p>Remote crash scenarios may also be possible when certain SCTP address-configuration features are active, although those features are disabled by default.</p>



<h2 class="wp-block-heading"><strong>Linux Kernel Updates Available</strong></h2>



<p>The vulnerabilities were reported to the Linux kernel security team in July, and fixes have now been released through the coordinated disclosure process.</p>



<p>The stable kernel releases containing fixes for all four vulnerabilities include:</p>



<ul class="wp-block-list">
<li>Linux 5.10.270</li>



<li>Linux 5.15.221</li>



<li>Linux 6.1.188</li>



<li>Linux 6.6.157</li>



<li>Linux 6.12.109</li>



<li>Linux 6.18.50</li>



<li>Linux 7.2.4</li>
</ul>



<p>Administrators should update affected systems to a kernel version containing the fixes.</p>



<p>If an immediate update is not possible, organizations can reduce exposure by restricting unprivileged user namespaces and disabling networking features that are not required, such as AH6, TUN/TAP, PPPoE, SCTP, or <code>sctp_diag</code>.</p>



<p>These workarounds provide only partial protection. In particular, disabling user namespaces does <strong>not</strong> prevent DiagSpill, so applying the appropriate kernel security updates remains the primary mitigation.</p>
<p>The post <a rel="nofollow" href="https://firsthackersnews.com/linux-kernel-flaws-root-access/">Four Linux Kernel Flaws Could Enable Root Access</a> appeared first on <a rel="nofollow" href="https://firsthackersnews.com">First Hackers News</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://firsthackersnews.com/linux-kernel-flaws-root-access/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Tengu Linux Botnet Hides as System Process</title>
		<link>https://firsthackersnews.com/tengu-linux-botnet/</link>
					<comments>https://firsthackersnews.com/tengu-linux-botnet/#respond</comments>
		
		<dc:creator><![CDATA[FHN]]></dc:creator>
		<pubDate>Mon, 07 Sep 2026 16:36:20 +0000</pubDate>
				<category><![CDATA[Application Security]]></category>
		<category><![CDATA[BOTNET]]></category>
		<category><![CDATA[Cybersecurity]]></category>
		<category><![CDATA[Cybersecurity News]]></category>
		<category><![CDATA[Linux Malware]]></category>
		<category><![CDATA[Secuirty Update]]></category>
		<category><![CDATA[Security Advisory]]></category>
		<category><![CDATA[Botnet]]></category>
		<category><![CDATA[cyber threats]]></category>
		<category><![CDATA[cybersecurity]]></category>
		<category><![CDATA[ddos]]></category>
		<category><![CDATA[Information security]]></category>
		<category><![CDATA[IoT Security]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Linux security]]></category>
		<category><![CDATA[Malware]]></category>
		<category><![CDATA[Tengu]]></category>
		<guid isPermaLink="false">https://firsthackersnews.com/?p=12317</guid>

					<description><![CDATA[<p>A new Linux-based bot called Tengu is attracting attention because of the way it hides on infected machines</p>
<p>The post <a rel="nofollow" href="https://firsthackersnews.com/tengu-linux-botnet/">Tengu Linux Botnet Hides as System Process</a> appeared first on <a rel="nofollow" href="https://firsthackersnews.com">First Hackers News</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>A new Linux-based bot called <strong>Tengu</strong> is attracting attention because of the way it hides on infected machines and uses them to generate different types of network attacks.</p>



<p>The malware can disguise itself as a normal Linux kernel process, remain active after a reboot, and communicate with attackers through a hidden control endpoint.</p>



<p>Researchers say the malware appears designed for <strong>servers, embedded Linux devices, and IoT-related systems</strong>. Its exact method of getting onto vulnerable devices is still unknown.</p>



<h2 class="wp-block-heading"><strong>Built to Stay Out of Sight</strong></h2>



<p>Tengu does more than simply run in the background. It takes several steps to make detection and removal more difficult.</p>



<p>The malware can:</p>



<ul class="wp-block-list">
<li>Rename itself to look like a Linux kernel worker.</li>



<li>Reduce the chance of being terminated when the system runs low on memory.</li>



<li>Hide normal output while running.</li>



<li>Continue operating even after its original executable is removed.</li>



<li>Create multiple methods to start automatically after a reboot.</li>
</ul>



<p>Researchers observed persistence through <strong>systemd, SysV startup scripts, OpenWrt scripts, scheduled tasks, and local startup files</strong>.</p>



<p>Using several persistence methods allows the malware to survive across different Linux environments.</p>



<h2 class="wp-block-heading"><strong>More Than Just a DDoS Bot</strong></h2>



<p>Tengu includes several capabilities that can be used together during an attack.</p>



<p>It can generate different types of network traffic, including <strong>UDP floods, HTTP requests, and SSH connection activity</strong>. It also supports proxy functionality, allowing compromised machines to act as traffic relays.</p>



<p>The malware can gather basic information about the infected system and network before communicating with its operators.</p>



<p>Its HTTP functionality supports common request methods such as GET, POST, and HEAD, while randomized forwarding headers can make the generated traffic less predictable.</p>



<p>This combination gives attackers more flexibility than a basic DDoS-only malware.</p>



<h2 class="wp-block-heading"><strong>Multiple Ways to Flood a Target</strong></h2>



<p>Tengu&#8217;s UDP attack functionality includes two approaches.</p>



<p>One can create raw IPv4 packets with controlled network-header information, while another uses standard datagram sockets. Having both options allows the malware to continue generating traffic even when raw network access is restricted.</p>



<p>The malware also includes SSH-related activity that performs connection and handshake operations. Researchers did not find evidence that this capability is being used to exploit SSH authentication.</p>



<p>The larger concern is the variety of attack methods available from a single infected device.</p>



<h2 class="wp-block-heading"><strong>Why Linux and IoT Devices Are at Risk</strong></h2>



<p>Linux servers and internet-connected devices are attractive targets for botnet operators because many remain exposed to the internet and may not receive regular security maintenance.</p>



<p>Once compromised, a device that appears to be operating normally could quietly become part of a larger attack infrastructure.</p>



<p>Tengu&#8217;s ability to hide its process, establish persistence, and support multiple traffic-generation methods makes these infections particularly difficult to spot through basic monitoring.</p>



<h2 class="wp-block-heading"><strong>What Security Teams Should Watch For</strong></h2>



<p>Organizations managing Linux servers, embedded systems, or IoT devices should look for unusual behavior rather than relying only on malware signatures.</p>



<p>Important warning signs include:</p>



<ul class="wp-block-list">
<li>A suspicious process pretending to be a kernel worker.</li>



<li>Unexpected changes to memory-management settings.</li>



<li>New systemd services or startup scripts.</li>



<li>Unknown scheduled tasks.</li>



<li>Unusual UDP traffic or large traffic bursts.</li>



<li>Unexpected SSH connection activity.</li>



<li>HTTP traffic containing unusual forwarding headers.</li>



<li>Connections to unknown command-and-control infrastructure.</li>
</ul>



<p>If a device is suspected of being compromised, it should be isolated and investigated before removing suspicious files or persistence mechanisms.</p>



<p>Tengu highlights how Linux-based botnets continue to evolve beyond simple DDoS functionality.</p>



<p>By combining <strong>stealth, persistence, proxy capabilities, and multiple attack methods</strong>, the malware can turn an ordinary Linux or IoT device into a remotely controlled attack platform.</p>



<p>Keeping internet-facing systems patched, removing unnecessary services, restricting remote access, and continuously monitoring network behavior can significantly reduce the chance of devices becoming part of the next botnet.</p>



<h2 class="wp-block-heading"><strong>IoCs</strong></h2>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th class="has-text-align-left" data-align="left">Type</th><th class="has-text-align-left" data-align="left">Indicator</th><th class="has-text-align-left" data-align="left">Description</th></tr></thead><tbody><tr><td>File name</td><td><code>tengu_sample</code></td><td>Name assigned to the analyzed Linux ELF sample</td></tr><tr><td>IPv4 address</td><td><code>64[.]89[.]163[.]8</code></td><td>Decoded command-and-control endpoint address</td></tr><tr><td>TCP port</td><td><code>9931</code></td><td>Port paired with the recovered command-and-control address</td></tr><tr><td>Process name</td><td><code>[kworker/%d:%d]</code></td><td>Kernel-worker-style process-name format used for masquerading</td></tr><tr><td>Init path</td><td><code>/etc/init.d/tengu</code></td><td>Tengu-linked startup artifact</td></tr><tr><td>PID file</td><td><code>/tmp/.proxy.pid</code></td><td>File associated with the malware’s proxy capability</td></tr><tr><td>Systemd description</td><td><code>System Helper Service</code></td><td>Description used in the created systemd service template</td></tr><tr><td>MD5</td><td><code>3a1069cd649e22b87cbccf0c36b69f4b</code></td><td>MD5 hash of the analyzed sample</td></tr><tr><td>SHA-1</td><td><code>097522a52986982b9eefc29f95efdd9d3b6032e7</code></td><td>SHA-1 hash of the analyzed sample</td></tr><tr><td>SHA-256</td><td><code>897226af37990fa60f25fea00b0509faa0e78d8bee10875c23b9b6ab0b8faed9</code></td><td>SHA-256 hash of the analyzed sample</td></tr></tbody></table></figure>
<p>The post <a rel="nofollow" href="https://firsthackersnews.com/tengu-linux-botnet/">Tengu Linux Botnet Hides as System Process</a> appeared first on <a rel="nofollow" href="https://firsthackersnews.com">First Hackers News</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://firsthackersnews.com/tengu-linux-botnet/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Critical Linux Kernel Flaw Grants Root Access</title>
		<link>https://firsthackersnews.com/critical-linux-kernel-flaw-root-access/</link>
					<comments>https://firsthackersnews.com/critical-linux-kernel-flaw-root-access/#respond</comments>
		
		<dc:creator><![CDATA[FHN]]></dc:creator>
		<pubDate>Fri, 07 Aug 2026 13:33:00 +0000</pubDate>
				<category><![CDATA[Cyber threat]]></category>
		<category><![CDATA[Cybersecurity]]></category>
		<category><![CDATA[Linux Malware]]></category>
		<category><![CDATA[malicious cyber actors]]></category>
		<category><![CDATA[Threat Intelligence]]></category>
		<category><![CDATA[Container Escape]]></category>
		<category><![CDATA[Container Security]]></category>
		<category><![CDATA[CVE-2026-64564]]></category>
		<category><![CDATA[cybersecurity]]></category>
		<category><![CDATA[Information security]]></category>
		<category><![CDATA[kernel vulnerability]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[linux kernel]]></category>
		<category><![CDATA[Linux security]]></category>
		<category><![CDATA[privilege escalation]]></category>
		<category><![CDATA[root access]]></category>
		<category><![CDATA[SCTPhantom]]></category>
		<category><![CDATA[security update]]></category>
		<category><![CDATA[Vulnerability Management]]></category>
		<guid isPermaLink="false">https://firsthackersnews.com/?p=12145</guid>

					<description><![CDATA[<p>A newly discovered Linux kernel vulnerability, tracked as CVE-2026-64564 and named SCTPhantom, could allow attackers with local access</p>
<p>The post <a rel="nofollow" href="https://firsthackersnews.com/critical-linux-kernel-flaw-root-access/">Critical Linux Kernel Flaw Grants Root Access</a> appeared first on <a rel="nofollow" href="https://firsthackersnews.com">First Hackers News</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>A newly discovered Linux kernel vulnerability, tracked as <strong>CVE-2026-64564</strong> and named <strong>SCTPhantom</strong>, could allow attackers with local access to gain full root privileges. Security researchers also demonstrated that the flaw can be used to escape containers and compromise the underlying host system, making it a serious risk for Linux environments.</p>



<p>The vulnerability affects the <strong>Stream Control Transmission Protocol (SCTP)</strong> component of the Linux kernel. Surprisingly, the underlying flaw has existed since <strong>Linux 2.6.25</strong>, released in <strong>2007</strong>, meaning it remained undiscovered for nearly 18 years.</p>



<h2 class="wp-block-heading"><strong>How the Vulnerability Works</strong></h2>



<p>The issue is caused by a <strong>use-after-free</strong> memory bug in SCTP&#8217;s <strong>Dynamic Address Reconfiguration (ASCONF)</strong> feature.</p>



<p>By sending specially crafted SCTP packets in a specific sequence, an attacker can trick the kernel into freeing an object while it is still being referenced. When the kernel later tries to access that memory, it creates a use-after-free condition that can be exploited.</p>



<p>This flaw allows attackers to manipulate kernel memory and eventually execute privileged operations.</p>



<h2 class="wp-block-heading"><strong>Privilege Escalation to Root</strong></h2>



<p>Researchers from TencentOS Security Team developed a working exploit that successfully turns the vulnerability into a full privilege-escalation attack.</p>



<p>Their exploit leaks kernel memory addresses, bypasses security protections such as <strong>Kernel Address Space Layout Randomization (KASLR)</strong>, and creates fake kernel objects to obtain root privileges.</p>



<p>Notably, the attack does not rely on shellcode or traditional Return-Oriented Programming (ROP) techniques, making it more difficult for some security solutions to detect.</p>



<h2 class="wp-block-heading"><strong>Container Escape Demonstrated</strong></h2>



<p>Researchers also proved that the vulnerability can be used to escape Linux containers.</p>



<p>Instead of requiring elevated system privileges, the exploit uses standard SCTP socket options available within containers. Once exploited, attackers can break out of the container environment and execute code on the underlying host.</p>



<p>This makes the vulnerability particularly concerning for organizations running containerized workloads or multi-tenant environments.</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p><strong>&#x200d;Follow Us on:<strong><a href="https://www.linkedin.com/in/firsthackers-news/" target="_blank" rel="noopener">Linkedin</a>,<a href="https://www.instagram.com/firsthackersnews/" target="_blank" rel="noreferrer noopener"> Instagram</a>, <a href="https://www.facebook.com/FirsthackerNews" target="_blank" rel="noreferrer noopener">Facebook</a></strong> to get the latest security news!</strong></p>
</blockquote>



<h2 class="wp-block-heading"><strong>Affected Systems</strong></h2>



<p>The exploit was successfully tested on several Linux distributions, including:</p>



<ul class="wp-block-list">
<li>Ubuntu 24.04</li>



<li>Debian 13</li>



<li>Rocky Linux 9</li>



<li>Multiple Linux kernel versions from 5.14 through recent 7.x release candidates</li>
</ul>



<p>The researchers achieved root access on every tested environment.</p>



<h2 class="wp-block-heading"><strong>Severity and Impact</strong></h2>



<p>CVE-2026-64564 has received a <strong>CVSS v4.0 score of 8.5 (High)</strong>.</p>



<p>If exploited successfully, attackers could:</p>



<ul class="wp-block-list">
<li>Gain full root privileges</li>



<li>Escape container environments</li>



<li>Compromise the underlying host</li>



<li>Access sensitive data</li>



<li>Modify system configurations</li>



<li>Completely take control of affected Linux systems</li>
</ul>



<h2 class="wp-block-heading"><strong>Security Updates Available</strong></h2>



<p>The Linux kernel maintainers have released patches to address the vulnerability.</p>



<p>Fixes are available in the following kernel versions:</p>



<ul class="wp-block-list">
<li>6.6.148</li>



<li>6.12.101</li>



<li>6.18.42</li>



<li>7.1.6</li>
</ul>



<p>The vulnerability was officially disclosed on <strong>August 4, 2026</strong>, following responsible disclosure to the Linux kernel security team.</p>



<h2 class="wp-block-heading"><strong>How Organizations Can Protect Their Systems</strong></h2>



<p>Organizations running Linux servers should prioritize applying the latest kernel updates, especially if SCTP is enabled.</p>



<p>Security teams should also:</p>



<ul class="wp-block-list">
<li>Apply the latest patched kernel versions.</li>



<li>Monitor systems for unusual privilege-escalation attempts.</li>



<li>Limit local user access wherever possible.</li>



<li>Regularly review container security configurations.</li>



<li>Monitor kernel and authentication logs for suspicious activity.</li>
</ul>



<h2 class="wp-block-heading"><strong>Conclusion</strong></h2>



<p>The discovery of <strong>SCTPhantom (CVE-2026-64564)</strong> highlights how critical vulnerabilities can remain hidden in widely used software for many years. With the ability to gain root access and escape containers, this flaw presents a significant security risk for Linux environments.</p>



<p>Organizations should update affected systems as soon as possible and strengthen monitoring to reduce the risk of exploitation.</p>
<p>The post <a rel="nofollow" href="https://firsthackersnews.com/critical-linux-kernel-flaw-root-access/">Critical Linux Kernel Flaw Grants Root Access</a> appeared first on <a rel="nofollow" href="https://firsthackersnews.com">First Hackers News</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://firsthackersnews.com/critical-linux-kernel-flaw-root-access/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Critical RefluXFS Flaw Threatens Linux Systems</title>
		<link>https://firsthackersnews.com/refluxfs-linux-vulnerability/</link>
					<comments>https://firsthackersnews.com/refluxfs-linux-vulnerability/#respond</comments>
		
		<dc:creator><![CDATA[FHN]]></dc:creator>
		<pubDate>Wed, 22 Jul 2026 21:18:24 +0000</pubDate>
				<category><![CDATA[Application Security]]></category>
		<category><![CDATA[Cyber threat]]></category>
		<category><![CDATA[Cybercriminals]]></category>
		<category><![CDATA[Cybersecurity]]></category>
		<category><![CDATA[Linux Malware]]></category>
		<category><![CDATA[malicious cyber actors]]></category>
		<category><![CDATA[Malware]]></category>
		<category><![CDATA[Security Advisory]]></category>
		<category><![CDATA[Security Update]]></category>
		<guid isPermaLink="false">https://firsthackersnews.com/?p=12062</guid>

					<description><![CDATA[<p>A newly discovered Linux vulnerability, called RefluXFS (CVE-2026-64600), could allow a local user to gain root access by</p>
<p>The post <a rel="nofollow" href="https://firsthackersnews.com/refluxfs-linux-vulnerability/">Critical RefluXFS Flaw Threatens Linux Systems</a> appeared first on <a rel="nofollow" href="https://firsthackersnews.com">First Hackers News</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>A newly discovered Linux vulnerability, called <strong>RefluXFS (CVE-2026-64600)</strong>, could allow a local user to gain <strong>root access</strong> by exploiting a flaw in the Linux kernel&#8217;s XFS filesystem. Security researchers at <strong>Qualys Threat Research Unit (TRU)</strong> discovered the issue and warned that it can be exploited even when <strong>SELinux is running in Enforcing mode</strong>.</p>



<p>The vulnerability affects the <strong>copy-on-write (CoW)</strong> feature of XFS. It is caused by a race condition that occurs when two <strong>O_DIRECT</strong> write operations access the same reflink-enabled file at nearly the same time.</p>



<h2 class="wp-block-heading"><strong>How the Vulnerability Works</strong></h2>



<p>Normally, when a shared file is modified, XFS creates a new private copy of the data before writing changes. However, during this process, the kernel briefly releases an internal lock while waiting for transaction log space.</p>



<p>If another write request arrives during this short window, it can change the file mapping before the first operation finishes. As a result, the first write uses outdated information and writes data directly to the original disk block instead of a new one.</p>



<p>Since <strong>O_DIRECT</strong> bypasses the page cache, the corrupted data is written straight to disk, allowing attackers to overwrite protected system files.</p>



<h2 class="wp-block-heading"><strong>Why It Is Dangerous</strong></h2>



<p>Qualys demonstrated that a normal local user could exploit the flaw on a default <strong>RHEL 10.2</strong> system and remove the root account&#8217;s password protection within seconds. After the attack, the system granted <strong>passwordless root access</strong>.</p>



<p>The attack is difficult to detect because:</p>



<ul class="wp-block-list">
<li>No kernel log entries are generated.</li>



<li>The changes remain after a reboot.</li>



<li>Even systems protected by SELinux are vulnerable.</li>



<li>Existing Linux security protections do not block the attack.</li>
</ul>



<p>Researchers believe the vulnerability has existed since <strong>Linux kernel version 4.11</strong>, released in <strong>2017</strong>, potentially affecting <strong>more than 16 million systems</strong> worldwide.</p>



<h2 class="wp-block-heading"><strong>Who Is Affected?</strong></h2>



<p>A system is vulnerable if it has:</p>



<ul class="wp-block-list">
<li>Linux kernel <strong>4.11 or later</strong> without the security patch.</li>



<li>An <strong>XFS filesystem</strong> with <strong>reflink=1</strong> enabled.</li>



<li>A directory writable by an unprivileged user.</li>



<li>A valuable target file such as a <strong>SUID binary</strong> or protected system file.</li>
</ul>



<h3 class="wp-block-heading">Confirmed affected distributions include:</h3>



<ul class="wp-block-list">
<li>RHEL 8, 9 and 10</li>



<li>CentOS Stream 8, 9 and 10</li>



<li>Oracle Linux 8, 9 and 10</li>



<li>Rocky Linux 8, 9 and 10</li>



<li>AlmaLinux 8, 9 and 10</li>



<li>CloudLinux 8, 9 and 10</li>



<li>Amazon Linux 2 and Amazon Linux 2023</li>



<li>Fedora Server 31 and later</li>
</ul>



<h3 class="wp-block-heading">Lower-risk distributions</h3>



<ul class="wp-block-list">
<li>Debian</li>



<li>Ubuntu</li>



<li>SUSE</li>
</ul>



<p>These distributions are mainly affected only if <strong>XFS with reflink support</strong> has been manually configured.</p>



<h2 class="wp-block-heading"><strong>Existing Security Features Cannot Stop It</strong></h2>



<p>One of the biggest concerns is that common Linux security protections do not prevent this attack. Technologies such as <strong>SELinux</strong>, <strong>KASLR</strong>, <strong>SMEP</strong>, <strong>SMAP</strong>, kernel lockdown, and container isolation operate at different layers and cannot stop exploitation of this filesystem flaw.</p>



<p>At present, <strong>there is no temporary workaround</strong> that completely mitigates the vulnerability. Installing the security update is the only effective solution.</p>



<h2 class="wp-block-heading"><strong>AI Helped Discover the Flaw</strong></h2>



<p>The vulnerability was identified through a collaboration between <strong>Qualys</strong> and <strong>Anthropic</strong>. Researchers used Anthropic&#8217;s <strong>Claude Mythos Preview</strong> AI model to search for race-condition vulnerabilities similar to the well-known <strong>Dirty COW</strong> bug.</p>



<p>After identifying the issue, Qualys engineers independently verified the findings, created a proof-of-concept, and responsibly disclosed the vulnerability to Linux maintainers.</p>



<h2 class="wp-block-heading"><strong>Part of a Growing Trend</strong></h2>



<p>RefluXFS is one of several major Linux privilege escalation vulnerabilities disclosed during 2026. Other recent discoveries include:</p>



<ul class="wp-block-list">
<li><strong>Copy Fail (CVE-2026-31431)</strong></li>



<li><strong>Dirty Frag (CVE-2026-43284 and CVE-2026-43500)</strong></li>



<li><strong>DirtyClone (CVE-2026-43503)</strong></li>
</ul>



<p>These vulnerabilities highlight a growing trend of attackers exploiting flaws that allow protected files or memory to be modified, ultimately leading to privilege escalation.</p>



<h2 class="wp-block-heading"><strong>What Organizations Should Do</strong></h2>



<p>Organizations should patch affected systems as soon as possible, especially <strong>internet-facing servers</strong>, <strong>multi-tenant environments</strong>, and <strong>shared systems</strong>.</p>



<p>Security updates are already available for major enterprise Linux distributions, including <strong>RHEL, Oracle Linux, AlmaLinux, Rocky Linux, and Fedora</strong>. After installing the update, administrators should perform a <strong>full system reboot</strong> to ensure the patched kernel is running.</p>



<p>Since there is currently <strong>no reliable mitigation</strong> other than patching, keeping systems updated is the best defense against the RefluXFS vulnerability.</p>
<p>The post <a rel="nofollow" href="https://firsthackersnews.com/refluxfs-linux-vulnerability/">Critical RefluXFS Flaw Threatens Linux Systems</a> appeared first on <a rel="nofollow" href="https://firsthackersnews.com">First Hackers News</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://firsthackersnews.com/refluxfs-linux-vulnerability/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Linux FUSE Vulnerability Allows Root Access</title>
		<link>https://firsthackersnews.com/linux-fuse-vulnerability-root-access/</link>
					<comments>https://firsthackersnews.com/linux-fuse-vulnerability-root-access/#respond</comments>
		
		<dc:creator><![CDATA[FHN]]></dc:creator>
		<pubDate>Fri, 10 Jul 2026 18:36:33 +0000</pubDate>
				<category><![CDATA[Cyber threat]]></category>
		<category><![CDATA[Cybersecurity]]></category>
		<category><![CDATA[Linux Malware]]></category>
		<category><![CDATA[malicious cyber actors]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[vulnerability]]></category>
		<category><![CDATA[CVE-2026-31694]]></category>
		<category><![CDATA[cybersecurity]]></category>
		<category><![CDATA[FUSE]]></category>
		<category><![CDATA[kernel vulnerability]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Linux security]]></category>
		<category><![CDATA[privilege escalation]]></category>
		<category><![CDATA[root access]]></category>
		<category><![CDATA[system security]]></category>
		<guid isPermaLink="false">https://firsthackersnews.com/?p=12007</guid>

					<description><![CDATA[<p>newly disclosed Linux kernel vulnerability, tracked as CVE-2026-31694, allows unprivileged local users to gain root privileges on affected</p>
<p>The post <a rel="nofollow" href="https://firsthackersnews.com/linux-fuse-vulnerability-root-access/">Linux FUSE Vulnerability Allows Root Access</a> appeared first on <a rel="nofollow" href="https://firsthackersnews.com">First Hackers News</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>newly disclosed <strong>Linux kernel vulnerability</strong>, tracked as <strong>CVE-2026-31694</strong>, allows unprivileged local users to gain <strong>root privileges</strong> on affected systems. The flaw exists in the Linux <strong>FUSE (Filesystem in Userspace)</strong> subsystem and affects the way directory entries are stored in the kernel page cache.</p>



<p>Researchers demonstrated that the vulnerability can be exploited to modify a <strong>SUID</strong> binary, such as <strong>/usr/bin/su</strong>, allowing attackers to execute code with root privileges. The issue affects <strong>Linux kernel v6.16-rc1 and later</strong> on systems using a <strong>4 KB page size</strong>.</p>



<h2 class="wp-block-heading"><strong>How the Vulnerability Works</strong></h2>



<p>The flaw is caused by improper validation of directory entry sizes before they are copied into the kernel page cache. When an oversized directory entry is processed, it can trigger a small memory overflow beyond the page boundary.</p>



<p>Researchers showed that this overflow can corrupt cached executable files, including <strong>SUID</strong> binaries such as <strong>/usr/bin/su</strong>. When the modified binary is executed, the injected code runs with root privileges before the normal authentication process begins, allowing attackers to gain full control of the system.</p>



<p>To successfully exploit the vulnerability, an attacker must:</p>



<ul class="wp-block-list">
<li>Have local access to the system.</li>



<li>Be able to mount a FUSE filesystem.</li>



<li>Create a specially crafted directory entry.</li>



<li>Trigger the vulnerable code path through FUSE operations.</li>
</ul>



<h2 class="wp-block-heading"><strong>Affected Systems and Mitigation</strong></h2>



<p>The vulnerability becomes practically exploitable on <strong>Linux kernel v6.16-rc1 and later</strong>, after changes that increased the FUSE directory read buffer size. Systems using a <strong>4 KB page size</strong> are affected, while systems with larger page sizes are not vulnerable to this specific overflow.</p>



<p>The Linux kernel developers have released a patch that prevents oversized directory entries from being cached, eliminating the overflow condition.</p>



<p>Organizations should take the following steps to reduce risk:</p>



<ul class="wp-block-list">
<li>Update affected Linux systems with the latest kernel patches.</li>



<li>Restrict or disable unprivileged FUSE mounts where possible.</li>



<li>Disable unprivileged user namespaces if they are not required.</li>



<li>Remove the <strong>setuid</strong> permission from <strong>fusermount3</strong> when it is not needed.</li>



<li>Monitor systems for unauthorized local privilege escalation attempts.</li>



<li>Review systems for unusual activity involving FUSE filesystems and SUID binaries.</li>
</ul>



<p>Although this vulnerability requires local access, it highlights how a small flaw in a kernel subsystem can lead to complete system compromise. Prompt patching, restricting unnecessary FUSE access, and limiting local privileges are the most effective ways to reduce the risk of exploitation.</p>
<p>The post <a rel="nofollow" href="https://firsthackersnews.com/linux-fuse-vulnerability-root-access/">Linux FUSE Vulnerability Allows Root Access</a> appeared first on <a rel="nofollow" href="https://firsthackersnews.com">First Hackers News</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://firsthackersnews.com/linux-fuse-vulnerability-root-access/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Lazarus Delivers “Mach-O Man” macOS Malware via ClickFix</title>
		<link>https://firsthackersnews.com/lazarus-macos-malware/</link>
					<comments>https://firsthackersnews.com/lazarus-macos-malware/#respond</comments>
		
		<dc:creator><![CDATA[FHN]]></dc:creator>
		<pubDate>Thu, 30 Apr 2026 07:17:56 +0000</pubDate>
				<category><![CDATA[Application Security]]></category>
		<category><![CDATA[Cybersecurity]]></category>
		<category><![CDATA[Internet Security]]></category>
		<category><![CDATA[Linux Malware]]></category>
		<category><![CDATA[MacOS]]></category>
		<category><![CDATA[Malware]]></category>
		<category><![CDATA[Secuirty Update]]></category>
		<category><![CDATA[Security Advisory]]></category>
		<category><![CDATA[#BlueTeam]]></category>
		<category><![CDATA[#ClickFix]]></category>
		<category><![CDATA[#CodesignBypass]]></category>
		<category><![CDATA[#EDR]]></category>
		<category><![CDATA[#Infostealer]]></category>
		<category><![CDATA[#KeychainAttack]]></category>
		<category><![CDATA[#LaunchAgent]]></category>
		<category><![CDATA[#MachOMan]]></category>
		<category><![CDATA[#macOSSecurity]]></category>
		<category><![CDATA[#SOC]]></category>
		<guid isPermaLink="false">https://firsthackersnews.com/?p=11667</guid>

					<description><![CDATA[<p>The Lazarus Group is actively using ClickFix-style social engineering to deploy a new macOS malware framework called “Mach-O</p>
<p>The post <a rel="nofollow" href="https://firsthackersnews.com/lazarus-macos-malware/">Lazarus Delivers “Mach-O Man” macOS Malware via ClickFix</a> appeared first on <a rel="nofollow" href="https://firsthackersnews.com">First Hackers News</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>The Lazarus Group is actively using ClickFix-style social engineering to deploy a new macOS malware framework called “Mach-O Man.” Instead of exploiting vulnerabilities, the attack relies on user interaction, making it highly effective against modern defenses.</p>



<p>This activity has been closely analyzed by Mauro Eldritch, who has documented how this campaign is impacting high-value macOS users, especially in fintech and crypto sectors.</p>



<h2 class="wp-block-heading"><strong>Initial Access and Social Engineering Flow</strong></h2>



<p>The attack typically begins with targeted outreach on Telegram, where threat actors impersonate trusted contacts such as colleagues or business partners. Victims—often executives or developers—receive urgent meeting requests designed to trigger quick action.</p>



<p>They are then redirected to phishing pages that closely resemble platforms like Zoom, Microsoft Teams, or Google Meet. These pages claim a technical issue and instruct the user to fix it manually.</p>



<p>Instead of a traditional exploit, the victim is guided to copy and execute a Terminal command. Because this action is user-initiated, many security tools interpret it as legitimate behavior.</p>



<h2 class="wp-block-heading"><strong>Execution Chain and Malware Behavior</strong></h2>



<p>Once the command is executed, the infection chain unfolds in multiple stages designed to blend in with normal macOS activity.</p>



<figure class="wp-block-image size-full is-resized"><img fetchpriority="high" decoding="async" width="1024" height="527" src="https://firsthackersnews.com/wp-content/uploads/2026/04/image-4.png" alt="" class="wp-image-11668" style="aspect-ratio:1.943129509320623;width:823px;height:auto" srcset="https://firsthackersnews.com/wp-content/uploads/2026/04/image-4-300x154.png 300w, https://firsthackersnews.com/wp-content/uploads/2026/04/image-4-768x395.png 768w, https://firsthackersnews.com/wp-content/uploads/2026/04/image-4.png 1024w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption">Complete malware kit showing all components and variants (Source: ANY.RUN).<br></figcaption></figure>



<ul class="wp-block-list">
<li>The first-stage binary (commonly seen as <em>teamsSDK.bin</em>) acts as a downloader that retrieves additional components</li>



<li>Fake macOS applications are dropped, mimicking meeting tools or system prompts to appear legitimate</li>



<li>These apps repeatedly request user passwords, often using poorly written prompts to trick the victim</li>



<li>A secondary module (such as <em>D1YrHRTg.bin</em>) performs deep system profiling using native tools like sysctl</li>
</ul>



<p>The profiling stage gathers extensive system intelligence, including host identifiers, operating system details, running processes, network configuration, and browser-related data from Chrome, Safari, Brave, and similar applications.</p>



<p>Interestingly, researchers observed flaws in parts of the malware. Some profiling components enter continuous loops, repeatedly sending the same data to command-and-control infrastructure, which can cause noticeable performance issues on infected machines.</p>



<p>To avoid execution barriers, the malware leverages macOS utilities like codesign to apply ad-hoc signatures, helping malicious binaries run under standard policies without raising immediate suspicion.</p>



<h2 class="wp-block-heading">Credential Theft and Data Exfiltration</h2>



<p>The final stage of the attack is handled by a stealer component referred to as <em>macrasv2</em>. This module focuses on extracting high-value data from the compromised system.</p>



<p>Targets include:</p>



<ul class="wp-block-list">
<li>Browser-stored credentials and active session cookies</li>



<li>macOS Keychain entries containing saved secrets</li>



<li>Files that can grant access to SaaS platforms, internal systems, or crypto wallets</li>
</ul>



<p>All collected data is compressed into archive files (for example, <em>user_ext.zip</em>) and exfiltrated to attacker-controlled servers.</p>



<h2 class="wp-block-heading">Persistence Mechanism</h2>



<p>To maintain long-term access, additional components like <em>minst2.bin</em> are deployed. These create persistence by placing disguised binaries—often pretending to be legitimate services like OneDrive—inside directories labeled as security-related (such as an “Antivirus Service” folder).</p>



<p>The malware then registers itself as a LaunchAgent, ensuring execution every time the user logs in.</p>



<h2 class="wp-block-heading">Why This Campaign Is Effective</h2>



<p>This attack stands out because it avoids traditional exploitation techniques. By relying on user-executed commands and built-in macOS tools, the activity appears normal to many EDR solutions until after credentials and access tokens are already compromised.</p>



<p>For organizations where macOS devices are widely used—especially among developers and leadership—this creates a serious risk. A single compromised system can lead to broader access across internal infrastructure and financial assets.</p>



<h2 class="wp-block-heading">Detection and Defensive Considerations</h2>



<p>To counter this type of campaign, defenders need to shift focus toward behavior rather than just exploits.</p>



<ul class="wp-block-list">
<li>Monitor unusual Terminal activity and command execution patterns</li>



<li>Identify and block ClickFix-style phishing workflows</li>



<li>Regularly audit LaunchAgents for suspicious or disguised entries</li>



<li>Track outbound connections to uncommon ports or Telegram-related infrastructure</li>



<li>Use sandbox environments like ANY.RUN to safely analyze suspicious files, URLs, and execution chains</li>
</ul>



<p>Interactive sandboxing plays a key role in understanding how these multi-stage attacks operate, allowing defenders to reconstruct the full infection path and extract indicators for detection.</p>
<p>The post <a rel="nofollow" href="https://firsthackersnews.com/lazarus-macos-malware/">Lazarus Delivers “Mach-O Man” macOS Malware via ClickFix</a> appeared first on <a rel="nofollow" href="https://firsthackersnews.com">First Hackers News</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://firsthackersnews.com/lazarus-macos-malware/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Hackers Hide GoGra Backdoor in Outlook Mailboxes</title>
		<link>https://firsthackersnews.com/outlook-mailbox-malware/</link>
					<comments>https://firsthackersnews.com/outlook-mailbox-malware/#respond</comments>
		
		<dc:creator><![CDATA[FHN]]></dc:creator>
		<pubDate>Thu, 23 Apr 2026 20:32:55 +0000</pubDate>
				<category><![CDATA[Backdoor]]></category>
		<category><![CDATA[Email Security]]></category>
		<category><![CDATA[Linux Malware]]></category>
		<category><![CDATA[malicious cyber actors]]></category>
		<category><![CDATA[Malware]]></category>
		<category><![CDATA[Secuirty Update]]></category>
		<category><![CDATA[Security Advisory]]></category>
		<category><![CDATA[#APT]]></category>
		<category><![CDATA[#Backdoor]]></category>
		<category><![CDATA[#CloudSecurity]]></category>
		<category><![CDATA[#CyberAttack]]></category>
		<category><![CDATA[#CyberSecurity]]></category>
		<category><![CDATA[#CyberThreats]]></category>
		<category><![CDATA[#datasecurity]]></category>
		<category><![CDATA[#EmailSecurity]]></category>
		<category><![CDATA[#GoGra]]></category>
		<category><![CDATA[#infosec]]></category>
		<category><![CDATA[#MalwareAnalysis]]></category>
		<category><![CDATA[#MicrosoftSecurity]]></category>
		<category><![CDATA[#NetworkSecurity]]></category>
		<category><![CDATA[#OutlookMalware]]></category>
		<category><![CDATA[#SecurityResearch]]></category>
		<category><![CDATA[#ThreatIntelligence]]></category>
		<guid isPermaLink="false">https://firsthackersnews.com/?p=11637</guid>

					<description><![CDATA[<p>A nation-state–linked threat group known as Harvester has developed a more advanced way to hide its malicious activity</p>
<p>The post <a rel="nofollow" href="https://firsthackersnews.com/outlook-mailbox-malware/">Hackers Hide GoGra Backdoor in Outlook Mailboxes</a> appeared first on <a rel="nofollow" href="https://firsthackersnews.com">First Hackers News</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>A nation-state–linked threat group known as Harvester has developed a more advanced way to hide its malicious activity by using Microsoft Outlook as part of its attack infrastructure. Instead of relying on traditional command-and-control servers, the attackers are now sending instructions through real Outlook mailboxes, making the activity appear legitimate and much harder to detect.</p>



<p>This campaign involves a Linux version of the GoGra backdoor, showing that the group is expanding beyond its earlier Windows-based operations. By using trusted cloud services, the malware blends into normal network traffic, allowing it to bypass many standard security tools that typically look for suspicious external connections.</p>



<p>The attack appears to focus on espionage rather than financial gain. Evidence suggests that targets are mainly located in South Asia, with attackers using region-specific document names to make their phishing attempts more convincing. This level of targeting shows a carefully planned and strategic operation.</p>



<h2 class="wp-block-heading">Outlook Mailbox Malware Explained</h2>



<p>The attackers gain access through social engineering, tricking users into opening files that appear harmless. These files are often disguised as official documents, but they actually contain hidden malicious code.</p>



<p>Once the file is opened, the malware quietly installs itself in the background. It avoids drawing attention while setting up persistence, ensuring it can continue running even after the system is restarted.</p>



<p>Some key characteristics of the infection process include:</p>



<ul class="wp-block-list">
<li>Disguised files that look like PDFs or official documents</li>



<li>Malware hidden inside Linux executable files</li>



<li>Silent installation without visible signs</li>



<li>Persistence mechanisms that allow it to survive reboots</li>
</ul>



<p>This approach makes it difficult for users to realize they have been infected until much later.</p>



<h2 class="wp-block-heading">How the Backdoor Uses Microsoft Infrastructure</h2>



<p>What makes this attack particularly sophisticated is how it uses Microsoft’s own services as a communication channel. Instead of connecting to suspicious servers, the malware interacts with legitimate cloud infrastructure, which helps it stay hidden.</p>



<p>After installation, the backdoor uses Microsoft APIs to communicate with a real Outlook mailbox. It regularly checks for new messages that contain instructions from the attacker. These commands are processed on the infected system, and the results are sent back through email responses.</p>



<p>The malware is designed to clean up after itself, deleting messages once they are used. This reduces traces of the attack and makes forensic investigation more difficult.</p>



<p>The main capabilities of the backdoor include:</p>



<ul class="wp-block-list">
<li>Receiving commands through Outlook mailbox messages</li>



<li>Executing those commands on the infected machine</li>



<li>Sending results back via email</li>



<li>Removing evidence after communication</li>
</ul>



<p>Because all of this happens through trusted services, the activity can easily go unnoticed in normal network monitoring.</p>



<h2 class="wp-block-heading">Why This Attack Is Concerning</h2>



<p>This campaign highlights a growing trend where attackers abuse legitimate platforms to hide their operations. By using trusted services like Microsoft’s cloud, they can bypass many traditional defenses that rely on detecting suspicious traffic.</p>



<p>The impact of such an attack can be serious. Attackers may gain long-term access to systems, collect sensitive data, and monitor user activity without being detected. Since the malware operates quietly and removes traces of its actions, it can remain active for extended periods.</p>



<p>This also shows how threat actors are evolving their techniques, moving toward more stealthy and persistent methods. Organizations can no longer rely only on basic perimeter defenses and must adopt more advanced monitoring strategies.</p>



<p>To reduce risk, security teams should pay close attention to unusual system behavior, unexpected background services, and abnormal use of cloud APIs. Monitoring activity from endpoints that do not typically interact with such services can help identify potential threats early.</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p><strong>&#x200d;Follow Us on:<strong><a href="https://www.linkedin.com/in/firsthackers-news/" target="_blank" rel="noopener">Linkedin</a>,<a href="https://www.instagram.com/firsthackersnews/" target="_blank" rel="noreferrer noopener"> Instagram</a>, <a href="https://www.facebook.com/FirsthackerNews" target="_blank" rel="noreferrer noopener">Facebook</a></strong> to get the latest security news!</strong></p>
</blockquote>
<p>The post <a rel="nofollow" href="https://firsthackersnews.com/outlook-mailbox-malware/">Hackers Hide GoGra Backdoor in Outlook Mailboxes</a> appeared first on <a rel="nofollow" href="https://firsthackersnews.com">First Hackers News</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://firsthackersnews.com/outlook-mailbox-malware/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>xz Backdoor Vulnerability Exposes Linux Systems to Remote Access</title>
		<link>https://firsthackersnews.com/xz-backdoor-vulnerability-linux/</link>
					<comments>https://firsthackersnews.com/xz-backdoor-vulnerability-linux/#respond</comments>
		
		<dc:creator><![CDATA[FHN]]></dc:creator>
		<pubDate>Fri, 27 Mar 2026 19:14:56 +0000</pubDate>
				<category><![CDATA[Backdoor]]></category>
		<category><![CDATA[Linux Malware]]></category>
		<category><![CDATA[Malware]]></category>
		<category><![CDATA[Secuirty Update]]></category>
		<category><![CDATA[Security Advisory]]></category>
		<category><![CDATA[vulnerability]]></category>
		<category><![CDATA[#Backdoor]]></category>
		<category><![CDATA[#CVE20243094]]></category>
		<category><![CDATA[#CyberSecurity]]></category>
		<category><![CDATA[#CyberThreat]]></category>
		<category><![CDATA[#infosec]]></category>
		<category><![CDATA[#LinuxSecurity]]></category>
		<category><![CDATA[#LinuxVulnerability]]></category>
		<category><![CDATA[#Malware]]></category>
		<category><![CDATA[#OpenSourceSecurity]]></category>
		<category><![CDATA[#PatchNow]]></category>
		<category><![CDATA[#SecurityAlert]]></category>
		<category><![CDATA[#ssh]]></category>
		<category><![CDATA[#SupplyChainAttack]]></category>
		<category><![CDATA[#ThreatIntelligence]]></category>
		<category><![CDATA[#xz]]></category>
		<guid isPermaLink="false">https://firsthackersnews.com/?p=11512</guid>

					<description><![CDATA[<p>Red Hat has raised a critical alert after a supply chain attack was discovered in the widely used</p>
<p>The post <a rel="nofollow" href="https://firsthackersnews.com/xz-backdoor-vulnerability-linux/">xz Backdoor Vulnerability Exposes Linux Systems to Remote Access</a> appeared first on <a rel="nofollow" href="https://firsthackersnews.com">First Hackers News</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Red Hat has raised a critical alert after a supply chain attack was discovered in the widely used xz compression tool. Security researchers found that certain recent versions of the library were tampered with, introducing hidden malicious functionality.</p>



<p>This issue, identified as <strong>CVE-2024-3094</strong>, impacts versions 5.6.0 and 5.6.1. The injected code is designed to stay hidden during normal review processes and only becomes active during the software build stage. Once active, it can interfere with SSH authentication, potentially allowing attackers to gain unauthorized access to affected systems.</p>



<h2 class="wp-block-heading">Technical Impact and Mitigation</h2>



<p>The attack is highly sophisticated, as the malicious components are not fully visible in the main source code. Instead, they rely on additional build-time elements to assemble and execute the payload. This makes detection difficult using standard code inspection methods.</p>



<p>Once deployed, the compromised library can alter how SSH authentication behaves, creating an opportunity for attackers to bypass normal security checks and access systems remotely.</p>



<p>Key highlights:</p>



<ul class="wp-block-list">
<li>CVE-2024-3094 affects xz and xz-libs versions 5.6.0 and 5.6.1</li>



<li>Malicious code is triggered during the build process</li>



<li>Targets SSH authentication mechanisms</li>



<li>Impacts Fedora Rawhide, Fedora 40 Beta, Debian unstable, and openSUSE</li>



<li>Red Hat Enterprise Linux (RHEL) remains unaffected</li>
</ul>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p><strong>&#x200d;Follow Us on:<strong><a href="https://www.linkedin.com/in/firsthackers-news/" target="_blank" rel="noopener">Linkedin</a>,<a href="https://www.instagram.com/firsthackersnews/" target="_blank" rel="noreferrer noopener"> Instagram</a>, <a href="https://www.facebook.com/FirsthackerNews" target="_blank" rel="noreferrer noopener">Facebook</a></strong> to get the latest security news!</strong></p>
</blockquote>



<h3 class="wp-block-heading">Immediate Actions</h3>



<ul class="wp-block-list">
<li>Downgrade to trusted xz version 5.4.x</li>



<li>Stop using Fedora Rawhide until systems are secured</li>



<li>Apply official patches and updates from Red Hat</li>



<li>Monitor systems for unusual SSH behavior</li>
</ul>



<p>Even though active exploitation has not been widely reported, the nature of this compromise makes it a high-risk issue. Prompt action is necessary to protect systems from potential unauthorized access.</p>
<p>The post <a rel="nofollow" href="https://firsthackersnews.com/xz-backdoor-vulnerability-linux/">xz Backdoor Vulnerability Exposes Linux Systems to Remote Access</a> appeared first on <a rel="nofollow" href="https://firsthackersnews.com">First Hackers News</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://firsthackersnews.com/xz-backdoor-vulnerability-linux/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>ShadowHS Linux Malware Spreading Quietly</title>
		<link>https://firsthackersnews.com/shadowhs-linux-malware-spreading-quietly/</link>
					<comments>https://firsthackersnews.com/shadowhs-linux-malware-spreading-quietly/#respond</comments>
		
		<dc:creator><![CDATA[FHN]]></dc:creator>
		<pubDate>Mon, 02 Feb 2026 17:28:17 +0000</pubDate>
				<category><![CDATA[Malware]]></category>
		<category><![CDATA[Application Security]]></category>
		<category><![CDATA[Cybersecurity]]></category>
		<category><![CDATA[Internet Security]]></category>
		<category><![CDATA[Linux Malware]]></category>
		<category><![CDATA[malicious cyber actors]]></category>
		<category><![CDATA[Secuirty Update]]></category>
		<category><![CDATA[Security Advisory]]></category>
		<category><![CDATA[advanced persistent threat]]></category>
		<category><![CDATA[behavioral detection]]></category>
		<category><![CDATA[blue team]]></category>
		<category><![CDATA[cyber threat intelligence]]></category>
		<category><![CDATA[edr]]></category>
		<category><![CDATA[endpoint detection]]></category>
		<category><![CDATA[Enterprise Security]]></category>
		<category><![CDATA[fileless malware]]></category>
		<category><![CDATA[in-memory attacks]]></category>
		<category><![CDATA[incident response]]></category>
		<category><![CDATA[kernel security]]></category>
		<category><![CDATA[Linux malware]]></category>
		<category><![CDATA[Linux security]]></category>
		<category><![CDATA[malware analysis]]></category>
		<category><![CDATA[post exploitation]]></category>
		<category><![CDATA[process monitoring]]></category>
		<category><![CDATA[SOC]]></category>
		<category><![CDATA[system hardening]]></category>
		<category><![CDATA[threat hunting]]></category>
		<category><![CDATA[XDR]]></category>
		<guid isPermaLink="false">https://firsthackersnews.com/?p=11079</guid>

					<description><![CDATA[<p>A newly observed Linux threat called ShadowHS is showing how modern attackers are moving beyond traditional malware. Instead</p>
<p>The post <a rel="nofollow" href="https://firsthackersnews.com/shadowhs-linux-malware-spreading-quietly/">ShadowHS Linux Malware Spreading Quietly</a> appeared first on <a rel="nofollow" href="https://firsthackersnews.com">First Hackers News</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>A newly observed Linux threat called ShadowHS is showing how modern attackers are moving beyond traditional malware. Instead of dropping files on a system, this framework runs completely in memory, making it much harder for standard security tools to detect.</p>



<p>ShadowHS is built from a modified version of a legitimate utility and turned into a full post-exploitation toolkit. It avoids writing anything to disk, hides its process identity, and executes through memory-based techniques that bypass many antivirus and file-monitoring defenses. The infection chain uses encrypted loaders and carefully rebuilds the payload directly in memory before running it.</p>



<p>The final program is launched directly from memory and often imitates trusted processes, such as Python-related services, to reduce suspicion.</p>



<h2 class="wp-block-heading"><strong>Human-Controlled and Stealth Focused</strong></h2>



<p>ShadowHS stands out because it does not behave like typical automated malware. Instead of launching noisy actions right away, it stays quiet at first. The framework focuses on studying the system, identifying security defenses, and ensuring the environment is safe for continued access. This careful, low-profile behavior suggests direct human control rather than a fully automated attack.</p>



<figure class="wp-block-image size-large"><img decoding="async" width="1024" height="466" src="https://firsthackersnews.com/wp-content/uploads/2026/02/image-1024x466.png" alt="" class="wp-image-11080" srcset="https://firsthackersnews.com/wp-content/uploads/2026/02/image-200x91.png 200w, https://firsthackersnews.com/wp-content/uploads/2026/02/image-300x136.png 300w, https://firsthackersnews.com/wp-content/uploads/2026/02/image-400x182.png 400w, https://firsthackersnews.com/wp-content/uploads/2026/02/image-600x273.png 600w, https://firsthackersnews.com/wp-content/uploads/2026/02/image-768x349.png 768w, https://firsthackersnews.com/wp-content/uploads/2026/02/image-800x364.png 800w, https://firsthackersnews.com/wp-content/uploads/2026/02/image-1024x466.png 1024w, https://firsthackersnews.com/wp-content/uploads/2026/02/image-1200x546.png 1200w, https://firsthackersnews.com/wp-content/uploads/2026/02/image.png 1321w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption">Memory-Based Payload Execution (Source: CRIL)</figcaption></figure>



<p>The tool gathers detailed information about installed security products by checking system paths, running services, and protection components. The findings help operators understand what defenses are active before deciding on the next step.</p>



<p>It also includes logic to remove other malicious programs that may already be present. By scanning for known malware, cryptominers, hidden kernel components, and suspicious in-memory programs, it tries to take exclusive control of the system.</p>



<p>Beyond that, the framework examines the system’s overall defense posture, reviewing kernel protections, loaded modules, and process activity to detect monitoring or security instrumentation.</p>



<p>For data theft, ShadowHS uses less common communication methods instead of standard tools like SSH or file transfer utilities. It creates hidden channels using user-space tunneling techniques, allowing files to be moved without triggering typical network monitoring alerts. Because of how these tunnels work, the traffic can appear local while actually being redirected externally, helping the activity remain unnoticed.</p>



<h2 class="wp-block-heading"><strong>Security Measures</strong></h2>



<p>When fully activated, ShadowHS can start hidden crypto mining, scan networks to move sideways, and try to collect credentials from systems, cloud services, and virtual platforms.</p>



<p>Since it runs in memory and avoids writing files, regular antivirus tools may not detect it. Protection depends more on watching system behavior than scanning files.</p>



<p>To lower the risk:</p>



<ul class="wp-block-list">
<li>Monitor unusual process and memory activity</li>



<li>Track suspicious command-line behavior</li>



<li>Use deeper system and kernel-level monitoring</li>



<li>Limit what applications can do at runtime</li>



<li>Watch for strange or hidden network connections</li>
</ul>



<p>This threat shows that modern Linux attacks are becoming quieter and more controlled, making behavior-based detection more important than ever.</p>



<h2 class="wp-block-heading" id="h-indicators-of-compromise-iocs"><strong>Indicators of Compromise (IOCs)</strong></h2>



<figure class="wp-block-table"><table><thead><tr><th>Indicator</th><th>Indicator Type</th><th>Description</th></tr></thead><tbody><tr><td>91.92.242[.]200</td><td>IPv4</td><td>Primary payload staging infrastructure</td></tr><tr><td>62.171.153[.]47</td><td>IPv4</td><td>Operator-controlled relay for exfiltration and post-compromise operations</td></tr><tr><td>20c1819c2fb886375d9504b0e7e5debb87ec9d1a53073b1f3f36dd6a6ac3f427</td><td>SHA-256</td><td>Main obfuscated shell loader script</td></tr><tr><td>9f2cfc65b480695aa2fd847db901e6b1135b5ed982d9942c61b629243d6830dd</td><td>SHA-256</td><td>Custom weaponized hackshell payload</td></tr><tr><td>148f199591b9a696197ec72f8edb0cf4f90c5dcad0805cfab4a660f65bf27ef3</td><td>SHA-256</td><td>RustScan port scanner</td></tr><tr><td>574a17028b28fdf860e23754d16ede622e4e27bac11d33dbf5c39db501dfccdc</td><td>SHA-256</td><td>spirit-x86_64.tgz archive</td></tr><tr><td>3f014aa3e339d33760934f180915045daf922ca8ae07531c8e716608e683d92d</td><td>SHA-256</td><td>spirit/-bash (UPX-packed binary)</td></tr><tr><td>847846a0f0c76cf5699342a066378774f1101d2fb74850e3731dc9b74e12a69d</td><td>SHA-256</td><td>spirit/-bash (unpacked Golang binary)</td></tr><tr><td>5a6b08d42cc8296b32034b132bab18d201a48c1628df3200e869722506dd4ec6</td><td>SHA-256</td><td>gpu1/screen miner wrapper</td></tr><tr><td>e11bcba19ac628ae1d0b56e43646ae1b5da2ccc1da5162e6719d4b7d68d37096</td><td>SHA-256</td><td>gpu1/lol miner component</td></tr><tr><td>0bb7d4d8a9c8f6b3622d07ae9892aa34dc2d0171209e2829d7d39d5024fd79ef</td><td>SHA-256</td><td>xmr/xmrigremove.sh</td></tr><tr><td>9fdaf64180b7d02b399d2a92f1cdd062af2e6584852ea597c50194b62cca3c0b</td><td>SHA-256</td><td>gpustak/-bash binary</td></tr><tr><td>b3ee445675fce1fccf365a7b681b316124b1a5f0a7e87042136e91776b187f39</td><td>SHA-256</td><td>gpustak/libxmrstak_cuda_backend.so CUDA backend</td></tr><tr><td>5a6b08d42cc8296b32034b132bab18d201a48c1628df3200e869722506dd4ec6</td><td>SHA-256</td><td>gpustak/screen miner wrapper</td></tr><tr><td>5a6b08d42cc8296b32034b132bab18d201a48c1628df3200e869722506dd4ec6</td><td>SHA-256</td><td>gpuecho/screen miner wrapper</td></tr><tr><td>3ba88f92a87c0bb01b13754190c36d8af7cd047f738ebb3d6f975960fe7614d6</td><td>SHA-256</td><td>gpuecho/lol miner component</td></tr><tr><td>5a6b08d42cc8296b32034b132bab18d201a48c1628df3200e869722506dd4ec6</td><td>SHA-256</td><td>gpu/screen miner wrapper</td></tr><tr><td>e11bcba19ac628ae1d0b56e43646ae1b5da2ccc1da5162e6719d4b7d68d37096</td><td>SHA-256</td><td>gpu/lol miner component</td></tr><tr><td>4069eaadc94efb5be43b768c47d526e4c080b7d35b4c9e7eeb63b8dcf0038d7d</td><td>SHA-256</td><td>ex/dirtycredz.x86_64 credential exploitation tool</td></tr><tr><td>72023e9829b0de93cf9f057858cac1bcd4a0499b018fb81406e08cd3053ae55b</td><td>SHA-256</td><td>ex/payload.so shared object payload</td></tr><tr><td>662d4e58e95b7b27eb961f3d81d299af961892c74bc7a1f2bb7a8f2442030d0e</td><td>SHA-256</td><td>ex/overlay helper component</td></tr><tr><td>e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855</td><td>SHA-256</td><td>ex/GCONV_PATH=./lol empty placeholder file</td></tr><tr><td>c679b408275f9624602702f5601954f3b51efbb1acc505950ee88175854e783f</td><td>SHA-256</td><td>ex/payload.c payload source code</td></tr><tr><td>666122c39b2fd4499678105420e21b938f0f62defdbc85275e14156ae69539d6</td><td>SHA-256</td><td>ex/blast exploitation utility</td></tr><tr><td>8007b94d367b7dbacaac4c1da0305b489f0f3f7a38770dcdb68d5824fe33d041</td><td>SHA-256</td><td>ex/dp Dirty Pipe exploit</td></tr><tr><td>072e08b38a18a00d75b139a5bbb18ac4aa891f4fd013b55bfd3d6747e1ba0a27</td><td>SHA-256</td><td>ex/ubu privilege escalation helper</td></tr><tr><td>6c50fcf14af7f984a152016498bf4096dd1f71e9d35000301b8319bd50f7f6d0</td><td>SHA-256</td><td>ex/cve-2025-21756 exploit binary</td></tr><tr><td>04a072481ebda2aa8f9e0dac371847f210199a503bf31950d796901d5dbe9d58</td><td>SHA-256</td><td>ex/traitor-x86_64 privilege escalation tool</td></tr><tr><td>19df5436972b330910f7cb9856ef5fb17320f50b6ced68a76faecddcafa7dcd7</td><td>SHA-256</td><td>ex/autoroot.sh automated root escalation script</td></tr><tr><td>7fbab71fcc454401f6c3db91ed0afb0027266d5681c23900894f1002ceca389a</td><td>SHA-256</td><td>ex/dirtypipe.x86_64 Dirty Pipe exploit variant</td></tr><tr><td>e5a6deec56095d0ae702655ea2899c752f4a0735f9077605d933a04d45cd7e24</td><td>SHA-256</td><td>ex/dirtypagetable.x86_64 kernel exploitation tool</td></tr><tr><td>7361c6861fdb08cab819b13bf2327bc82eebdd70651c7de1aed18515c1700d97</td><td>SHA-256</td><td>ex/lol/gconv-modules GCONV-based exploitation component</td></tr></tbody></table></figure>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p><strong>&#x200d;Follow Us on:<strong> <a href="https://www.linkedin.com/in/firsthackers-news/" target="_blank" rel="noopener">Linkedin</a>,<a href="https://www.instagram.com/firsthackersnews/" target="_blank" rel="noreferrer noopener"> Instagram</a>, <a href="https://www.facebook.com/FirsthackerNews" target="_blank" rel="noreferrer noopener">Facebook</a></strong> to get the latest security news!</strong></p>
</blockquote>
<p>The post <a rel="nofollow" href="https://firsthackersnews.com/shadowhs-linux-malware-spreading-quietly/">ShadowHS Linux Malware Spreading Quietly</a> appeared first on <a rel="nofollow" href="https://firsthackersnews.com">First Hackers News</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://firsthackersnews.com/shadowhs-linux-malware-spreading-quietly/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Critical Linux Vulnerabilities Expose Systems to Root Access Exploits</title>
		<link>https://firsthackersnews.com/critical-linux-vulnerabilities-root-access-exploits/</link>
					<comments>https://firsthackersnews.com/critical-linux-vulnerabilities-root-access-exploits/#respond</comments>
		
		<dc:creator><![CDATA[FHN]]></dc:creator>
		<pubDate>Thu, 19 Jun 2025 05:44:19 +0000</pubDate>
				<category><![CDATA[vulnerability]]></category>
		<category><![CDATA[Linux Malware]]></category>
		<category><![CDATA[#CVE-2025-6018]]></category>
		<category><![CDATA[#CVE-2025-6019]]></category>
		<category><![CDATA[#Fedora cybersecurity]]></category>
		<category><![CDATA[#Linux vulnerabilities]]></category>
		<category><![CDATA[#openSUSE Leap 15]]></category>
		<category><![CDATA[#PAM vulnerability]]></category>
		<category><![CDATA[#Qualys TRU]]></category>
		<guid isPermaLink="false">https://firsthackersnews.com/?p=10324</guid>

					<description><![CDATA[<p>Newly discovered Linux vulnerabilities, identified as CVE-2025-6018, CVE-2025-6019, and CVE-2025-6020, threaten major distributions like Ubuntu, Debian, Fedora, and</p>
<p>The post <a rel="nofollow" href="https://firsthackersnews.com/critical-linux-vulnerabilities-root-access-exploits/">Critical Linux Vulnerabilities Expose Systems to Root Access Exploits</a> appeared first on <a rel="nofollow" href="https://firsthackersnews.com">First Hackers News</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Newly discovered <strong>Linux vulnerabilities</strong>, identified as <strong>CVE-2025-6018</strong>, <strong>CVE-2025-6019</strong>, and <strong>CVE-2025-6020</strong>, threaten major distributions like <strong>Ubuntu</strong>, <strong>Debian</strong>, <strong>Fedora</strong>, and <strong>openSUSE Leap 15</strong>. Uncovered by the <strong>Qualys Threat Research Unit (TRU)</strong>, these <strong>local privilege escalation (LPE)</strong> flaws allow attackers to gain <strong>full root access</strong>, risking <strong>data breaches</strong> and <strong>system compromise</strong>.</p>



<h1 class="wp-block-heading"><strong>What Are These Linux Vulnerabilities?</strong></h1>



<h2 class="wp-block-heading"><strong>CVE-2025-6018: PAM Misconfiguration</strong></h2>



<p>This flaw in <strong>openSUSE Leap 15</strong>’s <strong>Pluggable Authentication Modules (PAM)</strong> lets unprivileged users gain “<strong>allow_active</strong>” status, granting unauthorized <strong>Polkit actions</strong>. By treating <strong>SSH sessions</strong> as local, attackers can escalate privileges, paving the way for deeper exploits.</p>



<h2 class="wp-block-heading"><strong>CVE-2025-6019: Udisks Daemon Flaw</strong></h2>



<p>Exploiting <strong>libblockdev</strong> via the <strong>udisks daemon</strong>—a default component in most Linux distributions—this vulnerability allows attackers with “allow_active” status to achieve <strong>root privileges</strong>. Qualys TRU’s <strong>proof-of-concept exploits</strong> confirmed rapid root access on <strong>Ubuntu</strong>, <strong>Debian</strong>, and <strong>Fedora</strong>.</p>



<h2 class="wp-block-heading"><strong>CVE-2025-6020: PAM Namespace Issue</strong></h2>



<p>A <strong>path traversal vulnerability</strong> (CVSS: 7.8) in <strong>Linux PAM</strong> (up to 1.7.0) enables <strong>symlink attacks</strong> and <strong>race conditions</strong> in <strong>pam_namespace</strong>. Fixed in <strong>Linux PAM 1.7.1</strong>, it poses a <strong>root escalation</strong> risk if unpatched.</p>



<p>Chained together, these flaws create a dangerous “<strong>local-to-root</strong>” path, enabling <strong>data theft</strong>, <strong>ransomware</strong>, and <strong>backdoor implantation</strong>.</p>



<h2 class="wp-block-heading"><strong>Why These Flaws Matter</strong></h2>



<p>With <strong>udisks</strong> installed by default, most Linux systems are vulnerable. As Qualys TRU’s <strong>Saeed Abbasi</strong> noted, “The exploit’s simplicity and udisks’ ubiquity make this a universal threat.” Root access allows attackers to cause <strong>operational downtime</strong> or <strong>lateral movement</strong> in networks, threatening enterprises and individuals.</p>



<h3 class="wp-block-heading"><strong>Protect against these Linux security flaws with these steps:</strong></h3>



<ul class="wp-block-list">
<li><strong>Patch Immediately</strong>: Update to <strong>Linux PAM 1.7.1</strong>, patched <strong>libblockdev</strong>, and <strong>udisks</strong>. Check Ubuntu’s Security Notices or Fedora’s Updates.</li>



<li><strong>Disable PAM Namespace</strong>: Mitigate CVE-2025-6020 by disabling <strong>pam_namespace</strong> or securing <strong>namespace.init</strong>.</li>



<li><strong>Monitor Systems</strong>: Use <strong>threat intelligence</strong> tools to detect exploit attempts.</li>



<li><strong>Limit Access</strong>: Restrict privileges to minimize <strong>lateral movement</strong> risks.</li>
</ul>
<p>The post <a rel="nofollow" href="https://firsthackersnews.com/critical-linux-vulnerabilities-root-access-exploits/">Critical Linux Vulnerabilities Expose Systems to Root Access Exploits</a> appeared first on <a rel="nofollow" href="https://firsthackersnews.com">First Hackers News</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://firsthackersnews.com/critical-linux-vulnerabilities-root-access-exploits/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
