<?xml version="1.0"?>
<rss version="2.0"><channel><title><![CDATA[News: Security & Privacy News]]></title><link>https://nsaneforums.com/news/security-privacy-news/page/134/?d=2</link><description><![CDATA[News: Security & Privacy News]]></description><language>en</language><item><title>Brave takes on the creepy websites that override your privacy settings</title><link>https://nsaneforums.com/news/security-privacy-news/brave-takes-on-the-creepy-websites-that-override-your-privacy-settings-r4659/</link><description><![CDATA[<h3>
	Even if you block 3rd-party cookies, bounce tracking can set them anyway. Until now.
</h3>

<div itemprop="articleBody">
	
	<p>
		Some websites just can't take "no" for an answer. Instead of respecting visitors' choice to block third-party cookies—the identifiers that track browsing activity as a user moves from site to site—they find sneaky ways to bypass those settings. Now, makers of the Brave browser are taking action.
	</p>

	<p>
		 
	</p>

	<p>
		Earlier this week, Brave Nightly—the testing and development version of the browser—rolled out a feature that's designed to prevent what's known as bounce tracking. The new feature, known as unlinkable bouncing, will roll out for general release in Brave version 1.37 slated for March 29.
	</p>

	<h2>
		Overriding privacy
	</h2>

	<p>
		Bounce tracking is one of the key ways websites circumvent third-party cookie blocking. When a browser prevents a website such as site.example from loading a third-party tracking cookie from a domain such as tracker.example, site.example pulls a fast one. When site.example detects that the tracker.example cookie can't be set, it instead redirects the browser to the tracker.example site, sets a cookie from that domain, and then redirects back to the original page or a new destination.
	</p>

	<p>
		 
	</p>

	<p>
		With that, the tracker.example cookie gets passed through a URL parameter and then gets stashed as a first-party cookie on the landing page. Once tracker.example places itself between enough of the sites a visitor browses, the tracker eventually builds a detailed profile of that activity, including the user's interests and demographics.
	</p>

	<p>
		 
	</p>

	<p>
		The image below shows how third-party cooking blocking is supposed to work. When the user moves from site-one.example to cats.example and later from site-two.example to cars.example, there's no way to track those movements as coming from the same person.
	</p>

	<p>
		 
	</p>

	<p>
		<img alt="bounce-tracking01-640x132.jpg" class="ipsImage" data-ratio="20.63" height="132" width="640" src="https://cdn.arstechnica.net/wp-content/uploads/2022/03/bounce-tracking01-640x132.jpg">
	</p>

	<figure>
		<figcaption>
			<div>
				<a href="https://brave.com/privacy-updates/11-debouncing/" rel="external nofollow">Brave</a>
			</div>
		</figcaption>
	</figure>

	<p>
		Bounce tracking circumvents this arrangement by inserting a third-party tracking site such as tracker.example in between the originating site and the cats.example or cars.example sites the user later browses to. Tracker.example then records that it was the user who visited both cats.example and cars.example.
	</p>

	<p>
		 
	</p>

	<p>
		<img alt="bounce-tracking02-640x132.jpg" class="ipsImage" data-ratio="20.63" height="132" width="640" src="https://cdn.arstechnica.net/wp-content/uploads/2022/03/bounce-tracking02-640x132.jpg">
	</p>

	<figure>
		<figcaption>
			<div>
				<a href="https://brave.com/privacy-updates/11-debouncing/" rel="external nofollow">Brave</a>
			</div>
		</figcaption>
	</figure>

	<p>
		While browsers that support third-party cookie blocking have existing mechanisms designed to thwart bounce tracking, this sneaky form of surveillance remains hard to defend against, since the browser doesn't know beforehand that it will be directed to tracker.example. That's where unlinkable bouncing comes in.
	</p>

	<h2>
		Ephemeral storage to the rescue
	</h2>

	<p>
		In a <a href="https://brave.com/privacy-updates/16-unlinkable-bouncing/" rel="external nofollow">post</a>, the Brave privacy team on Wednesday outlined the process that unlinkable bouncing uses. In a nutshell, unlinkable bouncing checks the site a user is about to visit against a list of URLs known to perform bounce tracking. When a destination site appears on the list and Brave has no cookies, localStorage, or other data related to it, the browser automatically creates a new, one-time browser storage area for the site.
	</p>

	<p>
		 
	</p>

	<p>
		Once a user leaves the tracking site, Brave deletes the temporary storage. Because the data is no longer stored, the tracking site will be unable to re-identify the user the next time they are bounced through it.
	</p>

	<p>
		 
	</p>

	<p>
		Brave has several other ways to prevent site tracking. They include query-parameter stripping, debouncing, and (when blocking is set to aggressive mode) a warning to give concerned users a chance to back out.
	</p>

	<p>
		 
	</p>

	<p>
		The Brave privacy team explained the full flow as follows:
	</p>

	<p>
		 
	</p>

	<ol>
		<li>
			When navigating to a new URL, Brave checks to see if that URL is a known bounce-tracking (or otherwise harmful) site, by consulting filter lists (both <a href="https://github.com/brave/adblock-resources/blob/master/filter_lists/default.json" rel="external nofollow">crowdsourced</a> and <a href="https://github.com/brave/adblock-resources/blob/master/metadata.json" rel="external nofollow">Brave-generated</a>).
		</li>
		<li>
			If that URL appears in a filter list, the browser checks the Trackers &amp; ads blocked shields setting for the destination site. If that setting is Aggressive, the user is presented with a warning for whether they want to continue with the navigation, as <a href="https://brave.com/privacy-updates/8-grab-bag-2/#additional-bounce-tracking-protections" rel="external nofollow">described in a prior blog post</a>.
		</li>
		<li>
			If the user has Trackers &amp; ads blocked in the default setting (or decides to continue with the navigation in the Aggressive setting), the browser then checks the first-party DOM storage values (cookies, <a href="https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage" rel="external nofollow">localStorage</a>, etc.) for the destination site. If the user has any existing stored values, the navigation continues using the existing stored values (in other words, Unlinkable Bouncing is not applied). If no DOM storage values exist for the destination site, the browser creates a new, temporary browser storage area for the destination site.
		</li>
		<li>
			<a href="/privacy-updates/8-grab-bag-2/#ephemeral-storage-keep-alive" rel="">Soon after you leave the suspected bounce-tracking site</a> (meaning no tabs are open for that site) the temporary storage is deleted, preventing the site from re-identifying you the next time you're bounced through the site.
		</li>
	</ol>

	<p>
		 
	</p>

	<p>
		Team members said that unlinkable bouncing is the first of four planned applications to implement what they call "first-party ephemeral storage." The set of techniques allow a site to identify visitors for only as long as they have it open. As a result, first-party ephemeral storage prevents the first-party site from re-identifying a user unless the user wants to be re-identified.
	</p>

	<p>
		 
	</p>

	<p>
		Using first-party ephemeral storage will be akin to clearing browser storage every time the user leaves the site, except it's easier and more targeted.
	</p>

	<p>
		 
	</p>

	<p>
		"This brings about a total shift in the Web's default behavior," the privacy team members wrote. "To date, browsers have assumed users want every site to remember them unless the user takes some explicit step against that remembering. Instead, Brave is working toward forgetfulness (and thus privacy) by default."
	</p>

	<p>
		 
	</p>

	<p>
		 
	</p>
</div>

<p>
	<a href="https://arstechnica.com/information-technology/2022/03/brave-has-a-plan-to-stymie-websites-that-override-your-privacy-settings/" rel="external nofollow">Brave takes on the creepy websites that override your privacy settings</a>
</p>
]]></description><guid isPermaLink="false">4659</guid><pubDate>Thu, 10 Mar 2022 04:16:37 +0000</pubDate></item><item><title>Microsoft tests new cloud-based Microsoft Defender for home users</title><link>https://nsaneforums.com/news/security-privacy-news/microsoft-tests-new-cloud-based-microsoft-defender-for-home-users-r4657/</link><description><![CDATA[<p>
	Microsoft has announced that the company's new cloud-based Microsoft Defender security solution has entered preview for home customers in the United States.
</p>

<p>
	 
</p>

<p>
	The new app has been announced with the release of Windows 11 Insider Preview Build 22572, now available in the Dev Channel (we were also able to install it on previously released Insider builds).
</p>

<p>
	 
</p>

<p>
	"Key to Microsoft Defender is the ability to view and manage your online security in one central dashboard view, across your devices, and your family member's devices," the Windows Insider team <a href="https://blogs.windows.com/windows-insider/2022/03/09/announcing-windows-11-insider-preview-build-22572/" rel="external nofollow" target="_blank">said</a>.
</p>

<p>
	 
</p>

<p>
	"Plus get added malware and phishing protections on your mobile devices. The ability to view your family's devices is currently only available in the Windows app."
</p>

<p>
	 
</p>

<p>
	Right now, Microsoft Defender can be downloaded as an app for Windows 10, Windows 11, Android, and iOS devices, with Redmond still working on a macOS app that will also be released to preview soon.
</p>

<p>
	 
</p>

<p>
	<img alt="Microsoft_Defender_threat.png" class="ipsImage" data-ratio="75.10" height="475" width="720" src="https://www.bleepstatic.com/images/news/u/1109292/2022/Microsoft_Defender_threat.png">
</p>

<div>
	<figure>
		<figcaption>
			Microsoft Defender threat alert (BleepingComputer) 
		</figcaption>
	</figure>
</div>

<p>
	The Microsoft Defender Preview provides users with a dashboard to manage and monitor their devices' security status, as well as malware protection and real-time threat scanning.
</p>

<p>
	 
</p>

<p>
	It also comes with safety alerts and recommendations, including real-time warnings about changes to your devices' security status and suggestions to keep your data and devices secure.
</p>

<p>
	 
</p>

<p>
	Microsoft says that malware protection is available for Windows PCs and Android phones, while anti-phishing protection is available on Android and iOS phones. Malware protection is not supported on iPhones because Apple already provides it.
</p>

<p>
	 
</p>

<p>
	While in preview, you can download and use the Microsoft Defender app across five devices per person, including a Windows computer, iPhone, or Android phone.
</p>

<p>
	 
</p>

<p>
	<img alt="Microsoft_Defender_iOS.jpg" class="ipsImage" data-ratio="75.10" height="540" width="548" src="https://www.bleepstatic.com/images/news/u/1109292/2022/Microsoft_Defender_iOS.jpg">
</p>

<div>
	<figure>
		<figcaption>
			Microsoft Defender iOS (BleepingComputer)
		</figcaption>
	</figure>
</div>

<h2>
	Hands-on with the Microsoft Defender Preview
</h2>

<p>
	While Microsoft paints a pretty picture of Microsoft Defender Preview's capabilities, in reality, the application is in its very early stages.
</p>

<p>
	 
</p>

<p>
	Today, BleepingComputer tested the Microsoft Defender preview, and the application is more of a front end to the underlying Windows Security infrastructure.
</p>

<p>
	 
</p>

<p>
	When using the app, we could add devices to our cloud dashboard and monitor their protection status. However, it is not possible to control any security feature on the main device or connected devices.
</p>

<p>
	 
</p>

<p>
	The new Microsoft Defender works as a front-end for Windows Security and a dashboard to see alerts and security recommendations for enrolled devices.
</p>

<p>
	 
</p>

<p>
	"In some situations, you'll be required to use the Windows Security app, but Microsoft Defender will connect you to that app," as Microsoft <a href="https://www.microsoft.com/en-us/microsoft-365/microsoft-defender-for-individuals" rel="external nofollow" target="_blank">explains</a>.
</p>

<p>
	 
</p>

<p>
	"For example, to run a manual scan on a Windows device or to manage your allow list, you must click on 'Manage in Windows Security' from within Microsoft Defender where you will receive additional guidance."
</p>

<p>
	 
</p>

<p>
	<img alt="Microsoft_Defender_Preview.jpg" class="ipsImage" data-ratio="75.10" height="540" width="603" src="https://www.bleepstatic.com/images/news/u/1109292/2022/Microsoft_Defender_Preview.jpg">
</p>

<div>
	<figure>
		<figcaption>
			Microsoft Defender Preview (BleepingComputer)
		</figcaption>
	</figure>
</div>

<p>
	BleepingComputer also conducted a test where we downloaded multiple malware samples to a connected device.
</p>

<p>
	 
</p>

<p>
	While these samples were detected and reflected (very briefly) in the Microsoft Defender Preview app, they never showed up in the security alerts of the cloud dashboard for a Windows 11 device, with the Defender dashboard continuing to say that the device was protected and did not have any issues.
</p>

<p>
	 
</p>

<p>
	However, the Microsoft Defender dashboard worked just fine for one of our test Windows 10 devices, displaying a "Needs attention" status after the malware was detected.
</p>

<p>
	 
</p>

<p>
	<img alt="Microsoft_Defender_Preview_attention.jpg" class="ipsImage" data-ratio="75.10" height="490" width="720" src="https://www.bleepstatic.com/images/news/u/1109292/2022/Microsoft_Defender_Preview_attention.jpg">
</p>

<div>
	<figure>
		<figcaption>
			Microsoft Defender Preview (BleepingComputer)
		</figcaption>
	</figure>
</div>

<p>
	You can get the Microsoft Defender app for Windows from the <a href="https://go.microsoft.com/fwlink/?linkid=2186900" rel="external nofollow" target="_blank">Microsoft Store</a>, iPhones from the <a href="https://go.microsoft.com/fwlink/?linkid=2187216" rel="external nofollow" target="_blank">App Store</a>, and Android phones via <a href="https://go.microsoft.com/fwlink/?linkid=2185746" rel="external nofollow" target="_blank">Google Play</a>.
</p>

<p>
	 
</p>

<p>
	More information on how you can add new devices to your account can be found on the <a href="https://go.microsoft.com/fwlink/?linkid=2187408" rel="external nofollow" target="_blank">Adding devices to your Microsoft Defender account</a> support page.
</p>

<p>
	 
</p>

<p>
	At the moment, you don't need to have a subscription to use Microsoft Defender Preview; however, the app will require a Microsoft 365 Family or Personal subscription.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.bleepingcomputer.com/news/microsoft/microsoft-tests-new-cloud-based-microsoft-defender-for-home-users/" rel="external nofollow">Microsoft tests new cloud-based Microsoft Defender for home users</a>
</p>
]]></description><guid isPermaLink="false">4657</guid><pubDate>Wed, 09 Mar 2022 20:41:30 +0000</pubDate></item><item><title>Intel, AMD, Arm warn of new speculative execution CPU bugs</title><link>https://nsaneforums.com/news/security-privacy-news/intel-amd-arm-warn-of-new-speculative-execution-cpu-bugs-r4649/</link><description><![CDATA[<p>
	Security researchers have found new a new way to bypass existing hardware-based defenses for speculative execution in modern computer processors from Intel, AMD, and Arm.
</p>

<p>
	 
</p>

<p>
	Today, the three CPU manufacturers have published advisories accompanied by mitigation updates and security recommendations to tackle recently discovered issues that allow leaking of sensitive information despite  isolation-based protections.
</p>

<h2>
	Speculative execution trouble
</h2>

<p>
	The speculative execution technique is designed to optimize CPU performance by running some tasks in advance (branch prediction) so the information is available when required. 
</p>

<p>
	 
</p>

<p>
	In 2018, researchers discovered a way to leak information derived from these proactive computations, naming the associated vulnerabilities <a href="https://www.bleepingcomputer.com/news/security/google-almost-all-cpus-since-1995-vulnerable-to-meltdown-and-spectre-flaws/" target="_blank" rel="external nofollow">Meltdown and Spectre</a>.
</p>

<p>
	 
</p>

<p>
	Since then, vendors have released software-based mitigations such as “<a href="https://www.bleepingcomputer.com/news/security/windows-10-spectre-2-mitigation-now-uses-retpoline-by-default/" target="_blank" rel="external nofollow">Retpoline</a>” that isolate indirect branches from speculative execution. Chipmakers have also addressed the issues with hardware fixes like the eIBRS from Intel and CSV2 from Arm.
</p>

<h2>
	Bypassing Spectre fixes
</h2>

<p>
	Researchers at VUSec detail in a <a href="http://www.vusec.net/projects/bhi-spectre-bhb/" rel="external nofollow" target="_blank">technical report</a> today a new method to bypass all existing mitigations by leveraging what they call Branch History Injection (BHI).
</p>

<p>
	 
</p>

<p>
	The paper underlines that while the hardware mitigations still prevent unprivileged attackers from injecting predictor entries for the kernel, relying on a global history to select the targets creates a previously unknown attack method.
</p>

<p>
	 
</p>

<p>
	A malicious actor with low privileges on the target system can poison this history to force the OS kernel to mispredict targets that can leak data.
</p>

<p>
	 
</p>

<p>
	To prove their point, the researchers also released a proof of concept (PoC), demonstrating arbitrary kernel memory leak, successfully disclosing the root hash password of a vulnerable system.
</p>

<p>
	 
</p>

<div class="ipsEmbeddedVideo" contenteditable="false">
	<div>
		<iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen="" frameborder="0" height="113" src="https://nsaneforums.com/applications/core/interface/index.html" width="200" data-embed-src="https://www.youtube.com/embed/537HUwV36ME?feature=oembed"></iframe>
	</div>
</div>

<p>
	 
</p>

<p>
	Intel responded to this finding by assigning two medium-severity vulnerabilities, <a href="https://www.intel.com/content/www/us/en/security-center/advisory/intel-sa-00598.html" rel="external nofollow" target="_blank">CVE-2022-0001 and CVE-2022-0002</a>, and recommending users to disable access to managed runtimes in privileged modes.
</p>

<p>
	 
</p>

<p>
	For a complete list of mitigation recommendations, check out <a href="https://www.intel.com/content/www/us/en/developer/articles/technical/software-security-guidance/technical-documentation/branch-history-injection.html" rel="external nofollow" target="_blank">this dedicated page</a>, while a list of all the affected processor models is <a href="https://www.intel.com/content/www/us/en/developer/topic-technology/software-security-guidance/processors-affected-consolidated-product-cpu-model.html" rel="external nofollow" target="_blank">available here</a>.
</p>

<p>
	 
</p>

<p>
	Arm has also <a href="https://developer.arm.com/support/arm-security-updates/speculative-processor-vulnerability/spectre-bhb" rel="external nofollow" target="_blank">published a security bulletin</a> on the issue, as the novel history poisoning attack affects several of its Cortex-A and Neoverse products.
</p>

<p>
	 
</p>

<p>
	VUsec has prepared a <a href="https://download.vusec.net/papers/bhi-spectre-bhb_sec22.pdf" rel="external nofollow" target="_blank">paper on the new BHI attack</a> that will be presented at the 31st USENIX Security Symposium this year.
</p>

<h2>
	Straight-line-speculation
</h2>

<p>
	In parallel news that coincide in disclosure, <a href="https://grsecurity.net/amd_branch_mispredictor_part_2_where_no_cpu_has_gone_before" rel="external nofollow" target="_blank">grsecurity</a> has published the details and a PoC that can leak confidential data from AMD processors via a new straight-line-speculation (SLS) attack method.
</p>

<p>
	 
</p>

<p>
	This new variant of SLS affects many AMD chips based on the Zen1 and Zen2 microarchitectures, including EPYC, Ryzen Threadripper, and Ryzen with integrated Radeon Graphics.
</p>

<p>
	 
</p>

<p>
	AMD has published a <a href="https://www.amd.com/en/corporate/product-security/bulletin/amd-sb-1026" rel="external nofollow" target="_blank">list of the affected products</a> and also <a href="https://www.amd.com/system/files/documents/software-techniques-for-managing-speculation.pdf" rel="external nofollow" target="_blank">a whitepaper</a> that offers security advice for the medium-severity flaw tracked as CVE-2021-26341.
</p>

<p>
	 
</p>

<p>
	As of now, AMD has not seen any examples of active exploitation of this security vulnerability in the wild, but it’s still important to apply the recommended mitigations.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.bleepingcomputer.com/news/security/intel-amd-arm-warn-of-new-speculative-execution-cpu-bugs/" rel="external nofollow">Intel, AMD, Arm warn of new speculative execution CPU bugs</a>
</p>
]]></description><guid isPermaLink="false">4649</guid><pubDate>Wed, 09 Mar 2022 19:59:36 +0000</pubDate></item><item><title>Linux has a big hole</title><link>https://nsaneforums.com/news/security-privacy-news/linux-has-a-big-hole-r4646/</link><description><![CDATA[<p>
	<strong>Dirty pipe “Most serious” Linux privilege-escalation bug </strong>
</p>

<p>
	 
</p>

<p>
	Linux has yet another high-severity vulnerability that makes it easy for untrusted users to execute code capable of carrying out a host of malicious actions, including installing backdoors, creating unauthorised user accounts, and modifying scripts or binaries used by privileged services or apps.
</p>

<p>
	 
</p>

<p>
	The vulnerability has been called Dirty Pipe and is the biggest hole disclosed since 2016, the year another high-severity and easy-to-exploit Linux flaw (named Dirty Cow) came to light as it was being used to hack a researcher's server.
</p>

<p>
	 
</p>

<p>
	For those who can’t remember 2016 Dirty Cow could be used to root any Android phone, regardless of the mobile OS version. Eleven months later, researchers unearthed 1,200 Android apps in third-party markets that maliciously exploited the flaw to do just that.
</p>

<p>
	 
</p>

<p>
	In Linux land a pipeline is two or more processes that are chained together so that the output text of one process (stdout) is passed directly as input (stdin) to the next one.
</p>

<p>
	 
</p>

<p>
	Tracked as CVE-2022-0847, the vulnerability came to light when a researcher for website builder CM4all was troubleshooting a series of corrupted files that kept appearing on a customer's Linux machine. After months of analysis, the researcher finally found that the customer's corrupted files were the result of a bug in the Linux kernel.
</p>

<p>
	 
</p>

<p>
	Max Kellermann of CM4all parent company Ionos figured out how to weaponise the vulnerability to allow anyone with an account to add an SSH key to the root user's account. With that, the untrusted user could remotely access the server with an SSH window that has full root privileges.
</p>

<p>
	 
</p>

<p>
	Other researchers quickly showed that the unauthorised creation of an SSH key was only one of many malicious actions an attacker can take when exploiting the vulnerability. This program, for instance, hijacks an SUID binary to create a root shell, while this one allows untrusted users to overwrite data in read-only files.
</p>

<p>
	 
</p>

<p>
	You can use Dirty Pipe to create a cron job that runs as a backdoor, adding a new user account to /etc/passwd + /etc/shadow (giving the new account root privileges), or modify a script or binary used by a privileged service.
</p>

<p>
	 
</p>

<p>
	The vulnerability first appeared in Linux kernel version 5.8, which was released in August 2020. The vulnerability persisted until last month, when it was fixed with the release of versions 5.16.11, 5.15.25, and 5.10.102.
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://www.fudzilla.com/news/54500-linux-has-a-big-hole" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">4646</guid><pubDate>Wed, 09 Mar 2022 17:12:04 +0000</pubDate></item><item><title>APC UPS zero-day bugs can remotely burn out devices, disable power</title><link>https://nsaneforums.com/news/security-privacy-news/apc-ups-zero-day-bugs-can-remotely-burn-out-devices-disable-power-r4643/</link><description><![CDATA[<p>
	A set of three critical zero-day vulnerabilities now tracked as TLStorm could let hackers take control of uninterruptible power supply (UPS) devices from APC, a subsidiary of Schneider Electric.
</p>

<p>
	 
</p>

<p>
	The flaws affect APC Smart-UPS systems that are popular in a variety of activity sectors, including governmental, healthcare, industrial, IT, and retail.
</p>

<p>
	 
</p>

<p>
	UPS devices act as emergency power backup solutions and are present in mission-critical environments such as data centers, industrial facilities, hospitals.
</p>

<p>
	 
</p>

<p>
	<img alt="TLStorm-VulnSys.jpg" class="ipsImage" data-ratio="75.10" height="540" width="538" src="https://www.bleepstatic.com/images/news/u/1100723/2022/Vulnerabilities/TLStorm/TLStorm-VulnSys.jpg">
</p>

<h3>
	Risk of physical impact
</h3>

<p>
	Researchers at Armis, a company providing security solutions for connected devices in enterprises, found the three issues in APC’s SmartConnect and Smart-UPS family of products.
</p>

<p>
	 
</p>

<p>
	Two of the vulnerabilities, CVE-2022-22805 and CVE-2022-22806 are in the implementation of the TLS (Transport Layer Security) protocol that connects the Smart-UPS devices with the “SmartConnect” feature to the Schneider Electric management cloud.
</p>

<p>
	 
</p>

<p>
	<img alt="TLStormBugs.jpg" class="ipsImage" data-ratio="75.10" height="405" width="720" src="https://www.bleepstatic.com/images/news/u/1100723/2022/Vulnerabilities/TLStorm/TLStormBugs.jpg">
</p>

<p>
	 
</p>

<p>
	The third one, identified as CVE-2022-0715, relates to the firmware of “almost all APC Smart-UPS devices,” which is not cryptographically signed and its authenticity cannot be verified when installed on the system.
</p>

<p>
	 
</p>

<p>
	While the firmware is encrypted (symmetric), it lacks a cryptographic signature, allowing threat actors to create a malicious version of it and deliver it as an update to target UPS devices to achieve remote code execution (RCE).
</p>

<p>
	 
</p>

<p>
	Armis researchers were able to exploit the flaw and build a malicious APC firmware version that was accepted by Smart-UPS devices as an official update, a process that is performed differently depending on the target:
</p>

<p>
	 
</p>

<ul>
	<li>
		The latest Smart-UPS devices featuring the SmartConnect cloud connection functionality can be upgraded from the cloud management console over the Internet
	</li>
	<li>
		Older Smart-UPS devices which use the Network Management Card (NMC) can be updated over the local network
	</li>
	<li>
		Most Smart-UPS devices can also be upgraded using a USB drive
	</li>
</ul>

<p>
	 
</p>

<p>
	Considering that vulnerable APC UPS units are used in about eight out of 10 companies - as per data from Armis - and the sensitive environments they serve (medical facilities, ICS network, server rooms), the implications can have significant physical consequences.
</p>

<p>
	 
</p>

<p>
	The TLS-related vulnerabilities that Armis discovered appear to be more severe as they can be exploited by an unauthenticated attacker without user interaction, in what is known as a zero-click attack.
</p>

<p>
	 
</p>

<div>
	<p>
		“[CVE-2022-22806 and CVE-2022-22805] involve the TLS connection between the UPS and the Schneider Electric cloud. Devices that support the SmartConnect feature automatically establish a TLS connection upon startup or whenever cloud connections are temporarily lost” - <a href="https://www.armis.com/research/tlstorm/" rel="external nofollow" target="_blank">Armis Labs</a>
	</p>

	<p>
		 
	</p>
</div>

<p>
	Both vulnerabilities are caused by improper TLS error handling in the TLS connection from the Smart-UPS to the Schneider Electric server, and they lead to remote code execution when properly exploited.
</p>

<p>
	 
</p>

<p>
	One of the security issues is an authentication bypass caused by “state confusion in the TLS handshake,” the other is a memory corruption bug.
</p>

<p>
	 
</p>

<p>
	In a blog post today, Armis shows how the vulnerabilities could be leveraged by a remote threat actor:
</p>

<p>
	 
</p>

<div class="ipsEmbeddedVideo" contenteditable="false">
	<div>
		<iframe allow="autoplay; fullscreen; picture-in-picture" allowfullscreen="" frameborder="0" height="360" src="https://player.vimeo.com/video/683449370?h=53eb067506&amp;app_id=122963" title="TLStorm: 3 vulnerabilities. Millions of devices at risk." width="640"></iframe>
	</div>
</div>

<h3>
	Mitigation recommendations
</h3>

<p>
	The researchers’ report explains the technical aspects for all three TLStorm vulnerabilities and provides a set of recommendations to secure UPS devices:
</p>

<p>
	 
</p>

<ol>
	<li>
		Install the patches available on the Schneider Electric website
	</li>
	<li>
		If you are using the NMC, change the default NMC password (“apc”) and install a publicly-signed SSL certificate so that an attacker on your network will not be able to intercept the new password. To further limit the attack surface of your NMC, refer to the Schneider Electric Security Handbook for <a href="https://www.se.com/il/en/download/document/SPD_LFLG-9VYK3D_EN/" rel="external nofollow">NMC 2</a> and <a href="https://www.se.com/il/en/download/document/SPD_CCON-BDYD7K_EN/" rel="external nofollow">NMC 3</a>.
	</li>
	<li>
		Deploy access control lists (ACLs) in which the UPS devices are only allowed to communicate with a small set of management devices and the Schneider Electric Cloud via encrypted communications.
	</li>
</ol>

<p>
	 
</p>

<p>
	Armis has also published <a href="https://info.armis.com/rs/645-PDC-047/images/Armis-TLStorm-WP%20%281%29.pdf" rel="external nofollow" target="_blank">technical white paper</a> with all the details of the research.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.bleepingcomputer.com/news/security/apc-ups-zero-day-bugs-can-remotely-burn-out-devices-disable-power/" rel="external nofollow">APC UPS zero-day bugs can remotely burn out devices, disable power</a>
</p>
]]></description><guid isPermaLink="false">4643</guid><pubDate>Wed, 09 Mar 2022 01:48:34 +0000</pubDate></item><item><title>Android's March 2022 security updates fix three critical bugs</title><link>https://nsaneforums.com/news/security-privacy-news/androids-march-2022-security-updates-fix-three-critical-bugs-r4639/</link><description><![CDATA[<p>
	Google has released the March 2022 security updates for Android 10, 11, and 12, addressing three critical severity flaws, one of which affects all devices running the latest version of the mobile OS.
</p>

<p>
	 
</p>

<p>
	Tracked as CVE-2021-39708, the flaw lies in the Android System component, and it's an escalation of privilege problem requiring no user interaction or additional execution privileges.
</p>

<p>
	 
</p>

<p>
	"The most severe of these issues is a critical security vulnerability in the System component that could lead to remote escalation of privilege with no additional execution privileges needed. User interaction is not needed for exploitation." - mentions <a href="https://source.android.com/security/bulletin/2022-03-01" rel="external nofollow" target="_blank">Google's bulletin</a>.
</p>

<p>
	 
</p>

<p>
	The other two critical flaws are CVE-2021-1942 and CVE-2021-35110, both affecting closed-source components on Qualcomm-based devices.
</p>

<p>
	 
</p>

<p>
	For a full list of which Qualcomm chipsets are affected by these two vulnerabilities, check out the chipmaker's <a href="https://www.qualcomm.com/company/product-security/bulletins/march-2022-bulletin" rel="external nofollow" target="_blank">security bulletin</a>.
</p>

<p>
	 
</p>

<p>
	No further technical details have been published for any of the fixed vulnerabilities, as doing so would put users running an older patch level at risk.
</p>

<p>
	 
</p>

<p>
	Other fixes that land with the March 2022 update are:
</p>

<p>
	 
</p>

<ul>
	<li>
		1 medium severity escalation of privilege flaw in Android runtime (version 12)
	</li>
	<li>
		5 high severity escalation of privileges flaws in Android Framework (versions 10, 11, 12)
	</li>
	<li>
		2 high severity denial of service flaws in Android Framework (version 12)
	</li>
	<li>
		1 high severity information disclosure in Media Framework (versions 10, 11, 12)
	</li>
	<li>
		8 high severity escalation of privilege flaws in System (versions 10, 11, 12)
	</li>
	<li>
		1 high severity information disclosure flaw in System (versions 10, 11, 12)
	</li>
	<li>
		4 high severity escalation of privilege flaws in Kernel
	</li>
	<li>
		1 high severity information disclosure in Kernel
	</li>
	<li>
		3 high severity flaws in MediaTek components
	</li>
	<li>
		10 high severity flaws in Qualcomm components
	</li>
</ul>

<p>
	 
</p>

<p>
	As is the case every month, Google has released two patch levels for March 2022, one denoted as "2022-03-01" and one as "2022-03-05".
</p>

<p>
	 
</p>

<p>
	The second patch level includes everything in the first set plus fixes for third-party closed source and Kernel components that may not apply to all devices.
</p>

<p>
	 
</p>

<p>
	As such, your device vendor may choose to push the first level to save on roll-out time, and it won't necessarily mean that you are left vulnerable to exploitation.
</p>

<p>
	 
</p>

<p>
	With the only exception being Google's Pixel line which receives these security updates immediately, all <a href="https://security.samsungmobile.com/securityUpdate.smsb" rel="external nofollow" target="_blank">other vendors</a> will need some time to bundle the patches for each of their models, as different hardware configurations require dedicated testing and fine-tuning.
</p>

<p>
	 
</p>

<p>
	If you are running anything older than Android 10, consider upgrading to a new and actively supported device or flashing your existing with a third-party Android ROM that's based on a recent AOSP version.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.bleepingcomputer.com/news/security/androids-march-2022-security-updates-fix-three-critical-bugs/" rel="external nofollow">Android's March 2022 security updates fix three critical bugs</a>
</p>
]]></description><guid isPermaLink="false">4639</guid><pubDate>Tue, 08 Mar 2022 22:48:17 +0000</pubDate></item><item><title>Google is acquiring cybersecurity firm Mandiant for $5.4 billion</title><link>https://nsaneforums.com/news/security-privacy-news/google-is-acquiring-cybersecurity-firm-mandiant-for-54-billion-r4620/</link><description><![CDATA[<p>
	<b><a href="https://www.googlecloudpresscorner.com/2022-03-08-mgc" rel="external nofollow">Google has announced</a> their intent to acquire cybersecurity company Mandiant for an astonishing $5.4 billion. </b>
</p>

<p>
	 
</p>

<p>
	<span class="ezoic-ad box-3 box-3103 adtester-container adtester-container-103" data-ez-name="mspoweruser_com-box-3"><span class="ezoic-ad" ezah="90" ezaw="728" id="div-gpt-ad-mspoweruser_com-box-3-0" style="position:relative;z-index:0;display:inline-block;padding:0;min-height:90px;min-width:728px"><script data-ezscrex="false" data-cfasync="false" style="display:none">if(typeof __ez_fad_position!='undefined'){__ez_fad_position('div-gpt-ad-mspoweruser_com-box-3-0')};</script></span></span>
</p>

<p>
	<span style="font-weight:400">As Google’s second-largest <a href="https://mspoweruser.com/google-acquires-audio-startups-to-expand-patent-portfolio-and-audio-product-innovations/" rel="external nofollow">acquisition</a> to date, following their purchase of Motorolla for $12.5 billion in 2012, this deal will see Mandiant becoming part of Google Cloud in order to complement the company’s “existing strengths in security.”</span>
</p>

<p>
	 
</p>

<p>
	<span style="font-weight:400">In the announcement, <a href="https://mspoweruser.com/google-confirms-android-12l-will-ship-on-tablets/" rel="external nofollow">Google</a> detailed how they’ll utilize Mandiant’s proven expertise in order to offer services in threat detection and intelligence, automation and response tools, testing and validation, and managed defence, as well as offering advisory services to enterprises. </span>
</p>

<p>
	 
</p>

<p>
	<span class="ezoic-ad medrectangle-3 medrectangle-3111 adtester-container adtester-container-111" data-ez-name="mspoweruser_com-medrectangle-3"><span class="ezoic-ad" ezah="250" ezaw="300" id="div-gpt-ad-mspoweruser_com-medrectangle-3-0" style="position:relative;z-index:0;display:inline-block;padding:0;min-height:250px;min-width:300px"><script data-ezscrex="false" data-cfasync="false" style="display:none">if(typeof __ez_fad_position!='undefined'){__ez_fad_position('div-gpt-ad-mspoweruser_com-medrectangle-3-0')};</script></span></span>
</p>

<p>
	<span style="font-weight:400">While Mandiant may not be a household name, the cybersecurity company earned fame and this staggering valuation through uncovering the SolarWinds attack in December of 2020. Believed to be backed by the Russian government, the SolarWinds attack compromised computers within the US federal government for almost a year before Mandiant discovered it. </span>
</p>

<p>
	 
</p>

<p>
	<span style="font-weight:400">“Organizations around the world are facing unprecedented cybersecurity challenges as the sophistication and severity of attacks that were previously used to target major governments are now being used to target companies in every industry,” Thomas Kurian, CEO of Google Cloud, stated in the announcement. </span>
</p>

<p>
	 
</p>

<p>
	<span style="font-weight:400">“We look forward to welcoming Mandiant to Google Cloud to further enhance our security operations suite and advisory services, and help customers address their most important security challenges.”</span>
</p>

<p>
	 
</p>

<p>
	<span class="ezoic-ad medrectangle-4 medrectangle-4112 adtester-container adtester-container-112" data-ez-name="mspoweruser_com-medrectangle-4"><span class="ezoic-ad" ezah="250" ezaw="250" id="div-gpt-ad-mspoweruser_com-medrectangle-4-0" style="position:relative;z-index:0;display:inline-block;padding:0;width:100%;max-width:1200px;margin-left:auto!important;margin-right:auto!important;min-height:90px;min-width:728px"><script data-ezscrex="false" data-cfasync="false" style="display:none">if(typeof __ez_fad_position!='undefined'){__ez_fad_position('div-gpt-ad-mspoweruser_com-medrectangle-4-0')};</script></span></span>
</p>

<p>
	 
</p>

<p>
	<a href="https://mspoweruser.com/google-is-acquiring-mandiant-for-5-billion/" rel="external nofollow">Google is acquiring cybersecurity firm Mandiant for $5.4 billion</a>
</p>
]]></description><guid isPermaLink="false">4620</guid><pubDate>Tue, 08 Mar 2022 17:33:18 +0000</pubDate></item><item><title>DDoS attacks now use new record-breaking amplification vector</title><link>https://nsaneforums.com/news/security-privacy-news/ddos-attacks-now-use-new-record-breaking-amplification-vector-r4616/</link><description><![CDATA[<p>
	A new reflection/amplification DDoS method is being used in attacks that provides a record-breaking amplification ratio of almost 4.3 billion to 1.
</p>

<p>
	 
</p>

<p>
	Distributed Denial of Service (DDoS) attacks target servers or networks with many requests and high volumes of data, aiming to deplete their available resources and cause a service outage.
</p>

<p>
	 
</p>

<p>
	The amplification ratio is critical when conducting attacks, as the higher the number, the easier it is for threat actors to overwhelm well-protected endpoints with less firepower.
</p>

<h2>
	A monstrous amplification level
</h2>

<p>
	As detailed in a report that Akamai shared with Bleeping Computer before publication, a new attack vector relies on the abuse of insecure devices that serve as DDoS reflectors/amplifiers.
</p>

<p>
	 
</p>

<p>
	Reflection attacks start with a small packet reflected inside a closed network while its size gets amplified with each bounce. When reaching the possible upper limit, the resulting volume of traffic is channeled to the target.
</p>

<p>
	 
</p>

<p>
	<img alt="amplify.jpg" class="ipsImage" data-ratio="75.10" height="405" width="720" src="https://www.bleepstatic.com/images/news/u/1220909/Diagrams/amplify.jpg">
</p>

<div>
	<figure>
		<figcaption>
			Diagram demonstrating a DDoS amplification attack (Link 11)
		</figcaption>
	</figure>
</div>

<p>
	For this new DDoS method, threat actors are abusing a vulnerability tracked as CVE-2022-26143 in a driver used by Mitel devices that incorporate the TP-240 VoIP interface, such as MiVoice Business Express and MiCollab.
</p>

<p>
	 
</p>

<p>
	“The abused service on affected Mitel systems is called tp240dvr (“TP-240 driver”) and runs as a software bridge to facilitate interactions with the TP-240 VoIP processing interface cards,” <a href="https://www.akamai.com/blog/security/phone-home-ddos-attack-vector" rel="external nofollow" target="_blank">Akamai explains in its report</a> on the vulnerability.
</p>

<p>
	 
</p>

<p>
	“The daemon listens for commands on UDP/10074 and isn’t meant to be exposed to the Internet, as confirmed by the manufacturer of these devices. It’s this exposure to the internet that ultimately allows it to be abused.”
</p>

<p>
	 
</p>

<p>
	Akamai has counted 2,600 exposed Mitel devices currently vulnerable to this amplification flaw, while the vendor is already handling remediation with the customers.
</p>

<p>
	 
</p>

<p>
	The particular driver features a traffic generation command designed to stress-test the clients, used for debugging and performance testing.
</p>

<p>
	 
</p>

<p>
	By abusing this command, attackers can generate massive network traffic from these devices. Unfortunately, this is possible because the risky command is activated by default.
</p>

<p>
	 
</p>

<p>
	On a positive note, the associated daemon runs on a single-thread mode preventing parallel leverage, and due to the limited hardware resources on Mitel devices, the potential for attack volume has a relatively low upper ceiling.
</p>

<p>
	 
</p>

<p>
	Last week, Akamai disclosed a very similar DDoS method called “TCP Middlebox Reflection,” which leverages vulnerable firewalls and content filtering policy enforcement systems in middleboxes to achieve an <a href="https://www.bleepingcomputer.com/news/security/content-filtering-devices-abused-for-65x-ddos-amplification/" target="_blank" rel="external nofollow">amplification factor of 65x</a>.
</p>

<h2>
	Attacks in the wild
</h2>

<p>
	The first signs of attacks abusing Mitel devices were noticed on January 8, 2022, while the first actual attacks leveraging the vulnerable driver began on February 18, 2022.
</p>

<p>
	 
</p>

<p>
	The targets were governments, commercial enterprises, financial institutions, logistic firms, broadband access ISPs, and other important organizations.
</p>

<p>
	 
</p>

<p>
	“Observed attacks were primarily predicated on packets-per-second, or throughput, and appeared to be UDP reflection/amplification attacks sourced from UDP/10074 that were mainly directed towards destination ports UDP/80 and UDP/443,”  details Akamai in their report.
</p>

<p>
	 
</p>

<p>
	“The single largest observed attack of this type to date was approximately 53 million packets-per-second (mpps) and 23 gigabits-persecond (gb/sec). The average packet size for that attack was approximately 60 bytes, with an attack duration of approximately ~5 minutes.”
</p>

<p>
	 
</p>

<p>
	One notable difference of this vector against most UDP reflection methodologies is that it can sustain lengthy DDoS attacks, lasting for up to 14 hours. 
</p>

<p>
	 
</p>

<p>
	When evaluated from this perspective, the packet amplification ratio reaches 4,294,967,296:1, and the attack traffic can go up to 400 mpps with a sustained flood of 393mb/sec.
</p>

<h2>
	Outlook and protection
</h2>

<p>
	Over the past month, DDoS attacks have become increasingly common, especially since Russia invaded Ukraine.
</p>

<p>
	 
</p>

<p>
	Even before the invasion, Ukrainian government agencies and banks <a href="https://www.bleepingcomputer.com/news/security/ukrainian-military-agencies-state-owned-banks-hit-by-ddos-attacks/" target="_blank" rel="external nofollow">suffered numerous DDoS attacks</a> that took down their websites with the aim of sowing chaos within the country.
</p>

<p>
	 
</p>

<p>
	Since then, DDoS attacks have been conducted by <a href="https://www.bleepingcomputer.com/news/security/ukraine-says-its-it-army-has-taken-down-key-russian-sites/" target="_blank" rel="external nofollow">Ukraine’s IT Army attacking Russian interests</a> and <a href="https://www.bleepingcomputer.com/news/security/ransomware-gangs-hackers-pick-sides-over-russia-invading-ukraine/" target="_blank" rel="external nofollow">supporters of Russia</a> attacking Ukrainian and western entities. 
</p>

<p>
	 
</p>

<p>
	With DDoS attacks becoming so widely used, it is essential to try and harden your infrastructure against these types of attacks, especially at the amplification levels seen in this new DDoS method.
</p>

<p>
	 
</p>

<p>
	Akamai says that monitoring UDP/10074 traffic and implementing active packet capture and analysts systems to block attacks using this port will help mitigate reflection/amplification attacks.
</p>

<p>
	 
</p>

<p>
	However, legitimate traffic may be using this port that would also be blocked.
</p>

<p>
	 
</p>

<p>
	The best way to prevent this new DDoS method is for organizations that use the TP-240 interface to follow Mitel’s remediation instructions, enforcing firewall rules to block malicious initiator packets or disable the abused command.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.bleepingcomputer.com/news/security/ddos-attacks-now-use-new-record-breaking-amplification-vector/" rel="external nofollow">DDoS attacks now use new record-breaking amplification vector</a>
</p>
]]></description><guid isPermaLink="false">4616</guid><pubDate>Tue, 08 Mar 2022 17:23:59 +0000</pubDate></item><item><title>New Linux bug gives root on all major distros, exploit released</title><link>https://nsaneforums.com/news/security-privacy-news/new-linux-bug-gives-root-on-all-major-distros-exploit-released-r4609/</link><description><![CDATA[<p>
	A new Linux vulnerability known as 'Dirty Pipe' allows local users to gain root privileges through publicly available exploits.
</p>

<p>
	 
</p>

<p>
	Today, security researcher Max Kellermann responsibly disclosed the 'Dirty Pipe' vulnerability and stated that it affects Linux Kernel 5.8 and later versions, even on Android devices.
</p>

<p>
	 
</p>

<p>
	The vulnerability is tracked as CVE-2022-0847 and allows a non-privileged user to inject and overwrite data in read-only files, including SUID processes that run as root.
</p>

<p>
	 
</p>

<p>
	Kellerman discovered the bug after tracking down a bug that was corrupting web server access logs for one of his customers.
</p>

<p>
	 
</p>

<p>
	Kellerman states that the vulnerability is similar to the <a href="https://dirtycow.ninja/" rel="external nofollow" target="_blank">Dirty COW vulnerability</a> (CVE-2016-5195) fixed in 2016.
</p>

<h2>
	Public exploits give root privileges 
</h2>

<p>
	As part of the <a href="https://dirtypipe.cm4all.com/" rel="external nofollow" target="_blank">Dirty Pipe disclosure</a>, Kellerman released a proof-of-concept (PoC) exploit that allows local users to inject their own data into sensitive read-only files, removing restrictions or modifying configurations to provide greater access than they usually would have.
</p>

<p>
	 
</p>

<p>
	For example, security researcher <a href="https://twitter.com/phithon_xg" rel="external nofollow" target="_blank">Phith0n</a> illustrated how they could use the exploit to modify the /etc/passwd file so that the root user does not have a password. Once this change is made, the non-privileged user could simply execute the 'su root' command to gain access to the root account.
</p>

<p>
	 
</p>

<div class="ipsEmbeddedOther" contenteditable="false">
	<iframe allowfullscreen="" class="ipsEmbed_finishedLoading" data-controller="core.front.core.autosizeiframe" data-embedid="embed8386229637" scrolling="no" src="https://nsaneforums.com/index.php?app=core&amp;module=system&amp;controller=embed&amp;url=https://twitter.com/phithon_xg/status/1500905126076157953?ref_src=twsrc%255Etfw%257Ctwcamp%255Etweetembed%257Ctwterm%255E1500905126076157953%257Ctwgr%255E%257Ctwcon%255Es1_%26ref_url=https://www.bleepingcomputer.com/news/security/new-linux-bug-gives-root-on-all-major-distros-exploit-released/" style="overflow: hidden; height: 742px;"></iframe>
</div>

<p>
	 
</p>

<p>
	However, an updated exploit by security researcher <a href="https://twitter.com/bl4sty" rel="external nofollow" role="link" target="_blank">BLASTY</a> was also publicly released today that makes it even easier to gain root privileges by patching the /usr/bin/su command to drop a root shell at /tmp/sh and then executing the script.
</p>

<p>
	 
</p>

<p>
	Once executed, the user gains root privileges, as demonstrated by BleepingComputer below in Ubuntu 20.04.3 LTS running the 5.13.0-27-generic kernel.
</p>

<p>
	 
</p>

<p>
	<img alt="dirtypipe-poc.jpg" class="ipsImage" data-ratio="72.92" height="302" width="720" src="https://www.bleepstatic.com/images/news/security/attacks/l/linux/dirtypipe/dirtypipe-poc.jpg">
</p>

<div>
	<figure>
		<figcaption>
			Demonstration of the CVE-2016-5195 Dirty Pipe vulnerability<br>
			Source: BleepingComputer
		</figcaption>
	</figure>
</div>

<p>
	The vulnerability was responsibly disclosed to various Linux maintainers starting on February 20th, 2022, including the Linux kernel security team and the Android Security Team.
</p>

<p>
	 
</p>

<p>
	While the bug has been fixed in Linux kernels 5.16.11, 5.15.25, and 5.10.102, many servers continue to run outdated kernels making the release of this exploit a significant issue to server administrators.
</p>

<p>
	 
</p>

<p>
	Furthermore, due to the ease of gaining root privileges using these exploits, it is only a matter of time before threat actors begin using the vulnerability when conducting attacks. The similar Dirty COW vulnerability was <a href="https://www.bleepingcomputer.com/news/security/first-android-malware-discovered-using-dirty-cow-exploit/" target="_blank" rel="external nofollow">previously used by malware</a>, even though it was harder to exploit.
</p>

<p>
	 
</p>

<p>
	This bug is especially concerning for web hosting providers who offer Linux shell access or universities that commonly provide shell access to multi-user Linux systems.
</p>

<p>
	 
</p>

<p>
	It has been a rough twelve months for Linux, with numerous high-profile privilege elevation vulnerabilities disclosed.
</p>

<p>
	 
</p>

<p>
	These include privilege elevation vulnerabilities in the Linux <a href="https://www.bleepingcomputer.com/news/security/15-year-old-linux-kernel-bugs-let-attackers-gain-root-privileges/" target="_blank" rel="external nofollow">iSCSI subsystem</a>, another <a href="https://www.bleepingcomputer.com/news/security/new-linux-kernel-bug-lets-you-get-root-on-most-modern-distros/" target="_blank" rel="external nofollow">kernel bug</a>, the <a href="https://www.bleepingcomputer.com/news/security/linux-ebpf-bug-gets-root-privileges-on-ubuntu-exploit-released/" target="_blank" rel="external nofollow">Extended Berkeley Packet Filter</a> (eBPF), and <a href="https://www.bleepingcomputer.com/news/security/linux-system-service-bug-gives-root-on-all-major-distros-exploit-released/" target="_blank" rel="external nofollow">Polkit's pkexec component</a>.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.bleepingcomputer.com/news/security/new-linux-bug-gives-root-on-all-major-distros-exploit-released/" rel="external nofollow">New Linux bug gives root on all major distros, exploit released</a>
</p>
]]></description><guid isPermaLink="false">4609</guid><pubDate>Mon, 07 Mar 2022 22:51:53 +0000</pubDate></item><item><title>Attackers can force Amazon Echos to hack themselves with self-issued commands</title><link>https://nsaneforums.com/news/security-privacy-news/attackers-can-force-amazon-echos-to-hack-themselves-with-self-issued-commands-r4593/</link><description><![CDATA[<h3>
	Popular “smart” device follows commands issued by its own speaker. What could go wrong?
</h3>

<div itemprop="articleBody">
	
	<p>
		Academic researchers have devised a new working exploit that commandeers Amazon Echo smart speakers and forces them to unlock doors, make phone calls and unauthorized purchases, and control furnaces, microwave ovens, and other smart appliances.
	</p>

	<p>
		 
	</p>

	<p>
		The attack works by using the device’s speaker to issue voice commands. As long as the speech contains the device wake word (usually “Alexa” or “Echo”) followed by a permissible command, the Echo will carry it out, researchers from Royal Holloway University in London and Italy’s University of Catania found. Even when devices require verbal confirmation before executing sensitive commands, it’s trivial to bypass the measure by adding the word “yes” about six seconds after issuing the command. Attackers can also exploit what the researchers call the "FVV," or full voice vulnerability, which allows Echos to make self-issued commands without temporarily reducing the device volume.
	</p>

	<h2>
		Alexa, go hack yourself
	</h2>

	<p>
		Because the hack uses Alexa functionality to force devices to make self-issued commands, the researchers have dubbed it "AvA," short for Alexa vs. Alexa. It requires only a few seconds of proximity to a vulnerable device while it’s turned on so an attacker can utter a voice command instructing it to pair with an attacker’s Bluetooth-enabled device. As long as the device remains within radio range of the Echo, the attacker will be able to issue commands.
	</p>

	<p>
		 
	</p>

	<p>
		The attack "is the first to exploit the vulnerability of self-issuing arbitrary commands on Echo devices, allowing an attacker to control them for a prolonged amount of time," the researchers wrote in a <a href="https://arxiv.org/pdf/2202.08619.pdf" rel="external nofollow">paper</a> published two weeks ago. “With this work, we remove the necessity of having an external speaker near the target device, increasing the overall likelihood of the attack.”
	</p>

	<p>
		 
	</p>

	<p>
		A variation of the attack uses a malicious radio station to generate the self-issued commands. That attack is no longer possible in the way shown in the paper following security patches that Echo-maker Amazon released in response to the research. The researchers have confirmed that the attacks work against 3rd- and 4th-generation Echo Dot devices.
	</p>

	<figure>
		<figcaption>
			<div>
				<img alt="ava-exploitation-flow-640x303.png" class="ipsImage" data-ratio="47.34" height="303" width="640" src="https://cdn.arstechnica.net/wp-content/uploads/2022/03/ava-exploitation-flow-640x303.png">
			</div>

			<div>
				Esposito et al.
			</div>
		</figcaption>
	</figure>

	<p>
		AvA begins when a vulnerable Echo device connects by Bluetooth to the attacker’s device (and for unpatched Echos, when they play the malicious radio station). From then on, the attacker can use a text-to-speech app or other means to stream voice commands. Here’s a video of AvA in action. All the variations of the attack remain viable, with the exception of what’s shown between 1:40 and 2:14:
	</p>

	<p>
		 
	</p>

	<div class="ipsEmbeddedVideo" contenteditable="false">
		<div>
			<iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen="" frameborder="0" height="113" src="https://nsaneforums.com/applications/core/interface/index.html" width="200" data-embed-src="https://www.youtube.com/embed/t-203SV_Eg8?feature=oembed"></iframe>
		</div>
	</div>

	<figure>
		<figcaption>
			<div>
				Alexa versus Alexa - Demo.
			</div>
		</figcaption>
	</figure>

	<p>
		The researchers found they could use AvA to force devices to carry out a host of commands, many with serious privacy or security consequences. Possible malicious actions include:
	</p>

	<p>
		 
	</p>

	<ul>
		<li>
			Controlling other smart appliances, such as turning off lights, turning on a smart microwave oven, setting the heating to an unsafe temperature, or unlocking smart door locks. As noted earlier, when Echos require confirmation, the adversary only needs to append a “yes” to the command about six seconds after the request.
		</li>
		<li>
			Call any phone number, including one controlled by the attacker, so that it’s possible to eavesdrop on nearby sounds. While Echos use a light to indicate that they are making a call, devices are not always visible to users, and less experienced users may not know what the light means.
		</li>
		<li>
			Making unauthorized purchases using the victim’s Amazon account. Although Amazon will send an email notifying the victim of the purchase, the email may be missed or the user may lose trust in Amazon. Alternatively, attackers can also delete items already in the account shopping cart.
		</li>
		<li>
			Tampering with a user’s previously linked calendar to add, move, delete, or modify events.
		</li>
		<li>
			Impersonate skills or start any skill of the attacker’s choice. This, in turn, could allow attackers to obtain passwords and personal data.
		</li>
		<li>
			Retrieve all utterances made by the victim. Using what the researchers call a "mask attack," an adversary can intercept commands and store them in a database. This could allow the adversary to extract private data, gather information on used skills, and infer user habits.
		</li>
	</ul>

	<p>
		 
	</p>

	<p>
		The researchers wrote:
	</p>

	<p>
		 
	</p>

	<p style="margin-left: 40px;">
		With these tests, we demonstrated that AvA can be used to give arbitrary commands of any type and length, with optimal results—in particular, an attacker can control smart lights with a 93% success rate, successfully buy unwanted items on Amazon 100% of the times, and tamper [with] a linked calendar with 88% success rate. Complex commands that have to be recognized correctly in their entirety to succeed, such as calling a phone number, have an almost optimal success rate, in this case 73%. Additionally, results shown in Table 7 demonstrate the attacker can successfully set up a Voice Masquerading Attack via our Mask Attack skill without being detected, and all issued utterances can be retrieved and stored in the attacker’s database, namely 41 in our case.
	</p>

	<div>
		 
	</div>

	<div>
		<img alt="ava-table7-640x470.png" class="ipsImage" data-ratio="73.44" height="470" width="640" src="https://cdn.arstechnica.net/wp-content/uploads/2022/03/ava-table7-640x470.png">
	</div>

	<div data-page="2">
		<div>
			<section>
				<div itemprop="articleBody">
					<figure>
						<figcaption>
							<div>
								Esposito et al.
							</div>

							<div>
								 
							</div>

							<div>
								<img alt="ava-table8-640x294.png" class="ipsImage" data-ratio="45.94" height="294" width="640" src="https://cdn.arstechnica.net/wp-content/uploads/2022/03/ava-table8-640x294.png">
							</div>
						</figcaption>
					</figure>

					<p>
						As noted earlier, Amazon has fixed several of the weaknesses, including one that used Alexa skills to self-wake devices, that made it possible to easily use radio stations to deliver self-issued commands. In a statement, company officials wrote:
					</p>

					<p>
						 
					</p>

					<p style="margin-left: 40px;">
						At Amazon, privacy and security are foundational to how we design and deliver every device, feature, and experience. We appreciate the work of independent security researchers who help bring potential issues to our attention and are committed to working with them to secure our devices. We fixed the remote self-wake issue with Alexa Skills caused by extended periods of silence resulting from break tags as demonstrated by the researchers. We also have systems in place to continually monitor live skills for potentially malicious behavior, including silent re-prompts. Any offending skills we identify are blocked during certification or quickly deactivated, and we are constantly improving these mechanisms to further protect our customers.
					</p>

					<h2>
						Always listening
					</h2>
					The research is the latest to underscore the risks posed by smart speakers. In 2019, researchers demonstrated how eight malicious apps they developed—four skills that passed Amazon’s vetting process and four actions that passed Google's vetting—<a href="https://arstechnica.com/information-technology/2019/10/alexa-and-google-home-abused-to-eavesdrop-and-phish-passwords/" rel="external nofollow">surreptitiously eavesdropped on users</a> and phished their passwords. The malicious skills or actions—which were hosted by Amazon and Google respectively—posed as simple apps for checking horoscopes, with the exception of one, which masqueraded as a random-number generator.

					<p>
						 
					</p>
					The same year, a different team of researchers showed how Siri, Alexa, and Google Assistant were vulnerable to attacks that <a href="https://arstechnica.com/information-technology/2019/11/researchers-hack-siri-alexa-and-google-home-by-shining-lasers-at-them/" rel="external nofollow">used low-powered lasers</a> to inject inaudible—and sometimes invisible—commands into the devices and surreptitiously cause them to unlock doors, visit websites, and locate, unlock, and start vehicles. The lasers could be as far away as 360 feet from a vulnerable device. The light-based commands could also be sent from one building to another and penetrate glass when a vulnerable device is located near a closed window.

					<p>
						 
					</p>

					<p>
						The researchers behind AvA are Sergio Esposito and Daniele Sgandurra of Royal Holloway University and Giampaolo Bella of the University of Catania. As a countermeasure to make attacks less likely, they recommend that Echo users mute their microphones any time they’re not actively using their device.
					</p>

					<p>
						 
					</p>

					<p>
						“This makes it impossible to self-issue any command,” the researchers wrote on an <a href="https://www.ava-attack.org/" rel="external nofollow">informational website</a>. “Additionally, if the microphone is unmuted only when you are near Echo, you will be able to hear the self-issued commands, hence being able to timely react to them (powering off Echo, canceling an order that the attacker has placed with your Amazon account, e.g.).”
					</p>

					<p>
						 
					</p>

					<p>
						People can always exit a skill by saying, "Alexa, quit" or "Alexa, cancel." Users can also enable an audible indicator that is played after the Echo device detects the wake word.
					</p>

					<p>
						 
					</p>

					<p>
						Amazon has rated the threat posed by AvA as having “medium” severity. The requirement to have brief proximity to the device for Bluetooth pairing means AvA exploits don’t work over the Internet, and even when an adversary successfully pairs the Echo with a Bluetooth device, the latter device must remain within radio range. The attack may nonetheless be viable for domestic partner abusers, malicious insiders, or other people who have fleeting access to a vulnerable Echo.
					</p>
				</div>
			</section>
		</div>
	</div>

	<p>
		 
	</p>
</div>

<nav>
	 
</nav>

<p>
	<a href="https://arstechnica.com/information-technology/2022/03/attackers-can-force-amazon-echos-to-hack-themselves-with-self-issued-commands/" rel="external nofollow">Attackers can force Amazon Echos to hack themselves with self-issued commands</a>
</p>
]]></description><guid isPermaLink="false">4593</guid><pubDate>Sun, 06 Mar 2022 20:50:01 +0000</pubDate></item><item><title>Malware now using stolen NVIDIA code signing certificates</title><link>https://nsaneforums.com/news/security-privacy-news/malware-now-using-stolen-nvidia-code-signing-certificates-r4589/</link><description><![CDATA[<p>
	Threat actors are using stolen NVIDIA code signing certificates to sign malware to appear trustworthy and allow malicious drivers to be loaded in Windows.
</p>

<p>
	 
</p>

<p>
	This week, NVIDIA confirmed that they suffered a cyberattack that allowed threat actors to steal employee credentials and proprietary data.
</p>

<p>
	 
</p>

<p>
	The extortion group, known as Lapsus$, states that they stole 1TB of data during the attack and began leaking the data online after NVIDIA refused to negotiate with them.
</p>

<p>
	 
</p>

<p>
	<img alt="nvidia-telegram.jpg" class="ipsImage" data-ratio="75.10" height="431" width="720" src="https://www.bleepstatic.com/images/news/security/e/extortion/nvidia/lapsus/nvidia-telegram.jpg">
</p>

<div>
	<figure>
		<figcaption>
			Lapsus$ messages about the NVIDIA attack
		</figcaption>
	</figure>
</div>

<p>
	The leak includes two stolen code-signing certificates used by NVIDIA developers to sign their drivers and executables.
</p>

<p>
	 
</p>

<div class="ipsEmbeddedOther" contenteditable="false">
	<iframe allowfullscreen="" class="ipsEmbed_finishedLoading" data-controller="core.front.core.autosizeiframe" data-embedid="embed9436481074" scrolling="no" src="https://nsaneforums.com/index.php?app=core&amp;module=system&amp;controller=embed&amp;url=https://twitter.com/BillDemirkapi/status/1499437244830175236?ref_src=twsrc%255Etfw%257Ctwcamp%255Etweetembed%257Ctwterm%255E1499437244830175236%257Ctwgr%255E%257Ctwcon%255Es1_%26ref_url=https://www.bleepingcomputer.com/news/security/malware-now-using-stolen-nvidia-code-signing-certificates/" style="overflow: hidden; height: 634px;"></iframe>
</div>

<p>
	 
</p>

<p>
	A code-signing certificate allows developers to digitally sign executables and drivers so that Windows and end-users can verify the file's owner and whether they have been tampered with by a third party. 
</p>

<p>
	 
</p>

<p>
	To increase security in Windows, Microsoft also requires kernel-mode drivers to be code signed before the operating system will load them.
</p>

<h2>
	NVIDIA certificates used to sign malware
</h2>

<p>
	After Lapsus$ leaked NVIDIA's code-signing certificates, <a href="https://twitter.com/cyb3rops/status/1499514240008437762" rel="external nofollow" target="_blank">security researchers quickly found</a> that the certificates were being used to sign malware and other tools used by threat actors.
</p>

<p>
	 
</p>

<p>
	According to samples uploaded to the VirusTotal malware scanning service, the stolen certificates were used to sign various malware and hacking tools, such as Cobalt Strike beacons, Mimikatz, backdoors, and remote access trojans.
</p>

<p>
	 
</p>

<p>
	For example, one threat actor used the certificate to sign a Quasar remote access trojan [<a href="https://www.virustotal.com/gui/file/065077fa74c211adf9563f00e57b5daf9594e72cea15b1c470d41b756c3b87e1" rel="external nofollow" target="_blank">VirusTotal</a>], while someone else used the certificate to sign a Windows driver [<a href="https://www.virustotal.com/gui/file/2f578cb0d97498b3482876c2f356035e3365e2c492e10513ff4e4159eebc44b8/detection" rel="external nofollow" target="_blank">VirusTotal</a>].
</p>

<p>
	 
</p>

<p>
	<img alt="quasar-trojan.jpg" class="ipsImage" data-ratio="82.44" height="540" width="400" src="https://www.bleepstatic.com/images/news/security/attacks/n/nvidia/code-signing-certs/quasar-trojan.jpg">
</p>

<div>
	<figure>
		<figcaption>
			Quasar RAT signed by NVIDIA certificate
		</figcaption>
	</figure>
</div>

<p>
	Security researchers <a href="https://twitter.com/GossiTheDog" rel="external nofollow" role="link" target="_blank">Kevin Beaumont</a> and <a href="https://twitter.com/wdormann" rel="external nofollow" role="link" target="_blank">Will Dormann</a> shared that the stolen certificates utilize the following serial numbers:
</p>

<pre style="margin-left: 40px;">43BB437D609866286DD839E1D00309F5
14781bc862e8dc503a559346f5dcc518</pre>

<p>
	Some of the files were likely uploaded to VirusTotal by security researchers but others appear to be used by threat actors for malware campaigns [<a href="https://www.virustotal.com/gui/file/a0aa66f6639e2b54a908115571c85285598845d3e52888fe27c6b35f6900fe56/detection" rel="external nofollow" target="_blank">1</a>, <a href="https://www.virustotal.com/gui/file/a7c3ce181e5c3956bb6b9b92e862b6fea6d6d3be1a38321ebb84428dde127677/relations" rel="external nofollow" target="_blank">2</a>].
</p>

<p>
	 
</p>

<p>
	While both stolen NVIDIA certificates are expired, Windows will still allow a driver signed with the certificates to be loaded in the operating system.
</p>

<p>
	 
</p>

<p>
	Therefore, using these stolen certificates, threat actors gain the advantage of making their programs look like legitimate NVIDIA programs and allowing malicious drivers to be loaded by Windows.
</p>

<p>
	 
</p>

<p>
	<img alt="signed-malware.jpg" class="ipsImage" data-ratio="100.75" height="540" width="450" src="https://www.bleepstatic.com/images/news/security/attacks/n/nvidia/code-signing-certs/signed-malware.jpg">
</p>

<div>
	<figure>
		<figcaption>
			Signed Quasar RAT sample
		</figcaption>
	</figure>
</div>

<p>
	To prevent known vulnerable drivers from being loaded in Windows, David Weston, director of enterprise and OS security at Microsoft, tweeted that admins can configure <a href="https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/select-types-of-rules-to-create" rel="external nofollow" target="_blank">Windows Defender Application Control policies</a> to control what NVIDIA drivers can be loaded.
</p>

<p>
	 
</p>

<div class="ipsEmbeddedOther" contenteditable="false">
	<iframe allowfullscreen="" class="ipsEmbed_finishedLoading" data-controller="core.front.core.autosizeiframe" data-embedid="embed2278175786" scrolling="no" src="https://nsaneforums.com/index.php?app=core&amp;module=system&amp;controller=embed&amp;url=https://twitter.com/dwizzzleMSFT/status/1499527802382471188?ref_src=twsrc%255Etfw%257Ctwcamp%255Etweetembed%257Ctwterm%255E1499527802382471188%257Ctwgr%255E%257Ctwcon%255Es1_%26ref_url=https://www.bleepingcomputer.com/news/security/malware-now-using-stolen-nvidia-code-signing-certificates/" style="overflow: hidden; height: 432px;"></iframe>
</div>

<p>
	 
</p>

<p>
	However, using WDAC is not an easy task, especially for non-IT Windows users.
</p>

<p>
	 
</p>

<p>
	Due to the potential for abuse, it is hoped that the stolen certificates will be added to Microsoft's certificate revocation list in the future to prevent malicious drivers from loading in Windows.
</p>

<p>
	 
</p>

<p>
	However, doing so will cause legitimate NVIDIA drivers to be blocked as well, so we will likely not see this happening soon.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.bleepingcomputer.com/news/security/malware-now-using-stolen-nvidia-code-signing-certificates/" rel="external nofollow">Malware now using stolen NVIDIA code signing certificates</a>
</p>
]]></description><guid isPermaLink="false">4589</guid><pubDate>Sat, 05 Mar 2022 23:31:27 +0000</pubDate></item><item><title>As Nvidia hacker deadline looms, 71,000 employee accounts have reportedly been exposed</title><link>https://nsaneforums.com/news/security-privacy-news/as-nvidia-hacker-deadline-looms-71000-employee-accounts-have-reportedly-been-exposed-r4579/</link><description><![CDATA[<h3>
	Have I Been Pwned says the hackers cracked Nvidia employees’ emails
</h3>

<p>
	 
</p>

<p>
	Nvidia never denied that it got hacked. The GPU giant just didn’t say all that much about what happened, either.
</p>

<p>
	 
</p>

<p>
	But now — as we wait to see whether the hackers make good <a href="https://www.theverge.com/2022/3/1/22957212/nvidia-confirms-hack-proprietary-information-lapsus" rel="external nofollow">on their threat to dump hundreds of gigabytes of proprietary Nvidia data on the web</a>, including details about future graphics chips, by an unspecified Friday deadline — the compromised email alert website Have I Been Pwned suggests that the scope of the hack <a href="https://haveibeenpwned.com/PwnedWebsites#NVIDIA" rel="external nofollow">includes a staggering 71,000 employee emails and hashes</a> that may have allowed the hackers to crack their passwords (via <a href="https://techcrunch.com/2022/03/04/nvidia-ransomware-hackers-demands/" rel="external nofollow">TechCrunch</a>).
</p>

<p>
	 
</p>

<p>
	It’s not clear how Have I Been Pwned obtained this info, and Nvidia won’t say. Nvidia would not confirm or deny to The Verge whether 71,000 employee credentials have been compromised, and it would not say whether it plans to comply with any of the hackers’ demands.
</p>

<p>
	 
</p>

<p>
	It is worth noting that Nvidia has far fewer than 71,000 employees — <a href="https://investor.nvidia.com/financial-info/annual-reports-and-proxies/default.aspx" rel="external nofollow">its last annual report</a> lists 18,975 employees across 29 countries, though it’s possible the compromised email addresses include prior employees and aliases for groups of employees. (Companies that rely heavily on email often have a lot of mailing lists.) <a data-cdata='{"rewritten_url":"https://go.redirectingat.com?id=66960X1514734\u0026xs=1\u0026url=https://www.telegraph.co.uk/business/2022/02/25/us-microchip-powerhouse-nvidia-hit-cyber-attack/\u0026referrer=theverge.com\u0026sref=https://www.theverge.com/2022/3/4/22962217/nvidia-hack-lapsus-have-i-been-pwned-email-breach-password\u0026xcust=___vg__p_22726258__m_m-placeholder__s_s-placeholder__t_w__c_c-placeholder__r_r-placeholder__d_d-placeholder","subtag_max_length":50,"subtag_delim_length":3,"subtag_key":"xcust","subtag_data":{"id":"66960X1514734","xs":"1","url":"https://www.telegraph.co.uk/business/2022/02/25/us-microchip-powerhouse-nvidia-hit-cyber-attack/","referrer":"theverge.com","sref":"https://www.theverge.com/2022/3/4/22962217/nvidia-hack-lapsus-have-i-been-pwned-email-breach-password","xcust":"___vg__p_22726258__m_m-placeholder__s_s-placeholder__t_w__c_c-placeholder__r_r-placeholder__d_d-placeholder"},"encode_subtag":false}' has-subtag="true" href="https://go.redirectingat.com?id=66960X1514734&amp;xs=1&amp;url=https%3A%2F%2Fwww.telegraph.co.uk%2Fbusiness%2F2022%2F02%2F25%2Fus-microchip-powerhouse-nvidia-hit-cyber-attack%2F&amp;referrer=theverge.com&amp;sref=https%3A%2F%2Fwww.theverge.com%2F2022%2F3%2F4%2F22962217%2Fnvidia-hack-lapsus-have-i-been-pwned-email-breach-password" rel="external nofollow" target="_blank">The Telegraph’s initial report suggested</a> that the company’s internal systems, including email, had been “completely compromised,” and a leak of 71,000 employee credentials would line up with that.
</p>

<p>
	 
</p>

<p>
	Here is all that Nvidia is actually saying today, via spokesperson Hector Marinez:
</p>

<p>
	 
</p>

<p>
	On February 23, 2022, NVIDIA became aware of a cybersecurity incident which impacted IT resources. Shortly after discovering the incident, we further hardened our network, engaged cybersecurity incident response experts, and notified law enforcement.
</p>

<p>
	 
</p>

<p>
	We have no evidence of ransomware being deployed on the NVIDIA environment or that this is related to the Russia-Ukraine conflict. However, we are aware that the threat actor took employee credentials and some NVIDIA proprietary information from our systems and has begun leaking it online. Our team is working to analyze that information. We do not anticipate any disruption to our business or our ability to serve our customers as a result of the incident.
</p>

<p>
	 
</p>

<p>
	Security is a continuous process that we take very seriously at NVIDIA – and we invest in the protection and quality of our code and products daily.
</p>

<p>
	 
</p>

<p>
	That’s what we’d heard previously, and <a href="https://nvidia.custhelp.com/app/answers/detail/a_id/5333" rel="external nofollow">Nvidia’s cybersecurity incident response page</a> hasn’t been updated since March 1st, either.
</p>

<p>
	 
</p>

<p>
	The LAPSUS$ hacking group, which has taken credit for the breach, had an unusually populist demand: it stated that it wants Nvidia to open source its GPU drivers forever and remove <a href="https://www.theverge.com/2021/5/18/22441847/nvidia-rtx-3080-3070-ethereum-mining-drivers-limit-cryptocurrency" rel="external nofollow">its Ethereum cryptocurrency mining nerf</a> from all Nvidia 30-series GPUs (such as newer models of the RTX 3080) rather than directly asking for cash.
</p>

<p>
	 
</p>

<p>
	But they clearly want cash, too. The hackers have also publicly stated that they’ll sell a bypass for the crypto nerf for $1 million, and this morning, they briefly posted a message suggesting that today’s leak would be delayed while they discussed terms with a would-be buyer of Nvidia’s source code.
</p>

<p>
	 
</p>

<p>
	If Nvidia does pay up, something that’s not unheard of in these data ransom situations, I wouldn’t necessarily expect to hear about it anytime soon. It won’t necessarily be in either party’s best interests to say so. But if Nvidia doesn’t pay or comply and LAPSUS$ does have the data it claims, things might be about to get interesting.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.theverge.com/2022/3/4/22962217/nvidia-hack-lapsus-have-i-been-pwned-email-breach-password" rel="external nofollow">As Nvidia hacker deadline looms, 71,000 employee accounts have reportedly been exposed</a>
</p>
]]></description><guid isPermaLink="false">4579</guid><pubDate>Sat, 05 Mar 2022 02:47:19 +0000</pubDate></item><item><title>Hackers leak 190GB of alleged Samsung data, source code</title><link>https://nsaneforums.com/news/security-privacy-news/hackers-leak-190gb-of-alleged-samsung-data-source-code-r4578/</link><description><![CDATA[<p>
	The Lapsus$ data extortion group leaked today a huge collection of confidential data they claim to be from Samsung Electronics, the South Korean giant consumer electronics company.
</p>

<p>
	 
</p>

<p>
	The leak comes less than a week after Lapsus$ released a 20GB document archive from <a href="https://www.bleepingcomputer.com/news/security/hackers-to-nvidia-remove-mining-cap-or-we-leak-hardware-data/" rel="external nofollow">1TB of data stolen from Nvidia</a> GPU designer.
</p>

<h3>
	Gang teases Samsung data leak
</h3>

<p>
	In a note posted earlier today, the extortion gang teased about releasing Samsung data with a snapshot of C/C++ directives in Samsung software.
</p>

<p>
	 
</p>

<p>
	<img alt="LapsusSamsungTease.jpg" class="ipsImage" data-ratio="75.10" height="389" width="720" src="https://www.bleepstatic.com/images/news/u/1100723/data-leaks/Samsung/LapsusSamsungTease.jpg">
</p>

<p>
	 
</p>

<p>
	Shortly after teasing their followers, Lapsus$ published a description of the upcoming leak, saying that it contains “confidential Samsung source code” originating from a breach.
</p>

<p>
	 
</p>

<ul>
	<li>
		source code for every Trusted Applet (TA) installed in Samsung’s TrustZone environment used for sensitive operations (e.g. hardware cryptography, binary encryption, access control)
	</li>
	<li>
		algorithms for all biometric unlock operations
	</li>
	<li>
		bootloader source code for all recent Samsung devices
	</li>
	<li>
		confidential source code from Qualcomm
	</li>
	<li>
		source code for Samsung’s activation servers
	</li>
	<li>
		full source code for technology used for authorizing and authenticating Samsung accounts, including APIs and services
	</li>
</ul>

<p>
	 
</p>

<p>
	If the details above are accurate, Samsung has suffered a major data breach that could cause huge damage to the company.
</p>

<p>
	 
</p>

<p>
	Lapsus$ split the leaked data in three compressed files that add to almost 190GB and made them available in a torrent that appears to be highly popular, with more than 400 peers sharing the content. The extortion group also said that it would deploy more servers to increase the download speed.
</p>

<p>
	 
</p>

<p>
	<img alt="LapsusSamsungLeak.jpg" class="ipsImage" data-ratio="38.79" height="249" width="642" src="https://www.bleepstatic.com/images/news/u/1100723/data-leaks/LapsusSamsungLeak.jpg">
</p>

<p>
	 
</p>

<p>
	Included in the torrent is also a brief description for the content available in each of the three archives:
</p>

<p>
	 
</p>

<ul>
	<li>
		Part 1 contains a dump of source code and related data about Security/Defense/Knox/Bootloader/TrustedApps and various other items
	</li>
	<li>
		Part 2 contains a dump of source code and related data about device security and encryption
	</li>
	<li>
		Part 3 contains various repositories from Samsung Github: mobile defense engineering, Samsung account backend, Samsung pass backend/frontend, and SES (Bixby, Smartthings, store)
	</li>
</ul>

<p>
	 
</p>

<p>
	It is unclear if Lapsus$ contacted Samsung for a ransom, as they claimed in the case of Nvidia.
</p>

<p>
	 
</p>

<p>
	BleepingComputer has contacted Samsung for a statement about the Lapsus$ data leak and will update the article when the company replies.
</p>

<p>
	 
</p>

<p>
	This is developing story
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.bleepingcomputer.com/news/security/hackers-leak-190gb-of-alleged-samsung-data-source-code/" rel="external nofollow">Hackers leak 190GB of alleged Samsung data, source code</a>
</p>
]]></description><guid isPermaLink="false">4578</guid><pubDate>Sat, 05 Mar 2022 02:45:09 +0000</pubDate></item><item><title>ESET, Intel partner to "turn the tide against ransomware" with ESET ransomware optimizations</title><link>https://nsaneforums.com/news/security-privacy-news/eset-intel-partner-to-turn-the-tide-against-ransomware-with-eset-ransomware-optimizations-r4562/</link><description><![CDATA[<p>
	ESET has announced that it has <a href="https://www.eset.com/int/about/newsroom/press-releases/company/eset-partners-with-intel-to-enhance-endpoint-security-with-hardware-based-ransomware-detection/" rel="external nofollow">joined hands with Intel to strengthen endpoint security with hardware-based ransomware detection</a>. Through this collaboration, the company seeks to incorporate Intel Threat Detection Technology (TDT) into its multi-layered cybersecurity technology suite.
</p>

<p>
	 
</p>

<p>
	Talking about Intel's partnership with ESET, Senior Director Ecosystem Partner Enablement, Intel Corp., Carla Rodriguez stated:
</p>

<p>
	 
</p>

<p style="margin-left: 40px;">
	Ransomware impacts both small businesses and large enterprises and can result in economic fallout on a global scale. We are excited to partner with ESET which delivers a true global deployment footprint. ESET’s ransomware optimizations will work across both Intel vPro Enterprise and our new Intel vPro Essentials targeted for SMBs. This delivers a compelling hardware and software bundle that delivers right-sized security for businesses of any size and delivers higher efficacy security when ESET software is run on Intel-based PCs. This is a major step forward to turn the tide against ransomware.
</p>

<p>
	 
</p>

<p>
	The integration of ransomware detection enhancements to ESET endpoint security resources will offer upgraded immunity to most detection bypasses. The potential of ESET endpoint security resources to identify derivative variants of ransomware threats will improve with the progress and evolution of Intel TDT machine learning.
</p>

<p>
	 
</p>

<p>
	ESET's Chief of Endpoint Solutions and Security Technologies, Előd Kironský stated:
</p>

<p>
	 
</p>

<p style="margin-left: 40px;">
	This collaboration recognizes the immediate boost in ransomware protection that integrating Intel’s hardware-based ransomware detection technology can deliver. Tapping into telemetry at the CPU level is an effective step we can take to enable improved tracking of malicious encryption. Basically, for ESET this means exposing ransomware as it attempts to avoid detection in memory. ESET has always believed in the multi-layered approach, and by adding the silicon layer we recognize that hardware-based security is the next milestone in battling threats.
</p>

<p>
	 
</p>

<p>
	The value proposition of this partnership, for ESET and its clients, abides in the parallel benefit of employing Intel TDT machine learning frameworks to aid in the identification of ransomware and the synchronous off-loading of the processing demands to the Intel integrated graphics controller (GPU), maintaining high overall system performance.
</p>

<p>
	 
</p>

<p>
	Commenting on the topic, Kironský further stated:
</p>

<p>
	 
</p>

<p style="margin-left: 40px;">
	Low impact to system performance is an area that ESET has always prioritized within its multi-layered software architecture and is a key selling point for many of our clients. Leveraging tech that can help us with prevention and protection, while also preserving performance is a win-win choice.
</p>

<p>
	 
</p>

<p>
	In a forthcoming release of ESET's endpoint security solutions later in the year, the benefits that this integration will bring will be made available. The company will focus on endpoints with 9th Gen, and newer Intel Core, and Intel vPro Windows-based PCs capable of having the potential of leveraging Intel TDT "out-of-the-box", in the initial phase of releases.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/eset-intel-partner-to-turn-the-tide-against-ransomware-with-eset-ransomware-optimizations/" rel="external nofollow">ESET, Intel partner to "turn the tide against ransomware" with ESET ransomware optimizations</a>
</p>
]]></description><guid isPermaLink="false">4562</guid><pubDate>Thu, 03 Mar 2022 22:43:20 +0000</pubDate></item><item><title>NVIDIA data breach exposed credentials of over 71,000 employees</title><link>https://nsaneforums.com/news/security-privacy-news/nvidia-data-breach-exposed-credentials-of-over-71000-employees-r4561/</link><description><![CDATA[<p>
	More than 71,000 employee credentials were stolen and leaked online following a data breach suffered by US chipmaker giant Nvidia last month.
</p>

<p>
	 
</p>

<p>
	The Have I Been Pwned data breach notification service has added data belonging to 71,335 compromised accounts to its database on Wednesday.
</p>

<p>
	 
</p>

<p>
	Have I Been Pwned says the stolen data contains "email addresses and NTLM password hashes, many of which were subsequently cracked and circulated within the hacking community."
</p>

<p>
	 
</p>

<p>
	Nvidia confirmed on March 1st that <a href="https://www.bleepingcomputer.com/news/security/nvidia-confirms-data-was-stolen-in-recent-cyberattack/" target="_blank" rel="external nofollow">its network was breached last month</a>, with the attackers gaining access to employees' login data and proprietary information.
</p>

<h2>
	Attack claimed by the Lapsus$ extortion gang
</h2>

<p>
	Nvidia said it was <a href="https://www.bleepingcomputer.com/news/security/gpu-giant-nvidia-is-investigating-a-potential-cyberattack/" target="_blank" rel="external nofollow">investigating an "incident"</a> that had reportedly impacted some of its systems, causing a two-day outage after news of the incident first came to light <a href="https://www.bleepingcomputer.com/news/security/gpu-giant-nvidia-is-investigating-a-potential-cyberattack/" target="_blank" rel="external nofollow">almost a week ago</a>.
</p>

<p>
	 
</p>

<p>
	The same day, a data extortion group dubbed Lapsus$ claimed the attack and provided details regarding the incident, including that they stole 1TB of data from Nvidia's network.
</p>

<p>
	 
</p>

<p>
	Over the weekend, <a href="https://www.bleepingcomputer.com/news/security/hackers-to-nvidia-remove-mining-cap-or-we-leak-hardware-data/" target="_blank" rel="external nofollow">Lapsus$ shared even more details about the intrusion</a> and leaking a 20GB archive containing data stolen from Nvidia's systems, as well as company employees' password hashes, 
</p>

<p>
	 
</p>

<p>
	The group <a href="https://www.bleepingcomputer.com/news/security/hackers-to-nvidia-remove-mining-cap-or-we-leak-hardware-data/" target="_blank" rel="external nofollow">threatened to leak hardware specifications info</a> unless lite hash rate (LHR) limitations from GeForce RTX 30 Series firmware were not removed.
</p>

<p>
	 
</p>

<p>
	Lapsus$ also <a href="https://twitter.com/serghei/status/1498779322450169859" rel="external nofollow" target="_blank">asked Nvidia to commit to open-sourcing their GPU drivers</a> for Windows, macOS, and Linux devices until Friday, March 4th, to avoid having stolen information on all recent GPUs, including the RTX 3090Ti, leaked online.
</p>

<p>
	 
</p>

<div>
	<figure>
		<figcaption>
			<p>
				<img alt="nvidia-telegram.jpg" class="ipsImage" data-ratio="75.10" height="431" width="720" src="https://www.bleepstatic.com/images/news/security/e/extortion/nvidia/lapsus/nvidia-telegram.jpg">
			</p>

			<p>
				Lapsus$ claiming the attack on Nvidia (BleepingComputer)
			</p>
		</figcaption>
	</figure>
</div>

<p>
	After refusing to confirm the extortionists' claims, Nvidia told BleepingComputer Tuesday that it detected "a cybersecurity incident which impacted IT resources" on February 23rd.
</p>

<p>
	 
</p>

<p>
	The company added that it found no evidence of a ransomware attack, although the threat actor still managed to steal employee credentials and proprietary data, confirming Lapsus$'s claims.
</p>

<p>
	 
</p>

<p>
	"However, we are aware that the threat actor took employee credentials and some NVIDIA proprietary information from our systems and has begun leaking it online. Our team is working to analyze that information," Nvidia told BleepingComputer.
</p>

<p>
	 
</p>

<p>
	"We do not anticipate any disruption to our business or our ability to serve our customers as a result of the incident."
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.bleepingcomputer.com/news/security/nvidia-data-breach-exposed-credentials-of-over-71-000-employees/" rel="external nofollow">NVIDIA data breach exposed credentials of over 71,000 employees</a>
</p>
]]></description><guid isPermaLink="false">4561</guid><pubDate>Thu, 03 Mar 2022 22:40:28 +0000</pubDate></item><item><title>Intel looks past Microsoft's Pluton, the TPM-like Windows 11 security chip inside Ryzen 6000</title><link>https://nsaneforums.com/news/security-privacy-news/intel-looks-past-microsofts-pluton-the-tpm-like-windows-11-security-chip-inside-ryzen-6000-r4560/</link><description><![CDATA[<p>
	At CES 2022, AMD unveiled its <a href="https://www.neowin.net/news/entire-amd-ryzen-rembrandt-lineup-zen-4-and-socket-am5-info-leaks-ahead-of-ces-reveal/" rel="external nofollow">Ryzen 6000 Rembrandt mobile APUs</a>. One of the key features of Rembrandt is the addition of Microsoft's new Pluton security processor making Ryzen 6000<a href="https://www.neowin.net/news/amd-ryzen-6000-rembrandt-will-be-the-first-processors-to-feature-microsoft-pluton/" rel="external nofollow"> the first do so in the market</a>.
</p>

<p>
	 
</p>

<p>
	<img alt="1641309371_amd_microsoft_pluton_story.jp" class="ipsImage" data-ratio="59.31" height="405" width="720" src="https://cdn.neow.in/news/images/uploaded/2022/01/1641309371_amd_microsoft_pluton_story.jpg">
</p>

<p>
	 
</p>

<p>
	Pluton was <a href="https://www.neowin.net/news/microsoft-pluton-is-a-new-security-chip-for-windows-pcs/" rel="external nofollow">first introduced by Microsoft back in 2020</a> with AMD, Intel, and Qualcomm as its partners. Hence, naturally after the AMD announcement of Pluton integration, one would expect Intel too to make a similar announcement sooner or later.
</p>

<p>
	 
</p>

<p>
	However, that does not seem to be the case as Intel via a spokesperson apparently informed The Register that Microsoft's Pluton won't be supported by Intel, at least in the 12th Gen Alder Lake family. "Intel's 12th Gen platforms do not support Pluton", the Intel spokesperson told The Register.
</p>

<p>
	 
</p>

<p>
	Pluton is said to offer <a href="https://www.neowin.net/news/microsoft-pluton-is-a-new-security-chip-for-windows-pcs/" rel="external nofollow">protection even better than a Trusted Platform Module (TPM)</a> as it is present inside the CPU and can protect from attacks against bus interfaces. Intel however is confident in its own TPM called Platform Trust Technology (PTT). Though, the company could support Pluton on its next <a href="https://www.neowin.net/news/tags/raptor_lake/" rel="external nofollow">13th Gen Raptor Lake CPUs</a>. And for now, the Intel is also enhancing its Threat Detection Technology (TDT) on 12th Gen vPro CPUs by <a href="https://www.eset.com/int/about/newsroom/press-releases/company/eset-partners-with-intel-to-enhance-endpoint-security-with-hardware-based-ransomware-detection/" rel="external nofollow">working with ESET</a>.
</p>

<p>
	 
</p>

<p>
	Oddly, Lenovo earlier confirmed it won't be <a href="https://www.neowin.net/news/lenovo-microsoft-pluton-security-chip-won039t-be-enabled-by-default-on-2022-thinkpads/" rel="external nofollow">enabling Pluton on its 2022 ThinkPad models, even on Ryzen 6000,</a> despite these supporting the feature. Thankfully, customers will have the ability to enable it though.
</p>

<p>
	 
</p>

<p>
	Source: <a href="https://www.theregister.com/2022/03/02/microsoft_pluton_chip/" rel="external nofollow">The Register</a>
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/intel-looks-past-microsoft039s-pluton-the-tpm-like-windows-11-security-chip-inside-ryzen-6000/" rel="external nofollow">Intel looks past Microsoft's Pluton, the TPM-like Windows 11 security chip inside Ryzen 6000</a>
</p>
]]></description><guid isPermaLink="false">4560</guid><pubDate>Thu, 03 Mar 2022 21:19:09 +0000</pubDate></item><item><title>DDoSers are using a potent new method to deliver attacks of unthinkable size</title><link>https://nsaneforums.com/news/security-privacy-news/ddosers-are-using-a-potent-new-method-to-deliver-attacks-of-unthinkable-size-r4532/</link><description><![CDATA[<h3>
	100,000 misconfigured servers are creating a new way to knock sites offline.
</h3>

<div class="article-content post-page" itemprop="articleBody">
	<p>
		 
	</p>

	<p>
		Last August, academic researchers discovered a potent new method for knocking sites offline: a fleet of misconfigured servers more than 100,000 strong that can amplify floods of junk data to once-unthinkable sizes. These attacks, in many cases, could result in an infinite routing loop that causes a self-perpetuating flood of traffic. Now, content-delivery network Akamai says attackers are exploiting the servers to target sites in the banking, travel, gaming, media, and web-hosting industries.
	</p>

	<p>
		 
	</p>

	<p>
		These servers—known as middleboxes—are deployed by nation-states such as China to censor restricted content and by large organizations to block sites pushing porn, gambling, and pirated downloads. The servers fail to follow <a href="https://en.wikipedia.org/wiki/Transmission_Control_Protocol" rel="external nofollow">transmission control protocol</a> specifications that require a <a href="https://docs.microsoft.com/en-us/troubleshoot/windows-server/networking/three-way-handshake-via-tcpip" rel="external nofollow">three-way handshake</a>—comprising an SYN packet sent by the client, a SYN+ACK response from the server, followed by a confirmation ACK packet from the client—before a connection is established.
	</p>

	<p>
		 
	</p>

	<p>
		This handshake limits the TCP-based app from being abused as amplifiers because the ACK confirmation must come from the gaming company or other target rather than an attacker spoofing the target’s IP address. But given the need to handle asymmetric routing, in which the middlebox can monitor packets delivered from the client but not the final destination that’s being censored or blocked, many such servers drop the requirement by design.
	</p>

	<h2>
		A hidden arsenal
	</h2>

	<p>
		Last August, researchers at the University of Maryland and the University of Colorado at Boulder <a href="https://geneva.cs.umd.edu/posts/usenix21-weaponizing-censors/" rel="external nofollow">published research</a> showing that there were hundreds of thousands of middleboxes that had the potential to deliver some of the most crippling distributed denial of service attacks ever seen.
	</p>

	<p>
		 
	</p>

	<p>
		For decades, people have used DDoSes to flood sites with more traffic or computational requests than the sites can handle, denying services to legitimate users. DDoSes are similar to the old prank of directing more calls to the pizza parlor than the parlor has phone lines to handle.
	</p>

	<p>
		 
	</p>

	<p>
		To maximize the damage and conserve resources, DDoSers often increase the firepower of their attacks though amplification vectors. Amplification works by spoofing the target’s IP address and bouncing a relatively small amount of data at a misconfigured server used for resolving domain names, syncing computer clocks, or speeding up database caching. Because the response the servers automatically send are dozens, hundreds, or thousands of times bigger than the request, the response overwhelms the spoofed target.
	</p>

	<p>
		 
	</p>

	<p>
		The researchers said that at least 100,000 of the middleboxes they identified exceeded the amplification factors from DNS servers (about 54x) and Network Time Protocol servers (about 556x). The researchers said that they identified hundreds of servers that amplified traffic at a higher multiplier than misconfigured servers using memcached, a database caching system for speeding up websites that can increase traffic volume by an astounding 51,000x.
	</p>

	<p>
		 
	</p>

	<p>
		Here are two illustrations that show how the attacks work:
	</p>

	<figure class="image shortcode-img full full-width" style="width:1080px">
		<p>
			<img alt="middlebox-ddos-amplification.gif" class="ipsImage" data-ratio="75.10" height="405" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2022/03/middlebox-ddos-amplification.gif">
		</p>

		<p>
			 
		</p>

		<p>
			<img alt="weaponizing-middleboxes.gif" class="ipsImage" data-ratio="75.10" height="405" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2022/03/weaponizing-middleboxes.gif">
		</p>
	</figure>

	<figure class="image shortcode-img full full-width" style="width:1080px">
		<figcaption class="caption">
			<div class="caption-credit">
				Bock et al.
			</div>
		</figcaption>
	</figure>

	<h2>
		Day of reckoning
	</h2>

	<p>
		The researchers said at the time that they had no evidence of middlebox DDoS amplification attacks being used actively in the wild but expected it would only be a matter of time until that happened.
	</p>

	<p>
		 
	</p>

	<p>
		On Tuesday, Akamai researchers <a href="https://www.akamai.com/blog/security/tcp-middlebox-reflection" rel="external nofollow">reported</a> that day has come. Over the past week, the Akamai researchers said, they have detected multiple DDoSes that used middleboxes precisely the way the academic researchers predicted. The attacks peaked at 11Gbps and 1.5 million packets per second.
	</p>

	<div class="pullbox sidebar story-sidebar right">
		<div class="story-sidebar-part">
			<div class="story-sidebar-part-content">
				 
			</div>
		</div>
	</div>
	While small when compared to the <a href="https://arstechnica.com/information-technology/2022/01/microsoft-fends-off-record-breaking-3-47-tbps-ddos-attack/" rel="external nofollow">biggest DDoSes</a>, both teams of researchers expect the attacks to get larger as DDoSers begin to optimize their attacks and identify more middleboxes that can be abused (the academic researchers didn’t release that data to prevent it from being abused).

	<p>
		 
	</p>

	<p>
		Kevin Bock, the lead researcher behind last August’s <a href="https://geneva.cs.umd.edu/papers/usenix-weaponizing-ddos.pdf" rel="external nofollow">research paper</a>, said DDoSers had plenty of incentives to reproduce the attacks his team theorized.
	</p>

	<p>
		 
	</p>

	<p>
		“Unfortunately, we weren’t surprised,” he told me upon learning of the active attacks. “We expected that it was only a matter of time until these attacks were being carried out in the wild because they are easy and highly effective. Perhaps worst of all, the attacks are new; as a result, many operators do not yet have defenses in place, which makes it that much more enticing to attackers.”
	</p>

	<p>
		 
	</p>

	<p>
		One of the middleboxes received a SYN packet with a 33-byte payload and responded with a 2,156-byte reply.
	</p>

	<p>
		 
	</p>

	<p>
		<img alt="65x-amplifier.png" class="ipsImage" data-ratio="85.94" height="440" width="512" src="https://cdn.arstechnica.net/wp-content/uploads/2022/03/65x-amplifier.png">
	</p>

	<figure class="image shortcode-img center full" style="width:512px">
		<figcaption class="caption">
			<div class="caption-credit">
				Akamai
			</div>
		</figcaption>
	</figure>

	<p>
		That translated to a factor of 65x, but the amplification has the potential to be much greater with more work.
	</p>

	<p>
		 
	</p>

	<p>
		<img alt="amplification-rank-640x318.png" class="ipsImage" data-ratio="49.69" height="318" width="640" src="https://cdn.arstechnica.net/wp-content/uploads/2022/03/amplification-rank-640x318.png">
	</p>

	<p>
		 
	</p>

	<p>
		Akamai researchers wrote:
	</p>

	<p>
		 
	</p>

	<p>
		Volumetric TCP attacks previously required an attacker to have access to a lot of machines and a lot of bandwidth, normally an arena reserved for very beefy machines with high-bandwidth connections and source spoofing capabilities or botnets. This is because until now there wasn’t a significant amplification attack for the TCP protocol; a small amount of amplification was possible, but it was considered almost negligible, or at the very least subpar and ineffectual when compared with the UDP alternatives.
	</p>

	<p>
		 
	</p>

	<p>
		If you wanted to marry a SYN flood with a volumetric attack, you would need to push a 1:1 ratio of bandwidth out to the victim, usually in the form of padded SYN packets. With the arrival of middlebox amplification, this long-held understanding of TCP attacks is no longer true. Now an attacker needs as little as 1/75th (in some cases) the amount of bandwidth from a volumetric standpoint, and because of quirks with some middlebox implementations, attackers get a SYN, ACK, or PSH+ACK flood for free.
	</p>

	<div class="column-wrapper" data-page="2">
		<div class="left-column">
			<section class="article-guts">
				<div class="article-content post-page" itemprop="articleBody">
					<h2>
						Infinite packet storms and complete resource exhaustion
					</h2>

					<p>
						Another middlebox Akamai encountered, for unknown reasons, responded to SYN packets with multiple SYN packets of its own. Servers that follow TCP specifications should never respond this way. The SYN packet responses were loaded with data. Even worse, the middlebox completely disregarded RST packets sent from the victim, which are supposed to terminate a connection.
					</p>

					<p>
						 
					</p>

					<p>
						<img alt="ignore-rst-packet.png" class="ipsImage" data-ratio="10.94" height="56" width="512" src="https://cdn.arstechnica.net/wp-content/uploads/2022/03/ignore-rst-packet.png">
					</p>

					<figure class="image shortcode-img center full" style="width:512px">
						<figcaption class="caption">
							<div class="caption-credit">
								Akamai
							</div>
						</figcaption>
					</figure>

					<p>
						Also concerning is the finding from Bock’s research team that some middleboxes will respond when they receive <em>any</em> additional packet including the RST.
					</p>

					<p>
						 
					</p>

					<p>
						“This creates an infinite packet storm,” the academic researchers wrote in August. “The attacker elicits a single block page to a victim, which causes a RST from the victim, which causes a new block page from the amplifier, which causes a RST from the victim, etc. The victim sustained case is especially dangerous for two reasons. First, the victim’s default behavior sustains the attack on itself. Second, this attack causes the victim to flood its own uplink while flooding the downlink.”
					</p>

					<p>
						 
					</p>

					<p>
						Akamai also provided a demonstration showing the damage that occurs when an attacker targets a specific port running a TCP-based service.
					</p>

					<p>
						 
					</p>

					<p>
						<img alt="tcp-service-targeting.png" class="ipsImage" data-ratio="60.55" height="310" width="512" src="https://cdn.arstechnica.net/wp-content/uploads/2022/03/tcp-service-targeting.png">
					</p>

					<figure class="image shortcode-img center full" style="width:512px">
						<figcaption class="caption">
							<div class="caption-credit">
								Akamai
							</div>
						</figcaption>
					</figure>

					<p>
						“These SYN packets directed at a TCP application/service will cause that application to attempt to respond with multiple SYN+ACK packets and hold the TCP sessions open, awaiting the remainder of the three-way handshake,” Akamai explained. “As each TCP session is held in this half-open state, the system will consume sockets that will in turn consume resources, potentially to the point of complete resource exhaustion.”
					</p>

					<p>
						 
					</p>

					<p>
						Unfortunately, there’s nothing typical end-users can do to block the DDoS amplification being exploited. Instead, middlebox operators must reconfigure their machines, which is unlikely in many cases. Barring that, network defenders must change the way they filter and respond to packets. Both Akamai and the academic researchers provide much more detailed instructions.
					</p>
				</div>
			</section>
		</div>
	</div>

	<p>
		 
	</p>

	<p>
		 
	</p>
</div>

<p>
	<a href="https://arstechnica.com/information-technology/2022/03/unending-data-floods-and-complete-resource-exhaustion-ddoses-get-meaner/" rel="external nofollow">DDoSers are using a potent new method to deliver attacks of unthinkable size</a>
</p>
]]></description><guid isPermaLink="false">4532</guid><pubDate>Wed, 02 Mar 2022 06:13:53 +0000</pubDate></item><item><title>Microsoft Strengthens Windows 11 Security Through Pluton Technology</title><link>https://nsaneforums.com/news/security-privacy-news/microsoft-strengthens-windows-11-security-through-pluton-technology-r4525/</link><description><![CDATA[<figure aria-describedby="caption-attachment-399409" id="attachment_399409">
	<img alt="mp2.jpg" class="ipsImage" data-ratio="75.10" height="432" width="720" src="https://mspoweruser.com/wp-content/uploads/2022/03/mp2.jpg">
	<p>
		 
	</p>

	<figcaption id="caption-attachment-399409">
		Lenovo ThinkPad X13s features the Qualcomm Snapdragon 8cx Gen 3 to protect users against attackers.
	</figcaption>
</figure>

<p>
	Cybercriminals keep devising new tactics to penetrate the security defenses, making the battle for security continuously grow more complex. To answer this, Microsoft partnered with Qualcomm. With the combined effort of the two companies, Microsoft is confident that its latest Windows 11 OS is more than armed in defending itself from attackers.
</p>

<p>
	 
</p>

<p>
	The latest product of the said partnership is the <a href="https://www.qualcomm.com/products/mobile-computing/commercial/built-for-it" rel="external nofollow">Qualcomm Snapdragon 8cx Gen 3</a> included in the <a href="https://mspoweruser.com/lenovo-unveils-the-thinkpad-x13s-at-mwc-2022/" rel="external nofollow">ThinkPad X13s of Lenovo</a>. According to Microsoft, it is the “first ARM platform for Windows that is built on the <a href="https://mspoweruser.com/microsoft-pluton-processor-revealed-a-new-security-chip-for-windows-pcs/" rel="external nofollow">Microsoft Pluton</a> security architecture.” It can store sensitive data securely with hardware integrated into the die of a device’s CPU, which would give hackers a hard time accessing any device even if they have it physically. 
</p>

<p>
	 
</p>

<p>
	“Windows 11 PCs built on top of Qualcomm’s latest Snapdragon 8cx Gen 3 Compute Platform, with Qualcomm Secure Processing Unit, will leverage advanced hardware capabilities from Microsoft Pluton and Pointer Authentication Codes (PAC),” David Weston, Director of Enterprise and OS Security, wrote in a Windows Blog post. “Pluton will leverage advanced hardware capabilities while built-in security countermeasures from PAC protect against common exploit patterns to help customers strengthen their device security posture.”
</p>

<p>
	 
</p>

<p>
	According to Weston, Pluton can deliver numerous benefits to users through Windows 11 PCs with the Qualcomm Snapdragon 8cx Gen 3 Compute Platform. It includes the security updates delivered from the cloud to Pluton, physical attack resistance, and top-notch security built on approaches and technologies used in Xbox and Azure Sphere.
</p>

<p>
	 
</p>


<p>
	 
</p>

<p>
	<a href="https://mspoweruser.com/microsoft-strengthens-windows-11-security-through-pluton-technology/" rel="external nofollow">Microsoft Strengthens Windows 11 Security Through Pluton Technology</a>
</p>
]]></description><guid isPermaLink="false">4525</guid><pubDate>Tue, 01 Mar 2022 20:39:09 +0000</pubDate></item><item><title>Windows Defender for home users fails to win any of AV-TEST's best anti-virus 2021 awards</title><link>https://nsaneforums.com/news/security-privacy-news/windows-defender-for-home-users-fails-to-win-any-of-av-tests-best-anti-virus-2021-awards-r4524/</link><description><![CDATA[<p>
	In its rankings for 2021, anti-virus assessment firm AV-Comparatives wasn't <a href="https://www.neowin.net/news/unlike-av-test-av-comparatives-wasn039t-as-impressed-by-microsoft-defender-in-2021/" rel="external nofollow">super-impressed by Windows Defender, at least when compared to some of its rival products</a>. However, AV-TEST had a somewhat different opinion as its report showed Microsoft Defender doing exceptionally well in the second half of the year reports, scoring full marks in both the <a href="https://www.neowin.net/news/av-test-confirms-windows-defender-is-amongst-the-very-finest-antiviruses-you-get-in-2021/" rel="external nofollow">October 2021 test</a> and the <a href="https://www.neowin.net/news/microsoft-defender-beats-out-several-heavyweight-rivals-in-the-latest-av-test-ranking/" rel="external nofollow">December 2021 assessment</a>.
</p>

<p>
	 
</p>

<p>
	But, despite the great showing, Microsoft and fans of the Defender antivirus solution may be somewhat disappointed as the consumer version of the product failed to win any of the awards that AV-TEST conferred to the products it felt were the best anti-virus solutions of 2021.
</p>

<p>
	 
</p>

<p>
	For Windows, three awards were given for three different categories:
</p>

<p>
	 
</p>

<ul>
	<li>
		Best Protection
	</li>
	<li>
		Best Performance
	</li>
	<li>
		Best Usability
	</li>
</ul>

<p>
	 
</p>

<p>
	As stated above, Defender failed to secure any of the categories for its consumer product. In case you are wondering who the winners are, they are listed below under the categories they won in.
</p>

<ul>
	<li>
		<h3>
			Best Protection
		</h3>

		<ul>
			<li>
				Bitdefender
			</li>
			<li>
				Kaspersky
			</li>
			<li>
				Norton 360
			</li>
		</ul>
	</li>
	<li>
		<h3>
			Best Performance
		</h3>

		<ul>
			<li>
				ESET
			</li>
			<li>
				G DATA
			</li>
			<li>
				Kaspersky
			</li>
			<li>
				Norton 360
			</li>
			<li>
				PC Matic
			</li>
			<li>
				Protected.net Total AV
			</li>
		</ul>
	</li>
	<li>
		<h3>
			Best Usability
		</h3>

		<ul>
			<li>
				Avira
			</li>
			<li>
				ESET
			</li>
		</ul>
	</li>
</ul>

<p>
	 
</p>

<p>
	Not all is bad for Microsoft though as Defender managed to snag a win in the Best Protection for Corporate users category. You can view the <a href="https://www.av-test.org/en/news/av-test-award-2021-the-best-in-it-security/" rel="external nofollow">full report here</a>.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/windows-defender-for-home-users-fails-to-win-any-of-av-test039s-best-anti-virus-2021-awards/" rel="external nofollow">Windows Defender for home users fails to win any of AV-TEST's best anti-virus 2021 awards</a>
</p>
]]></description><guid isPermaLink="false">4524</guid><pubDate>Tue, 01 Mar 2022 20:37:18 +0000</pubDate></item><item><title>NVIDIA confirms data was stolen in recent cyberattack</title><link>https://nsaneforums.com/news/security-privacy-news/nvidia-confirms-data-was-stolen-in-recent-cyberattack-r4523/</link><description><![CDATA[<p>
	Chipmaker giant Nvidia confirms that its network was breached in a cyberattack last week, giving intruders access to proprietary information data and employee login data.
</p>

<p>
	 
</p>

<p>
	News of the attack came to light late last week and the actor claiming it, a data extortion group named Lapsus$, started to share details about the incident and the damage they produced.
</p>

<p>
	 
</p>

<p>
	In an initial statement last week, Nvidia said it was <a href="https://www.bleepingcomputer.com/news/security/gpu-giant-nvidia-is-investigating-a-potential-cyberattack/" rel="external nofollow">investigating an incident</a> that reportedly impacted some systems, causing an outage.
</p>

<p>
	 
</p>

<p>
	Over the weekend, <a href="https://www.bleepingcomputer.com/news/security/hackers-to-nvidia-remove-mining-cap-or-we-leak-hardware-data/" rel="external nofollow">Lapsus$ provided more details about the intrusion</a>, saying that they had 1TB of Nvidia proprietary data and sharing passwords hashes they said belonged to company employees.
</p>

<p>
	 
</p>

<p>
	Lapsus$ also leaked a large document archive (close to 20GB) claiming it was from the 1TB cache they stole from Nvidia.
</p>

<p>
	 
</p>

<p>
	<img alt="nvidia-telegram.jpg" class="ipsImage" data-ratio="75.10" height="431" width="720" src="https://www.bleepstatic.com/images/news/security/e/extortion/nvidia/lapsus/nvidia-telegram.jpg">
</p>

<h3>
	Nvidia confirms data breach
</h3>

<p>
	In a statement for BleepingComputer today, Nvidia confirmed that on February 23rd it detected “a cybersecurity incident which impacted IT resources.”
</p>

<p>
	 
</p>

<p>
	NVIDIA said that there was no evidence of a ransomware attack but the threat actor stole employee credentials and proprietary information, giving weight to Lapsus$’s claims.
</p>

<p>
	 
</p>

<p>
	The company said that its team is currently sifting through the information to analyze it and notes that the incident is not expected to disrupt its business or the ability to serve customers.
</p>

<p>
	 
</p>

<p>
	The complete statement can be read below:
</p>

<p>
	 
</p>

<div>
	<p style="margin-left: 40px;">
		On February 23, 2022, NVIDIA became aware of a cybersecurity incident which impacted IT resources. Shortly after discovering the incident, we further hardened our network, engaged cybersecurity incident response experts, and notified law enforcement.
	</p>

	<p style="margin-left: 40px;">
		 
	</p>

	<p style="margin-left: 40px;">
		We have no evidence of ransomware being deployed on the NVIDIA environment or that this is related to the Russia-Ukraine conflict. However, we are aware that the threat actor took employee credentials and some NVIDIA proprietary information from our systems and has begun leaking it online. Our team is working to analyze that information. We do not anticipate any disruption to our business or our ability to serve our customers as a result of the incident.
	</p>

	<p style="margin-left: 40px;">
		 
	</p>

	<p style="margin-left: 40px;">
		Security is a continuous process that we take very seriously at NVIDIA – and we invest in the protection and quality of our code and products daily.
	</p>

	<p>
		 
	</p>
</div>

<p>
	 
</p>

<p>
	<a href="https://www.bleepingcomputer.com/news/security/nvidia-confirms-data-was-stolen-in-recent-cyberattack/" rel="external nofollow">NVIDIA confirms data was stolen in recent cyberattack</a>
</p>
]]></description><guid isPermaLink="false">4523</guid><pubDate>Tue, 01 Mar 2022 20:34:27 +0000</pubDate></item><item><title>&#x2018;Sophisticated&#x2019; new Chinese hacking tool found, spurring US warning to allies</title><link>https://nsaneforums.com/news/security-privacy-news/%E2%80%98sophisticated%E2%80%99-new-chinese-hacking-tool-found-spurring-us-warning-to-allies-r4518/</link><description><![CDATA[<ul>
	<li>
		<span style="font-size:18px;">Cybersecurity firm Symantec says the malware, which it calls Daxin, has been used to target high level, non-Western government agencies in Asia and Africa</span>
	</li>
</ul>

<p>
	<span style="font-size:18px;"> </span>
</p>

<ul>
	<li>
		<span style="font-size:18px;">Researchers say the discovery is noteworthy because of the scale of the intrusions and the advanced nature of the tool</span>
	</li>
</ul>

<p>
	 
</p>

<p>
	Security researchers with US cybersecurity firm Symantec said they have discovered a “highly sophisticated” Chinese hacking tool that has been able to escape public attention for more than a decade.
</p>

<p>
	<br />
	The discovery was shared with the US government in recent months, who have shared the information with foreign partners, said a US official. Symantec, a division of chip maker Broadcom, published its research about the tool, which it calls Daxin, on Monday.
</p>

<p>
	 
</p>

<p>
	“It’s something we haven’t seen before,” said Clayton Romans, associate director with the US Cybersecurity Infrastructure Security Agency (CISA). “This is the exact type of information we’re hoping to receive.”
</p>

<p>
	<br />
	CISA highlighted Symantec’s membership in a joint public-private cybersecurity information sharing partnership, known as the JCDC, alongside the new research paper.
</p>

<p>
	 
</p>

<div class="ipsEmbeddedOther">
	<iframe allowfullscreen="" data-controller="core.front.core.autosizeiframe" data-embedid="embed4653878529" scrolling="no" src="https://nsaneforums.com/index.php?app=core&amp;module=system&amp;controller=embed&amp;url=https://twitter.com/campuscodi/status/1498304393946533895?ref_src=twsrc%255Etfw%257Ctwcamp%255Etweetembed%257Ctwterm%255E1498304393946533895%257Ctwgr%255E%257Ctwcon%255Es1_%26ref_url=https://www.scmp.com/news/world/united-states-canada/article/3168740/sophisticated-new-chinese-hacking-tool-found" style="height:803px;"></iframe>
</div>

<p>
	 
</p>

<p>
	The JCDC, or Joint Cyber Defence Collaborative, is a collective of government defence agencies, including the FBI and National Security Agency, and 22 US technology companies that share intelligence about active cyberattacks with one another.
</p>

<p>
	 
</p>

<p>
	The Chinese embassy in Washington did not respond to a request for comment. Chinese officials have previously said China is also a victim of hacking and opposes all forms of cyberattacks.
</p>

<p>
	<br />
	“The capabilities of this malware are remarkable and would be extremely difficult to detect without this public research,” said Neil Jenkins, chief analytics officer at the Cyber Threat Alliance, a non-profit group that brings together cybersecurity experts to share data.
</p>

<p>
	<br />
	Symantec’s attribution to China is based on instances where components of Daxin were combined with other known, Chinese-linked computer hacker infrastructure or cyberattacks, said Vikram Thakur, a technical director with Symantec.
</p>

<p>
	 
</p>

<p>
	Symantec researchers said the discovery of Daxin was noteworthy because of the scale of the intrusions and the advanced nature of the tool.
</p>

<p>
	 
</p>

<p>
	“The most recent known attacks involving Daxin occurred in November 2021,” the research report reads.
</p>

<p>
	<br />
	“Daxin’s capabilities suggest the attackers invested significant effort into developing communication techniques that can blend in unseen with normal network traffic.”
</p>

<p>
	<br />
	Daxin’s victims included high level, non-Western government agencies in Asia and Africa, including Ministries of Justice, Thakur added.
</p>

<p>
	 
</p>

<div class="ipsEmbeddedVideo">
	<div>
		<iframe allowfullscreen="" frameborder="0" height="113" width="200" data-embed-src="https://www.youtube.com/embed/mrzI5hC-qWs?feature=oembed"></iframe>
	</div>
</div>

<p>
	 
</p>

<p>
	“Daxin can be controlled from anywhere in the world once a computer is actually infected,” said Thakur. “That’s what raises the bar from malware that we see coming out of groups operating from China.”
</p>

<p>
	<br />
	Romans said he did know of affected organisations in the United States, but there were infections all around the globe, which the US government was helping to notify.
</p>

<p>
	<br />
	“Clearly the actors have been successful in not only conducting campaigns but being able to keep their creation under wraps for well over a decade,” Thakur said.
</p>

<p>
	 
</p>

<p>
	<span style="font-size:18px;"><strong><a href="https://www.scmp.com/news/world/united-states-canada/article/3168740/sophisticated-new-chinese-hacking-tool-found" rel="external nofollow">Source</a></strong></span>
</p>

<p>
	 
</p>

<p>
	<em>Also: "<a href="https://thehackernews.com/2022/03/china-linked-daxin-malware-targeted.html" rel="external nofollow">China-linked Daxin Malware Targeted Multiple Governments in Espionage Attacks</a>."</em>
</p>
]]></description><guid isPermaLink="false">4518</guid><pubDate>Tue, 01 Mar 2022 14:44:42 +0000</pubDate></item><item><title>Hackers to NVIDIA: Remove mining cap or we leak hardware data</title><link>https://nsaneforums.com/news/security-privacy-news/hackers-to-nvidia-remove-mining-cap-or-we-leak-hardware-data-r4508/</link><description><![CDATA[<p>
	The Lapsus$ data extortion group has released what they claim to be data stolen from the Nvidia GPU designer. The cache is an archive that is almost 20GB large.
</p>

<p>
	 
</p>

<p>
	While the U.S. chipmaker giant has yet to confirm a breach on its network, the threat actor has been active with messages about the alleged hack since February 24.
</p>

<h3>
	Nvidia silent to extortionist's claims and leak
</h3>

<p>
	Replying to a request for comments from BleepingComputer on Friday about an incident that reportedly took down some of its systems for two days, <a href="https://www.bleepingcomputer.com/news/security/gpu-giant-nvidia-is-investigating-a-potential-cyberattack/" rel="external nofollow" target="_blank">Nvidia said</a> that it was investigating what looked like a cyberattack.
</p>

<p>
	 
</p>

<p>
	In a reply to BleepingComputer, a company spokesperson said that Nvidia will issue an updated statement on Sunday but it never came. Several subsequent requests from us remained unanswered.
</p>

<p>
	 
</p>

<p>
	Reporting on the outage and what caused it, <a href="https://www.telegraph.co.uk/business/2022/02/25/us-microchip-powerhouse-nvidia-hit-cyber-attack/" rel="external nofollow" target="_blank">The Telegraph</a> cited an insider saying that the intrusion “completely compromised” the company’s internal systems.
</p>

<p>
	 
</p>

<p>
	Lapsus$ said that they stole 1TB of data from Nvidia and that they were prepared to publish it unless the company paid a ransom demand.
</p>

<p>
	 
</p>

<p>
	The first round of messages from Lapsus$ included a leak of what the actor said were hashed passwords of all Nvidia employees and a claim that the company hacked back to encrypt their virtual machine with the data.
</p>

<p>
	 
</p>

<p>
	<img alt="Lapsus-NvidiaBreach01.jpg" class="ipsImage" data-ratio="47.64" height="246" width="720" src="https://www.bleepstatic.com/images/news/u/1100723/2022/Lapsus-NvidiaBreach01.jpg">
</p>

<p>
	 
</p>

<p>
	In an odd move, the extortion group removed all messages related to the Nvidia and resumed the stream of communication today with a note reiterating that they “hacked Nvidia.”
</p>

<p>
	 
</p>

<p>
	In multiple messages today, Lapsus$ provided more details about their incursion. “We were into nvidia systems for about a week, we fastly escalated to admin of a lot of systems,” the actor said.
</p>

<p>
	 
</p>

<p>
	<img alt="Lapsus-NvidiaLHR02.jpg" class="ipsImage" data-ratio="118.16" height="540" width="430" src="https://www.bleepstatic.com/images/news/u/1100723/2022/Lapsus-NvidiaLHR02.jpg">
</p>

<p>
	 
</p>

<p>
	They said they stole important files during the breach that include “stuff, schematics, driver, firmware,” and that they are willing to sell some of it:
</p>

<p>
	 
</p>

<div>
	<p style="margin-left: 40px;">
		“We are still waiting for nvidia to contact us. We are also selling a full LHR V2 (GA102-GA104) -&gt; we hope it will soon be removed by nvidia” - Lapsus$
	</p>

	<p>
		 
	</p>
</div>

<p>
	LHR is Nvidia’s lite hash rate technology that enables graphics cards to reduce a GPU’s mining capacity. The Lapsus$ extortion group hopes that Nvidia will remove this limitation.
</p>

<p>
	 
</p>

<p>
	For this reason, they’re asking the GPU maker to remove the LHR limitations in the GeForce RTX 30 Series firmware, threatening to leak the folder with the hardware specifications.
</p>

<p>
	 
</p>

<p>
	<img alt="Lapsus-NvidiaLHR03.jpg" class="ipsImage" data-ratio="48.16" height="222" width="461" src="https://www.bleepstatic.com/images/news/u/1100723/2022/Lapsus-NvidiaLHR03.jpg">
</p>

<p>
	 
</p>

<p>
	The actor also claims to have documentation, company private tools, SDKs, “and everything about falcon” - Nvidia’s proprietary control processor.
</p>

<p>
	 
</p>

<p>
	The next message was a link to “part one of Nvidia data,” hosted on Amazon infrastructure, containing “source code and highly confidential/secret data from various parts of NVIDIA gpu driver. Falcon, LHR, and such.”
</p>

<p>
	 
</p>

<p>
	<img alt="Lapsus-NvidiaLHR03.jpg" class="ipsImage" data-ratio="48.16" height="222" width="461" src="https://www.bleepstatic.com/images/news/u/1100723/2022/Lapsus-NvidiaLHR03.jpg">
</p>

<p>
	 
</p>

<p>
	According to the threat actor, Nvidia filed an abuse report to stop the sharing. However, Lapsus$ switched to leaking the info over torrent and said that they would not re-upload the file.
</p>

<p>
	 
</p>

<p>
	The size of today’s data leak that Lapsus$ claims to have stolen from Nvidia is around 20GB and consists of an archive named “integdev_gpu_drv.rar.”
</p>

<p>
	 
</p>

<p>
	The actor says that the archive includes important source code and that they have enough information for a good developer to be able to create a bypass for Nvidia's LHR.
</p>

<p>
	 
</p>

<p>
	They also added that they're selling a LHR bypass that would disable the technology “without flashing anything.” This would enable a cryptocurrency mining operation to make the most of Nvidia graphic cards.
</p>

<p>
	 
</p>

<p>
	For now, Nvidia is keeping quiet about Lapsus$ claims and the data they shared. It is unclear how damaging this leak is to Nvidia or what secrets it may contain but there is a good chance for sensitive data to be present in a document archive of about 20GB.
</p>

<p>
	 
</p>

<p>
	Shortly before publishing this article, Nvidia responded with the following statement to BleepingComputer's request:
</p>

<p>
	 
</p>

<div>
	<p style="margin-left: 40px;">
		“We are investigating an incident. Our business and commercial activities continue uninterrupted. We are still working to evaluate the nature and scope of the event and don't have any additional information to share at this time."
	</p>

	<p>
		 
	</p>
</div>

<p>
	 
</p>

<p>
	<a href="https://www.bleepingcomputer.com/news/security/hackers-to-nvidia-remove-mining-cap-or-we-leak-hardware-data/" rel="external nofollow">Hackers to NVIDIA: Remove mining cap or we leak hardware data</a>
</p>
]]></description><guid isPermaLink="false">4508</guid><pubDate>Mon, 28 Feb 2022 21:28:40 +0000</pubDate></item><item><title>Toyota halts production after reported cyberattack on supplier</title><link>https://nsaneforums.com/news/security-privacy-news/toyota-halts-production-after-reported-cyberattack-on-supplier-r4507/</link><description><![CDATA[<p>
	Giant Japanese automaker Toyota Motors has announced that it stopped car production operations. The outage was forced by a system failure at one of its  suppliers of vital parts, Kojima Industries, which reportedly suffered a cyberattack.
</p>

<p>
	 
</p>

<p>
	Kojima Industries is a Japanese manufacturer of plastic components that are crucial for car production, so this is a case of severe supply chain interruption.
</p>

<p>
	 
</p>

<p>
	Toyota <a href="https://global.toyota/en/newsroom/corporate/36961051.html" rel="external nofollow" target="_blank">said today</a> that the incident caused it to decide to suspend the operation of 28 production lines in 14 plants in Japan, starting tomorrow, Tuesday, March 1, 2022.
</p>

<p>
	 
</p>

<p>
	The expected impact is a 5% drop in Toyota's monthly production in Japan, which translates to roughly 13,000 units.
</p>

<p>
	 
</p>

<p>
	Toyota’s subsidiaries Daihatsu Motors and Hino Motors will also halt production but the exact impact on them hasn’t been clarified.
</p>

<p>
	 
</p>

<p>
	Although Kojima has not published any official information about the attack, the company's website is currently offline and many Japanese news outlets are claiming that the disruption is a direct result of a cyberattack.
</p>

<p>
	 
</p>

<p>
	An official with knowledge about the incident at Kojima Industries <a href="https://www.tokyo-np.co.jp/amp/article/162836" rel="external nofollow" target="_blank">told local media</a> that the company "appears to have been hit by the cyberattack" and that the top priority is to resume Toyota's production.
</p>

<p>
	 
</p>

<p>
	Japanese reporters have asked Prime Minister Fumio Kishida if this could be linked to <a href="https://www.state.gov/japans-financial-sanctions-against-russia/" rel="external nofollow" target="_blank">Japan’s sanctions on Moscow</a>. Kishida <a href="http://uk.news.yahoo.com/toyota-halts-japan-plants-reported-105523941.html" rel="external nofollow" target="_blank">said</a> at the time that there was no confirmation of a Russian connection.
</p>

<p>
	 
</p>

<p>
	The COVID-19 pandemic has caused various supply chain problems for all car makers, especially those who rely on large production volumes for profit, most notably due to shortages in semiconductors.
</p>

<p>
	 
</p>

<p>
	This situation introduced unprecedented challenges to Toyota in particularly, due to its long-established “<a href="https://global.toyota/en/company/vision-and-philosophy/production-system/" rel="external nofollow" target="_blank">just in time</a>” (JIT) lean manufacturing approach which historically provided ultimate efficiency but didn’t offer any margin for versatility.
</p>

<p>
	 
</p>

<p>
	Whatever caused the Kojima supply disruption, Toyota’s once advantageous JIT system proves to be a weakness in today’s production landscape, which is connected to a volatile cyberspace.
</p>

<p>
	 
</p>

<p>
	H/T <a href="https://twitter.com/douglasmun" rel="external nofollow" target="_blank">Douglas Mun</a>
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.bleepingcomputer.com/news/security/toyota-halts-production-after-reported-cyberattack-on-supplier/" rel="external nofollow">Toyota halts production after reported cyberattack on supplier</a>
</p>
]]></description><guid isPermaLink="false">4507</guid><pubDate>Mon, 28 Feb 2022 21:24:45 +0000</pubDate></item><item><title>2022 may be the year cybercrime returns its focus to consumers</title><link>https://nsaneforums.com/news/security-privacy-news/2022-may-be-the-year-cybercrime-returns-its-focus-to-consumers-r4497/</link><description><![CDATA[<p>
	Threat analysts expect 2022 to be the tipping point for a shift in the focus of hackers from large companies back to consumers.
</p>

<p>
	 
</p>

<p>
	This prediction is the result of several factors that make consumers a lot more lucrative to threat actors today than in previous years.
</p>

<p>
	 
</p>

<p>
	ReasonLabs has compiled a detailed report on the status of consumer-level cybersecurity and what trends are most likely to emerge this year.
</p>

<h2>
	Path of least resistance
</h2>

<p>
	Cybercriminals like to follow the shortest and most accessible pathway to achieving their goals, and when it comes to targeting corporate networks, the best chances lie at targeting remote workers.
</p>

<p>
	 
</p>

<p>
	The pandemic may slowly be fading, but remote work and the security risks that arise from this new work environment are here to stay. At the same time, organizations are spending significant amounts of money on bolstering their on-premise systems.
</p>

<p>
	 
</p>

<p>
	As such, for hackers looking to gain access to company networks, the easier way is to target remote employees through phishing or social engineering, take over their account, and use it to log in to the network.
</p>

<h2>
	Crypto-boom
</h2>

<p>
	2021 was the year of the crypto-miner, primarily due to the rising value of Bitcoin, Ether, and other cryptocurrencies that followed the same trend, further augmented by the rise of NFTs.
</p>

<p>
	 
</p>

<p>
	People in fear of missing out invested heavily in virtual assets, and many of these new investors don't know how to protect them adequately.
</p>

<p>
	 
</p>

<p>
	This crypto rush has created <a href="https://www.bleepingcomputer.com/news/security/have-i-been-pwned-adds-441k-accounts-stolen-by-redline-malware/" target="_blank" rel="external nofollow">a steep rise</a> in <a href="https://www.bleepingcomputer.com/news/security/new-bhunt-malware-targets-your-crypto-wallets-and-passwords/" target="_blank" rel="external nofollow">info-stealer infections</a>, which according to ReasonLabs, is bound to continue following the same trajectory in 2022.
</p>

<p>
	 
</p>

<p>
	The rise of Meta, which is expected to create a new boom around digital asset payments from consumers, will fuel that fire even more.
</p>

<p>
	 
</p>

<p>
	<img alt="table(6).jpg" class="ipsImage" data-ratio="73.06" height="469" width="720" src="https://www.bleepstatic.com/images/news/u/1220909/Tables/table(6).jpg">
</p>

<div>
	<figure>
		<figcaption>
			Top 2021 detections by type (ReasonLabs)
		</figcaption>
	</figure>
</div>

<h2>
	Shutting the door on macros
</h2>

<p>
	Microsoft's move to <a href="https://www.bleepingcomputer.com/news/microsoft/microsoft-disables-excel-40-macros-by-default-to-block-malware/" target="_blank" rel="external nofollow">disable Excel 4.0 macros by default</a> shuts the door to malicious documents that included malicious macros to download malware on the user's device. This tactic was predominately used against corporate users.
</p>

<p>
	 
</p>

<p>
	Adversaries are now forced to lure victims to malicious websites instead, set up SEO poisoning attacks, create malware masqueraded as game cracks, or even use social media, YouTube, and IM channels to promote these files directly.
</p>

<p>
	 
</p>

<p>
	"Throughout 2021, we have seen countless threats that came specifically from supposed games, including miners, RATs, and infostealers, all delivered in a bundle with the (cracked) game," comments the <a href="https://reasonlabs.com/reports/reasonlabs-report.pdf" rel="external nofollow" target="_blank">ReasonLabs report</a>.
</p>

<p>
	 
</p>

<p>
	All these somewhat random malware distribution methods flourished in 2021, and the same trend will most likely continue in 2022.
</p>

<h2>
	Adware
</h2>

<p>
	Adware remains a steady source of income for cybercriminals and one that relies on infecting and exploiting large numbers of systems, mostly consumer computers and <a href="https://www.bleepingcomputer.com/news/security/85-adware-apps-in-google-play-installed-9-million-times/" target="_blank" rel="external nofollow">smartphones</a>.
</p>

<p>
	 
</p>

<p>
	ReasonLabs estimates the number of ad-injectors and clickers to rise in 2022, as they are easy to spread and hard to detect, map, and stop, which usually happens only when they reach <a href="https://www.bleepingcomputer.com/news/security/chinese-company-behind-adware-that-infected-over-250-million-computers/" target="_blank" rel="external nofollow">jaw-dropping</a> operational sizes.
</p>

<p>
	 
</p>

<p>
	While many consider adware to be more of a nuisance rather than malware, many adware bundles install <a href="https://www.bleepingcomputer.com/news/security/adware-installs-infostealer-trojan-that-it-loads-via-chrome-dll-hijacking/" target="_blank" rel="external nofollow">information-stealing trojans</a>, ransomware, and even <a href="https://www.bleepingcomputer.com/news/security/rootkit-based-adware-wreaks-havoc-among-windows-10-users-in-the-us/" target="_blank" rel="external nofollow">rootkits</a>.
</p>

<h2>
	The ransomware space
</h2>

<p>
	When it comes to ransomware, the case is especially characteristic because this is the category of threat actors that moved to larger targets in previous years, entirely snubbing consumers.
</p>

<p>
	 
</p>

<p>
	The busts of 2021 have brought turbulence in RaaS operations, and while most big players continued unabated, we have seen <a href="https://www.bleepingcomputer.com/news/security/law-enforcement-action-push-ransomware-gangs-to-surgical-attacks/" target="_blank" rel="external nofollow">notable adjustments</a> in their targeting scope.
</p>

<p>
	 
</p>

<p>
	Targeting governmental or critical infrastructure entities has consequences, and ransomware actors have <a href="https://www.bleepingcomputer.com/news/security/ransomware-gang-coughs-up-decryptor-after-realizing-they-hit-the-police/" target="_blank" rel="external nofollow">realized that</a>.
</p>

<p>
	 
</p>

<p>
	The trend we see now is targeting consumers who hold something valuable, and asking for small ransom payments from a larger number of victims.
</p>

<p>
	 
</p>

<p>
	As ReasonLabs comments in the report: "(Ransomware actors) will shift their focus to unprotected consumers, with the number of attacks drastically increasing to cover the pay gap."
</p>

<p>
	 
</p>

<p>
	The <a href="https://www.bleepingcomputer.com/news/security/wd-my-book-nas-devices-are-being-remotely-wiped-clean-worldwide/" target="_blank" rel="external nofollow">recent ransomware attacks</a> against <a href="https://www.bleepingcomputer.com/news/security/qnap-warns-of-ransomware-targeting-internet-exposed-nas-devices/" target="_blank" rel="external nofollow">NAS devices</a> are an excellent example of that. They weren't carried out by low-skilled opportunists but by hackers who could discover and <a href="https://www.bleepingcomputer.com/news/security/deadbolt-ransomware-now-targets-asustor-devices-asks-50-btc-for-master-key/" target="_blank" rel="external nofollow">leverage zero-days</a>.
</p>

<p>
	 
</p>

<p>
	BleepingComputer has also seen ransomware operations that more commonly target the enterprise, also now targeting consumers and SMBs with ransom demands under $1,000.
</p>

<p>
	 
</p>

<p>
	With the enterprise more actively defending against network intrusions and ransomware attacks, we may see ransomware operations going back to spray-and-pray attacks hoping to encrypt anyone, including consumers.
</p>

<p>
	 
</p>

<p>
	Therefore, consumers must begin practicing strong security habits, which include:
</p>

<p>
	 
</p>

<ul>
	<li>
		Use strong and unique passwords at every sites.
	</li>
	<li>
		Install security software or using Microsoft Defender, which is built into Windows.
	</li>
	<li>
		Do not open email attachments from unknown users.
	</li>
	<li>
		Do not expose internal services to the Internet, such as Remote Desktop and NAS devices.
	</li>
	<li>
		Install software and operating system updates as they become available.
	</li>
	<li>
		Do not download pirated software cracks or key generators, as they commonly lead to ransomware and information-stealing trojans.
	</li>
</ul>

<p>
	 
</p>

<p>
	Following these simple security habits will significantly decrease the risk of malware infections to consumers and should be practiced by everyone on all of their devices.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.bleepingcomputer.com/news/security/2022-may-be-the-year-cybercrime-returns-its-focus-to-consumers/" rel="external nofollow">2022 may be the year cybercrime returns its focus to consumers</a>
</p>
]]></description><guid isPermaLink="false">4497</guid><pubDate>Sun, 27 Feb 2022 23:11:59 +0000</pubDate></item><item><title>This Linux backdoor went undetected for 10 years</title><link>https://nsaneforums.com/news/security-privacy-news/this-linux-backdoor-went-undetected-for-10-years-r4477/</link><description><![CDATA[<p>
	<span style="font-size:18px;">New details have emerged regarding a previously undetected Linux backdoor that is believed to have been created by the notorious Equation Group which has ties to the US National Security Agency (NSA).</span>
</p>

<p>
	 
</p>

<p>
	According to a new report from the cybersecurity firm Pangu, security researchers from its Advanced Cyber Security Research team first found the malware behind the backdoor back in 2013 while conducting a “forensic investigation of a host in a key domestic department”. At that time, the team decided to name the malware Bvp47 due to the fact that the most common string in the sample was “Bvp” and 0x47 was the numerical value used in its encryption algorithm.
</p>

<p>
	 
</p>

<p>
	Despite the fact that Bvp47 was submitted to Virus Total's antivirus database almost a decade ago, it only appeared in one antivirus engine. Things have changed with the release of Pangu's report and it has now been flagged by six antivirus engines according to BleepingComputer.
</p>

<p>
	 
</p>

<p>
	During the almost ten years that the Bvp47 malware went undetected, it was used to hit more than 287 organizations in 45 countries with a focus on targets in the telecommunications, military, higher-education, financial and science sectors.
</p>

<p>
	 
</p>

<p>
	<span style="font-size:18px;"><strong>Ties to the Equation Group</strong></span>
</p>

<p>
	 
</p>

<p>
	The Bvp47 sample that was obtained from Pangu's Advanced Cyber Security Research team back in 2013 turned out to be an advanced Linux backdoor that also contained a remote control function protected using the RSA asymmetric encryption algorithm.
</p>

<p>
	As such it requires a private key to enable and this private key was found in a series of leaks published by the Shadow Brokers hacking group during 2016-2017. The leaks themselves also contained hacking tools and zero-day exploits used by the Equation Group which is suspected of having ties to the NSA's Tailored Access Operations unit.
</p>

<p>
	 
</p>

<p>
	Some of the components found in these leaks such as “dewdrop” and “solutionchar_agents” were integrated into the Bvp47 framework which indicates that its backdoor could be used on Unix-based operating systems such as the mainstream Linux distros JunOS, FreeBSD and Solaris.
</p>

<p>
	 
</p>

<p>
	Based on automated analysis of the backdoor by Kaspersky's Threat Attribution Engine (KTAE), 34 out of 483 strings found in Bvp47 match those from from another Equation Group-related sample for Solaris SPARC systems. There was also a 30 percent similarity with another malware sample from the Equation Group which was submitted to Virus Total back in 2018.
</p>

<p>
	 
</p>

<p>
	Director of global research and the analysis team at Kapsersky, Costin Raiu told BleepingComputer that Bvp47's code-level similarities also match one other sample in its malware collection. This is a good indication that use of this malware wasn't widespread as is often the case with hacking tools created by high-level threat actors that only deploy them in highly targeted attacks.
</p>

<p>
	 
</p>

<p>
	Now that Bvp47's Linux backdoor has finally come to light, security researchers will likely conduct further analysis on it and we could see more evidence that it was used in other past attacks as well.
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://www.msn.com/en-us/news/technology/this-linux-backdoor-went-undetected-for-10-years/ar-AAUk0d8" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">4477</guid><pubDate>Sat, 26 Feb 2022 01:00:13 +0000</pubDate></item></channel></rss>
