<?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/41/?d=2</link><description><![CDATA[News: Security & Privacy News]]></description><language>en</language><item><title>uBlocked: As Chrome Transitions to Manifest V3, Ad Blockers Get Less Effective</title><link>https://nsaneforums.com/news/security-privacy-news/ublocked-as-chrome-transitions-to-manifest-v3-ad-blockers-get-less-effective-r24672/</link><description><![CDATA[<p>
	Users of uBlock Origin have started seeing a warning in Google Chrome that the popular extension may not be supported by the browser. The problem isn’t uBlock, it’s Chrome: Google’s belated adoption of the Manifest V3 extension platform will soon make many ad- and tracker-blocking extensions less effective.
</p>

<p>
	 
</p>

<p>
	“Starting with Google Chrome 127, there will be a warning for uBlock Origin (uBO) in your Chrome Extensions page,” Melroy van den Berg writes in the uBlock Origin wiki on GitHub. “This is the result of Manifest V2 support being deprecated in favor of Manifest V3. uBO is a Manifest V2 extension, hence the warning in your Google Chrome browser. There is no Manifest v3 version of uBO, hence the browser will suggest alternative extensions as a replacement for uBO.”
</p>

<p>
	 
</p>

<p>
	Google announced Manifest V3 five years ago, and it’s been controversial from the get-go. Google has long claimed that the goal is only to make browser extensions more secure. But its critics, in particular, the makers of popular ad- and tracker-blocking extensions, say the restrictions in this platform are designed to help advertisers, not users.
</p>

<p>
	 
</p>

<p>
	Extension makers have had to adapt, but the net result is pretty clear: These products will be less effective than they were with Manifest V2. Some, like Ghostery, have simply adapted their software to work around the limitations where possible. Others, like uBlock, have split the extension in two: Chrome users will now be offered a less effective extension called uBlock Origin Lite, while users on better browsers will still get the full uBlock Origin.
</p>

<p>
	 
</p>

<p>
	“uBO Lite (uBOL) is a pared-down version of uBO with a best effort at converting filter lists used by uBO into a Manifest V3-compliant approach, with a focus on reliability and efficiency as has been the case with uBO since first published in June 2014,” van den Berg explains. “However, the focus on reliability and efficiency in a Manifest V3 environment meant having to sacrifice many features beyond those not possible within a Manifest V3 framework.”
</p>

<p>
	 
</p>

<p>
	Like many Google technology shifts, the Manifest V3 transition has been delayed many times. But back in May, the online giant announced it would begin warning Chrome users with Manifest V2-based extensions about the coming end of support. So that’s what we’re seeing now. Over time, it will disable Manifest V2 extensions automatically, and Chrome will recommend Manifest V3-based alternatives. Google expects to complete this transition by early 2025.
</p>

<p>
	 
</p>

<p>
	In any event, users who rely on uBlock Origin or other Manifest V2-based extensions have a choice to make. They can switch to less effective V3-based blockers and see how it goes. Or they can use a safer and more secure web browser that isn’t making Manifest V3 a requirement. Brave is the best choice, as it doesn’t even require this type of extension because it effectively blocks trackers and ads automatically. But Firefox is a good choice too, as long as you install a few good extensions (uBlock Origin, Privacy Badger, and others).
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://www.thurrott.com/cloud/web-browsers/google-chrome/306644/ublocked-as-chrome-transitions-to-manifest-v3-ad-blockers-get-less-effective" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">24672</guid><pubDate>Sun, 04 Aug 2024 14:44:44 +0000</pubDate></item><item><title>Linux kernel impacted by new SLUBStick cross-cache attack</title><link>https://nsaneforums.com/news/security-privacy-news/linux-kernel-impacted-by-new-slubstick-cross-cache-attack-r24667/</link><description><![CDATA[<p>
	A novel Linux Kernel cross-cache attack named SLUBStick has a 99% success in converting a limited heap vulnerability into an arbitrary memory read-and-write capability, letting the researchers elevate privileges or escape containers.
</p>

<p>
	 
</p>

<p>
	The discovery comes from a team of researchers from the Graz University of Technology who demonstrated the attack on Linux kernel versions 5.9 and 6.2 (latest) using nine existing CVEs in both 32-bit and 64-bit systems, indicating high versatility.
</p>

<p>
	 
</p>

<p>
	Additionally, the attack worked with all modern kernel defenses like Supervisor Mode Execution Prevention (SMEP),  Supervisor Mode Access Prevention (SMAP), and Kernel Address Space Layout Randomization (KASLR) active.
</p>

<p>
	 
</p>

<p>
	SLUBStick will be presented in detail at the upcoming Usenix Security Symposium conference later this month. The researchers will showcase privilege escalation and container escape in the latest Linux with state-of-the-art defenses enabled.
</p>

<p>
	 
</p>

<p>
	In the meantime, the published technical paper contains all the details about the attack and the potential exploitation scenarios.
</p>

<p>
	<br />
	<span style="font-size:20px;"><strong>SLUBStick details</strong></span>
</p>

<p>
	 
</p>

<p>
	One way the Linux kernel manages memory efficiently and securely is by allocating and de-allocating memory chunks, called "slabs," for different types of data structures.
</p>

<p>
	 
</p>

<p>
	Flaws in this memory management process may allow attackers to corrupt or manipulate data structures, called cross-cache attacks. However, these are effective roughly 40% of the time and typically lead to system crashes sooner or later.
</p>

<p>
	 
</p>

<p>
	SLUBStick exploits a heap vulnerability, such as a double-free, user-after-free, or out-of-bounds write, to manipulate the memory allocation process.
</p>

<p>
	 
</p>

<p style="text-align:center;">
	<img alt="cves.jpg" class="ipsImage" data-ratio="58.26" height="208" width="357" src="https://www.bleepstatic.com/images/news/u/1220909/2024/Papers/03/cves.jpg" />
</p>

<p style="text-align:center;">
	<span style="font-size:12px;"><em><strong>CVEs successfully used in the researchers' experiments</strong></em></span>
</p>

<p style="text-align:center;">
	<span style="font-size:12px;"><em>Source: stefangast.eu</em></span>
</p>

<p style="text-align:center;">
	 
</p>

<p>
	Next, it uses a timing side channel to determine the exact moment of memory chunk allocation/deallocation, allowing the attacker to predict and control memory reuse.
</p>

<p>
	 
</p>

<p>
	Using this timing information raises the success of the cross-change exploitation to 99%, making SLUBStick very practical.
</p>

<p>
	 
</p>

<p style="text-align:center;">
	<img alt="success-rate.jpg" class="ipsImage" data-ratio="62.48" height="383" width="613" src="https://www.bleepstatic.com/images/news/u/1220909/2024/Papers/03/success-rate.jpg" />
</p>

<p style="text-align:center;">
	<span style="font-size:12px;"><em><strong>Measured success rates</strong></em></span>
</p>

<p style="text-align:center;">
	<span style="font-size:12px;"><em>Source: stefangast.eu</em></span>
</p>

<p style="text-align:center;">
	 
</p>

<p>
	The conversion of the heap flaw into arbitrary memory read-and-write primitive is done in three steps:
</p>

<p>
	 
</p>

<ul>
	<li>
		    Free specific memory chunks and wait for the kernel to reuse them.
	</li>
</ul>

<p>
	 
</p>

<ul>
	<li>
		    Reallocate these chunks in a controlled manner, ensuring they get repurposed for critical data structures like page tables.
	</li>
</ul>

<p>
	 
</p>

<ul>
	<li>
		    Once reclaimed, the attacker overwrites the page table entries, getting the ability to read and write any memory location.
	</li>
</ul>

<p>
	 
</p>

<p style="text-align:center;">
	<img alt="slubstick-3steps.jpg" class="ipsImage" data-ratio="42.50" height="162" width="720" src="https://www.bleepstatic.com/images/news/u/1220909/2024/Papers/03/slubstick-3steps.jpg" />
</p>

<p style="text-align:center;">
	<span style="font-size:12px;"><em><strong>SLUBStick overview</strong></em></span>
</p>

<p style="text-align:center;">
	<span style="font-size:12px;"><em>Source: stefangast.eu</em></span>
</p>

<p style="text-align:center;">
	 
</p>

<p>
	<span style="font-size:20px;"><strong>Real-world impact</strong></span>
</p>

<p>
	 
</p>

<p>
	As with most attacks involving a side channel, SLUBStick requires local access on the target machine with code execution capabilities. Furthermore, the attack requires the presence of a heap vulnerability in the Linux kernel, which will then be used to gain read and write access to the memory.
</p>

<p>
	 
</p>

<p>
	While this may make the attack appear impractical, it does introduce some benefits to attackers.
</p>

<p>
	 
</p>

<p>
	Even for attackers with code execution capabilities, SLUBStick provides the ability to achieve privilege escalation, bypass kernel defenses, perform container escapes, or use it as part of a complex attack chain.
</p>

<p>
	 
</p>

<p>
	Privilege escalation can be used to elevate privileges to root, allowing unlimited operations, while container escape can be used to break from sandboxed environments and access the host system.
</p>

<p>
	 
</p>

<p>
	Additionally, in the post-exploitation phase, SLUBStick could modify kernel structures or hooks to maintain persistence, making malware harder for defenders to detect.
</p>

<p>
	 
</p>

<p style="text-align:center;">
	<img alt="conversion.jpg" class="ipsImage" data-ratio="75.10" height="403" width="720" src="https://www.bleepstatic.com/images/news/u/1220909/2024/Papers/03/conversion.jpg" />
</p>

<p style="text-align:center;">
	<span style="font-size:12px;"><strong><em>Tampering with '/etc/passwd' data</em></strong></span>
</p>

<p style="text-align:center;">
	<span style="font-size:12px;"><em>Source: stefangast.eu</em></span>
</p>

<p style="text-align:center;">
	 
</p>

<p>
	Those who want to dive deeper into SLUBStick and experiment with the exploits used by the Graz University researchers can find them in the <span style="color:#2980b9;">researcher's GitHub repository</span>.
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://www.bleepingcomputer.com/news/security/linux-kernel-impacted-by-new-slubstick-cross-cache-attack/" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">24667</guid><pubDate>Sun, 04 Aug 2024 13:14:59 +0000</pubDate></item><item><title>Ransomware seizes hospitals' blood supply</title><link>https://nsaneforums.com/news/security-privacy-news/ransomware-seizes-hospitals-blood-supply-r24646/</link><description><![CDATA[<p>
	A ransomware attack on blood donation nonprofit OneBlood this week is forcing many hospitals across the southeastern U.S. to rely on their critical blood supplies and host last-minute blood drives.
</p>

<p>
	 
</p>

<p>
	<strong>Why it matters:</strong> OneBlood provides blood samples to more than 300 hospitals in Georgia, Florida and the Carolinas, and some hospitals may need to delay certain procedures until the blood supply is back to normal.
</p>

<p>
	 
</p>

<p>
	<strong>State of play:</strong> Susan Forbes, a spokesperson for OneBlood, told Axios on Thursday that the nonprofit's online infrastructure systems are "starting to come back online," noting that they'll soon be able to return to the critical online tools they use to label donated blood.
</p>

<p>
	 
</p>

<ul>
	<li>
		OneBlood first detected the ransomware attack on Monday, and ever since, the nonprofit has had to rely on manual processes — like printing out its own labels and having donors fill out paper forms — to ship donations to hospitals.
	</li>
</ul>

<p>
	 
</p>

<ul>
	<li>
		In the last few days, the nonprofit has brought in more people, printers and other systems to more quickly label blood samples as required under FDA regulations, Forbes said.
	</li>
</ul>

<p>
	 
</p>

<ul>
	<li>
		"Donors are coming in," she said. "It's getting the product out the door to the hospital — there's the delay in that because of the manual processes to label these products."
	</li>
</ul>

<p>
	 
</p>

<p>
	<strong>Threat level:</strong> Earlier this week, the nonprofit urged more than 250 hospital partners to activate their critical blood shortage protocols.
</p>

<p>
	 
</p>

<p>
	Other blood banks have started helping out local hospitals to fill in the gaps. But "there's only so much blood to go around," Forbes said.
</p>

<p>
	 
</p>

<p>
	<strong>Zoom in:</strong> At Tallahassee Memorial HealthCare, at least two complex elective surgeries were rescheduled Wednesday, and the hospital is actively seeking additional blood supply sources, according to WCTV.
</p>

<p>
	 
</p>

<ul>
	<li>
		The University of Miami health system hosted a blood drive Thursday to help supplement supplies to local hospitals.
	</li>
</ul>

<p>
	 
</p>

<p>
	<strong>The big picture:</strong> Ransomware attacks against U.S. health care systems are getting worse, Allan Liska, a ransomware analyst at Recorded Future, told Axios.
</p>

<p>
	 
</p>

<ul>
	<li>
		Cybersecurity firm Check Point Software Technologies estimates that health care organizations face an average of 1,671 attacks per week.
	</li>
</ul>

<p>
	 
</p>

<p>
	<strong>What they're saying: </strong>"Just because the ransomware actor didn't pull the trigger doesn't mean they weren't indirectly responsible for the death of a patient," Liska said.
</p>

<p>
	 
</p>

<ul>
	<li>
		Anyone arguing that ransomware doesn't lead to patient death "is just wrong," he added.
	</li>
</ul>

<p>
	 
</p>

<p>
	<strong>Between the lines:</strong> Ransomware actors have learned that they can make a lot of money and get a lot of public attention when they target major health care systems, Liska said.
</p>

<p>
	 
</p>

<ul>
	<li>
		Public attention can be a selling point for those who operate so-called ransomware-as-a-service groups, where malware developers license their ransomware strains to freelance hackers for a share of the attack profits.
	</li>
</ul>

<p>
	 
</p>

<ul>
	<li>
		Ransoms can be lucrative if hackers hit the right target. Change Healthcare said it paid $22 million to ransomware hackers.
	</li>
</ul>

<p>
	 
</p>

<p>
	<strong>Yes, but: </strong>At least in the OneBlood cyberattack, people are able to help offset the impact, Liska said.
</p>

<p>
	 
</p>

<ul>
	<li>
		"Everyone can donate blood, and that can help all of these hospitals, all of these medical facilities that are suffering," he said. "It's weird to have a ransomware attack where there's an effective and immediate call to action."
	</li>
</ul>

<p>
	 
</p>

<p>
	<strong>The bottom line:</strong> OneBlood is calling on people who are able to donate blood, especially those with the O-positive and O-negative blood types that hospitals urgently need.
</p>

<p>
	 
</p>

<ul>
	<li>
		Platelet donations are also in high demand.
	</li>
</ul>

<p>
	 
</p>

<p>
	<strong><a href="https://www.axios.com/2024/08/02/ransomware-oneblood-hospital-blood-supply" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">24646</guid><pubDate>Fri, 02 Aug 2024 22:55:59 +0000</pubDate></item><item><title>Here is another reason why you should never click on ads to download software</title><link>https://nsaneforums.com/news/security-privacy-news/here-is-another-reason-why-you-should-never-click-on-ads-to-download-software-r24640/</link><description><![CDATA[<p>
	Imagine the following scenario. You want to download Google Authenticator, run a search on Google for the company's application, and click on the first link that appears.
</p>

<p>
	 
</p>

<p>
	The link looks good even though it is listed as sponsored. It shows Google's official site as the URL. When you check the advertiser, which you can on Google Search, you get confirmation that Google has verified the advertisers identity.
</p>

<p>
	 
</p>

<p>
	All good then? Not in the aforementioned case. If you would have downloaded the linked app, you would have installed malware-infested Authenticator application to your device. The application, which even came with a valid signature according to reports, installed the DeerStealer information-stealing malware on Windows devices.
</p>

<h3>
	Not the first case, likely not the last
</h3>

<p>
	Threat actors have managed to overcome the security systems of advertising companies such as Google numerous times in the past to plant malware ads on Google Search and elsewhere. We have reported on this numerous times already, for example <a data-wpel-link="internal" href="https://www.ghacks.net/2022/12/30/hackers-google-ads-well-known-apps-malware/" rel="external nofollow">here</a> or <a data-wpel-link="internal" href="https://www.ghacks.net/2022/08/01/researchers-discover-hiddenads-malware-in-a-dozen-android-apps-that-were-distributed-on-the-google-play-store/" rel="external nofollow">here</a>.
</p>

<p>
	 
</p>

<p>
	Just last year, it was reported that <a data-wpel-link="internal" href="https://www.ghacks.net/2023/02/03/report-malware-is-pushed-through-google-ads-at-an-alarming-rate/" rel="external nofollow">malware was distributed via Google Ads at an alarming rate</a>. The situation has not improved.
</p>

<p>
	 
</p>

<p>
	These are often made to look like the legitimate product, and it is very difficult for the user to determine that they are not.
</p>

<p>
	 
</p>

<p>
	In the above case, everything checked out on first glance:
</p>

<p>
	 
</p>

<ul>
	<li>
		Correct Google Domain listed.
	</li>
	<li>
		Google verified the advertiser.
	</li>
	<li>
		App is signed.
	</li>
</ul>

<p>
	 
</p>

<p>
	Bleeping Computer <a data-wpel-link="external" href="https://www.bleepingcomputer.com/news/security/google-ads-push-fake-google-authenticator-site-installing-malware/" rel="external nofollow" target="_blank">asked</a> Google about the impersonating of legitimate companies and people, and Google stated that threat actors are evading detection by creating thousands of accounts simultaneously and using text manipulation and cloaking to show reviewers and automated systems different websites than a regular visitor would see".
</p>

<p>
	 
</p>

<p>
	In other words, Google admits that it cannot protect users from malicious ads 100% of the time. While it boasts that it has removed "3.4 billion ads" and suspended "5.6 million advertiser accounts" in 2023, it still has not found a way to detect all malicious ads and advertisers on Google Search.
</p>

<h2>
	Sponsored links are not to be trusted
</h2>

<p>
	Any link in Search that is listed as sponsored or an ad should not be trusted, especially when it comes to downloading software or making financial transactions. This is the only consequence that users should draw from that statement.
</p>

<p>
	 
</p>

<p>
	Threat actors have abused search ads one to many times to make them trusted. Usually, all it takes is to scroll down a bit more until you find the first organic search results. There you should find the official website listing of the product.
</p>

<p>
	 
</p>

<p>
	<em>What about you? Do you click on ads or sponsored results sometimes? What is your take away from the recent malicious advertising campaign? Feel free to leave a comment down below.</em>
</p>

<p>
	 
</p>


<div id="div-gpt-ad-1524862513262-0">
	 
</div>

<p>
	<a href="https://www.ghacks.net/2024/08/02/here-is-another-reason-why-you-should-never-click-on-ads-to-download-software/" rel="external nofollow">Source</a>
</p>

<p>
	 
</p>

<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Thank you for appreciating my time and effort posting news every single day for many years.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>2023: Over 5,800 news posts | 2024 (till end of July): 3,313 news posts</em></span>
</p>
]]></description><guid isPermaLink="false">24640</guid><pubDate>Fri, 02 Aug 2024 20:09:07 +0000</pubDate></item><item><title>China-based Evasive Panda hackers compromised an ISP to spread malware, report says</title><link>https://nsaneforums.com/news/security-privacy-news/china-based-evasive-panda-hackers-compromised-an-isp-to-spread-malware-report-says-r24631/</link><description><![CDATA[<p>
	 A China-based cyber-espionage group compromised an internet service provider (ISP) to spread malware in 2023, researchers said Friday, confirming a hunch expressed in an earlier report about the same operation.
</p>

<p>
	 
</p>

<p>
	Analysts at Volexity said the hacking operation — known as Evasive Panda, Bronze Highland, Daggerfly and StormBamboo — was indeed undertaking “adversary in the middle” attacks in 2023 as it infected Mac and Windows systems. In such incidents, threat actors get between a device and an otherwise trusted server to deliver malicious code.
</p>

<p>
	 
</p>

<p>
	Researchers at a different company, ESET, had attributed at least one malware infection to Evasive Panda in 2023 but could only speculate that it was an adversary-in-the-middle attack.
</p>

<p>
	 
</p>

<p>
	Volexity said its analysis showed that Evasive Panda had compromised the target’s ISP and was poisoning DNS requests — the basic communications that help devices reach internet addresses.
</p>

<p>
	 
</p>

<p>
	“Volexity notified and worked with the ISP, who investigated various key devices providing traffic-routing services on their network,” Volexity said. “As the ISP rebooted and took various components of the network offline, the DNS poisoning immediately stopped.”
</p>

<p>
	 
</p>

<p>
	The attackers had used the disruption to serve up information-stealing malware known as MgBot or Pocostick (for Windows machines) and Macma (for MacOS devices). MgBot, in particular, has been a tool for Evasive Panda for more than a decade. ESET found MgBot used against China’s Tibetan population earlier this year.
</p>

<p>
	 
</p>

<p>
	Volexity said that in the 2023 incidents it analyzed, certain apps would request updates but the users’ devices would get MgBot and Macma instead.
</p>

<p>
	 
</p>

<p>
	“StormBamboo appeared to target software that used insecure update mechanisms, such as HTTP, and did not properly validate digital signatures of installers,” Volexity said.
</p>

<p>
	 
</p>

<p>
	Evasive Panda remains “a highly skilled and aggressive threat actor,” the researchers said, with a wide variety of malware at hand and “significant effort” invested in operations.
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://therecord.media/china-based-hackers-evasive-isps-malware" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">24631</guid><pubDate>Fri, 02 Aug 2024 19:40:34 +0000</pubDate></item><item><title>US sues TikTok over 'massive-scale' privacy violations of kids under 13</title><link>https://nsaneforums.com/news/security-privacy-news/us-sues-tiktok-over-massive-scale-privacy-violations-of-kids-under-13-r24629/</link><description><![CDATA[<p>
	The U.S. Justice Department filed a lawsuit Friday against TikTok and parent company ByteDance for failing to protect children's privacy on the social media app as the Biden administration continues its crackdown on the social media site.
</p>

<p>
	 
</p>

<p>
	The government said TikTok violated the Children's Online Privacy Protection Act that requires services aimed at children to obtain parental consent to collect personal information from users under age 13.
</p>

<p>
	<br />
	The Chinese-owned short-video platform boasts around 170 million U.S. users, and is currently fighting a new law that would force ByteDance to divest TikTok's U.S. assets by Jan. 19 or face a ban.
</p>

<p>
	<br />
	The lawsuit is the latest U.S. action against TikTok and its Chinese parent over fears the company improperly collects vast amounts of data on Americans for the Chinese government, while influencing content in a way that could harm Americans.
</p>

<p>
	<br />
	The suit, which was joined by the Federal Trade Commission, said it was aimed at putting an end "to TikTok's unlawful massive-scale invasions of children's privacy."
</p>

<p>
	<br />
	Representative Frank Pallone, the top Democrat on the Energy and Commerce Committee, said the suit "underscores the importance of divesting TikTok from Chinese Communist Party control. We simply cannot continue to allow our adversaries to harvest vast troves of Americans’ sensitive data."
</p>

<p>
	<br />
	TikTok said Friday it disagrees "with these allegations, many of which relate to past events and practices that are factually inaccurate or have been addressed. We are proud of our efforts to protect children, and we will continue to update and improve the platform."
</p>

<p>
	<br />
	The DOJ said TikTok knowingly permitted children to create regular TikTok accounts, and then create and share short-form videos and messages with adults and others on the regular TikTok platform. TikTok collected personal information from these children without obtaining consent from their parents.
</p>

<p>
	<br />
	The U.S. alleges that for years millions of American children under 13 have been using TikTok and the site "has been collecting and retaining children's personal information."
</p>

<p>
	<br />
	"TikTok knowingly and repeatedly violated kids’ privacy, threatening the safety of millions of children across the country,” said FTC Chair Lina Khan, whose agency in June referred the case to the Justice Department.
</p>

<p>
	<br />
	The FTC is seeking penalties of up to $51,744 per violation per day from TikTok for improperly collecting data, which could theoretically total billions of dollars if TikTok were found liable.
</p>

<p>
	<br />
	Reuters in 2020 first reported the FTC and Justice Department were looking into allegations the popular social media app failed to live up to a 2019 agreement aimed at protecting children's privacy.
</p>

<p>
	<br />
	The company last year faced fines from the European Union and U.K. over its handling of children's data.
</p>

<p>
	<br />
	On Tuesday, U.S. Senate passed a bill that would extend COPPA to cover teenagers up to age 17, ban targeted advertising to kids and teens, and give parents and kids the option to delete their information from social media platforms.
</p>

<p>
	<br />
	The bill would need to pass in the Republican-controlled House, currently on recess until September, to become law.
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://www.reuters.com/technology/doj-faces-friday-deadline-tiktok-children-privacy-suit-2024-08-02/" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">24629</guid><pubDate>Fri, 02 Aug 2024 19:14:40 +0000</pubDate></item><item><title>Twilio kills off Authy for desktop, forcibly logs out all users</title><link>https://nsaneforums.com/news/security-privacy-news/twilio-kills-off-authy-for-desktop-forcibly-logs-out-all-users-r24614/</link><description><![CDATA[<p>
	Twilio has finally killed off its Authy for Desktop application, forcibly logging users out of the desktop application.
</p>

<p>
	 
</p>

<p>
	In January, <a data-sk="tooltip_parent" data-stringify-link="https://www.bleepingcomputer.com/news/security/twilio-will-ditch-its-authy-desktop-2fa-app-in-august-goes-mobile-only/" delay="150" href="https://www.bleepingcomputer.com/news/security/twilio-will-ditch-its-authy-desktop-2fa-app-in-august-goes-mobile-only/" rel="external nofollow" target="_blank">Twilio announced</a> that the Authy desktop apps for Windows, macOS, and Linux would reach the end of life on March 19, 2024, and will ultimately be discontinued in August 2024.
</p>

<p>
	 
</p>

<p>
	While the desktop apps continued to work past March, when opened, they showed an alert warning that the program had reached end of life and that users should switch to the mobile versions immediately.
</p>

<p>
	 
</p>

<div style="">
	<figure class="image" style="display:inline-block">
		<img alt="Authy for desktop warnings" class="ipsImage" height="350" width="357" src="https://www.bleepstatic.com/images/news/security/a/authy/rip-desktop/authy-alert.jpg">
		<figcaption>
			<em>Authy for desktop warnings<br>
			Source: BleepingComputer</em>
		</figcaption>
	</figure>
</div>

<p>
	This ended about thirteen days ago when Twilio forcibly logged all desktop devices out of their Authy accounts and no longer allowed them to log back in with their phone numbers.
</p>

<p>
	 
</p>

<div style="">
	<figure class="image" style="display:inline-block">
		<img alt="Authy for desktop users forcibly logged out" class="ipsImage" height="720" width="433" src="https://www.bleepstatic.com/images/news/security/a/authy/rip-desktop/device-removed.jpg">
		<figcaption>
			<em>Authy for desktop users forcibly logged out<br>
			Source: BleepingComputer</em>
		</figcaption>
	</figure>
</div>

<p>
	Those who have continued to use Authy for Desktop, even after all the warnings, have found that their 2FA accounts are gone unless they had previously synced them with a mobile device.
</p>

<p>
	 
</p>

<p>
	However, those who synced their desktop apps with the mobile versions have discovered that some of their <a href="https://www.reddit.com/r/Authy/comments/1e9u5so/tokens_are_gone/" rel="external nofollow" target="_blank">tokens did not correctly synchronize</a>, making their associate accounts inaccessible.
</p>

<p>
	 
</p>

<p>
	In June, threat actors found an unsecured Authy API that could be used to verify if a phone number was associated with a valid account.
</p>

<p>
	 
</p>

<p>
	The threat actors fed millions of phone numbers into the API, allowing them to build profiles of <a href="https://www.bleepingcomputer.com/news/security/hackers-abused-api-to-verify-millions-of-authy-mfa-phone-numbers/" target="_blank" rel="external nofollow">33 million phone numbers on Authy</a>, which were then leaked on a hacking forum.
</p>

<p>
	 
</p>

<p>
	Twilio fixed the bug by securing the API and releasing an updated mobile app version. Some believe that Authy desktop users cannot log in because the desktop app has not been updated with the new fix for the API.
</p>

<p>
	 
</p>

<p>
	However, in June, Authy released version 3.0, stating it would be the final desktop release, so we will unlikely see another one.
</p>

<p>
	 
</p>

<p>
	<em>Update 8/1/24: </em>Twilio told BleepingComputer that users were logged out as part of the planned end-of-life plans for Authy desktop apps as described <a href="https://help.twilio.com/articles/22771146070299-User-guide-End-of-Life-EOL-for-Twilio-Authy-Desktop-app" rel="external nofollow" target="_blank">here</a>.
</p>

<p>
	 
</p>

<p>
	<a href="https://www.bleepingcomputer.com/news/security/twilio-kills-off-authy-for-desktop-forcibly-logs-out-all-users/" rel="external nofollow">Source</a>
</p>

<p>
	 
</p>

<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Thank you for appreciating my time and effort posting news every single day for many years.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>2023: Over 5,800 news posts | 2024 (till end of July): 3,313 news posts</em></span>
</p>
]]></description><guid isPermaLink="false">24614</guid><pubDate>Fri, 02 Aug 2024 04:10:40 +0000</pubDate></item><item><title>More Legal Records Stolen in 2023 Than Previous 5 Years Combined</title><link>https://nsaneforums.com/news/security-privacy-news/more-legal-records-stolen-in-2023-than-previous-5-years-combined-r24611/</link><description><![CDATA[<p>
	<span style="font-size:16px;">Law firms make the perfect target for extortion, so it's no wonder that ransomware attackers target them and demand multimillion dollar ransoms.</span>
</p>

<p>
	 
</p>

<p>
	2023 was the worst year on record for cybersecurity in the legal industry by some distance.
</p>

<p>
	 
</p>

<p>
	Just one point of evidence: Since 2018, 2.9 million records have been stolen in association with publicly reported breaches of law firms.
</p>

<p>
	 
</p>

<p>
	Some 1.56 million records were stolen last year alone, an increase of 615% as compared with the down year of 2022 (218,473 records).
</p>

<p>
	 
</p>

<p>
	A new blog post from Comparitech paints a picture of an industry struggling to grapple with the ransomware problem. Major law firms have been paying multimillion dollar sums to protect their clients' ultra-sensitive data, and flailing in their attempts to fight back.
</p>

<p>
	<br />
	<span style="font-size:22px;"><strong>The State of Legal Industry Cybersecurity</strong></span>
</p>

<p>
	 
</p>

<p>
	Since 2018, 138 legal firms have publicly admitted being affected by ransomware attacks.
</p>

<p>
	 
</p>

<p>
	Of those, 107 attacks have been US-based, with approximately 2.9 million records affected. As Comparitech noted, the distance between the US and its next neighbors — the UK, with 9 attacks affecting 9,703 records, and Germany, with 5 affecting an unknown number — may have more to do with reporting requirements than anything else.
</p>

<p>
	 
</p>

<p>
	The average ransom among publicly reported cases has been $2.47 million, and the average amount actually paid out after negotiations is $1.65 million. These numbers are rough estimates of reality, however, as only 11 reported incidents also reported the ransom demands, with only eight reported ransoms paid.
</p>

<p>
	<br />
	<span style="font-size:22px;"><strong>Consequences to Law Firms</strong></span>
</p>

<p>
	 
</p>

<p>
	If ransomware attacks against law firms have been trending, it's because they make for perfect targets.
</p>

<p>
	 
</p>

<p>
	"Legal firms are an interesting case," Paul Bischoff, privacy advocate at Comparitech explains, "because with most any other company, hackers are just looking for low-hanging fruit. They may want as many, say, Social Security numbers or passwords as they can possibly steal. And higher quantities of records is the goal. But with law firms, you have data that's very valuable to very specific people.
</p>

<p>
	 
</p>

<p>
	Documents related to ongoing litigation would be extremely valuable to an opposing party in that case. So it's not so much about the quantity of data as much as it is about the content."
</p>

<p>
	 
</p>

<p>
	The ultra-sensitivity of legal data puts firms in a difficult negotiating position: pay millions of dollars, and risk achieving nothing, or don't, and risk extra ire from clients. 12% of legal industry ransomware attacks have resulted in lawsuits, and at least 75% of those have been successful.
</p>

<p>
	 
</p>

<p>
	Another reason to pay up? Comparitech estimates that the 138 attacks recorded might have cost victims around $18.8 billion dollars, purely thanks to the downtime they incurred. One victim of LockBit — the Ince Group, based in London — filed for bankruptcy last year after failing to cover the £5 million ($6.5 million USD) it spent restoring its systems.
</p>

<p>
	 
</p>

<p>
	Meanwhile, when victims try to use the law in their aid, they usually fail. The UK's Ward Hadaway and Australia's HWL Ebsworth Lawyers both issued injunctions against their attackers to little effect, as anonymous hackers aren't particularly easy to wrangle into court.
</p>

<p>
	 
</p>

<p>
	Canadian firm Robson Carpenter LLP enjoyed seeing its attacker face justice, but in the end received just $2,500 in restitution.
</p>

<p>
	 
</p>

<p>
	On the bright side, ransomware attacks against law firms in 2024 are noticeably lagging behind last year's numbers. Only 11 have been reported so far, affecting an unknown volume of client data.
</p>

<p>
	 
</p>

<p>
	"Overall, ransomware attacks happen down in frequency of attacks across all sectors that we've been covering," Bischoff notes. Perhaps, he speculates, attackers have been choosing quality over quantity. Or, more optimistically, "I think it's law enforcement crackdowns, and companies and organizations getting better in general at knowing what these threats are and being prepared."
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://www.darkreading.com/threat-intelligence/more-legal-records-stolen-2023-than-prior-5-years-combined" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">24611</guid><pubDate>Thu, 01 Aug 2024 22:03:30 +0000</pubDate></item><item><title>Over 1 Million Domains at Risk of 'Sitting Ducks' Domain Hijacking Technique</title><link>https://nsaneforums.com/news/security-privacy-news/over-1-million-domains-at-risk-of-sitting-ducks-domain-hijacking-technique-r24596/</link><description><![CDATA[<p>
	Over a million domains are susceptible to takeover by malicious actors by means of what has been called a Sitting Ducks attack.
</p>

<p>
	 
</p>

<p>
	The powerful attack vector, which exploits weaknesses in the domain name system (DNS), is being exploited by over a dozen Russian-nexus cybercriminal actors to stealthily hijack domains, a joint analysis published by Infoblox and Eclypsium has revealed.
</p>

<p>
	 
</p>

<p>
	"In a Sitting Ducks attack, the actor hijacks a currently registered domain at an authoritative DNS service or web hosting provider without accessing the true owner's account at either the DNS provider or registrar," the researchers said.
</p>

<p>
	 
</p>

<p>
	"Sitting Ducks is easier to perform, more likely to succeed, and harder to detect than other well-publicized domain hijacking attack vectors, such as dangling CNAMEs."
</p>

<p>
	 
</p>

<p>
	Once a domain has been taken over by the threat actor, it could be used for all kinds of nefarious activities, including serving malware and conducting spams, while abusing the trust associated with the legitimate owner.
</p>

<p>
	 
</p>

<p>
	Details of the "pernicious" attack technique were first documented by The Hacker Blog in 2016, although it remains largely unknown and unresolved to date. More than 35,000 domains are estimated to have been hijacked since 2018.
</p>

<p>
	 
</p>

<p>
	"It is a mystery to us," Dr. Renee Burton, vice president of threat intelligence at Infoblox, told The Hacker News. "We frequently receive questions from prospective clients, for example, about dangling CNAME attacks which are also a hijack of forgotten records, but we have never received a question about a Sitting Ducks hijack."
</p>

<p>
	 
</p>

<p>
	At issue is the incorrect configuration at the domain registrar and the authoritative DNS provider, coupled with the fact that the nameserver is unable to respond authoritatively for a domain it's listed to serve (i.e., lame delegation).
</p>

<p>
	 
</p>

<p style="text-align:center;">
	<img alt="spot-image-sitting-duck-fig-2.jpg" class="ipsImage" data-ratio="75.10" height="540" width="478" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhqmoIJSOmp9mx2Igt8-uX9deJmmTsdekpKzUI60TPfHMBPcLLOriWxAoSrjHznaI3tWHMLqZa6oYvf7WNxWUTz_uzW55TRlhu_eE2Nty7dZ0HD_j0Ytr7C6nsblF5_9dWWN7UbpGiwb3VKJ0WHbjpnnMSmfMVZthAcZRKWo5Ze-R3RGIhIcMgC_JzLF7QZ/s1700/spot-image-sitting-duck-fig-2.jpg" />
</p>

<p style="text-align:center;">
	 
</p>

<p>
	It also requires that the authoritative DNS provider is exploitable, permitting the attacker to claim ownership of the domain at the delegated authoritative DNS provider while not having access to the valid owner's account at the domain registrar.
</p>

<p>
	 
</p>

<p>
	In such a scenario, should the authoritative DNS service for the domain expire, the threat actor could create an account with the provider and claim ownership of the domain, ultimately impersonating the brand behind the domain to distribute malware.
</p>

<p>
	 
</p>

<p>
	"There are many variations [of Sitting Ducks], including when a domain has been registered, delegated, but not configured at the provider," Burton said.
</p>

<p>
	 
</p>

<p>
	The Sitting Ducks attack has been weaponized by different threat actors, with the stolen domains used to fuel multiple traffic distribution systems (TDSes) such as 404 TDS (aka Vacant Viper) and VexTrio Viper. It has also been leveraged to propagate bomb threat hoaxes and sextortion scams.
</p>

<p>
	 
</p>

<p>
	"Organizations should check the domains they own to see if any are lame and they should use DNS providers that have protection against Sitting Ducks," Burton said.
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://thehackernews.com/2024/08/over-1-million-domains-at-risk-of.html" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">24596</guid><pubDate>Thu, 01 Aug 2024 18:21:38 +0000</pubDate></item><item><title>Ever More Toxic Ransomware Brands Breed Lone Wolf Operators</title><link>https://nsaneforums.com/news/security-privacy-news/ever-more-toxic-ransomware-brands-breed-lone-wolf-operators-r24594/</link><description><![CDATA[<p>
	<span style="font-size:16px;">Ransomware Responders See a Surge, Likely Comprising Groups' Displaced Affiliates</span>
</p>

<p>
	 
</p>

<p>
	The downfall of previously high-flying ransomware operations Alphv and LockBit has shaken up the criminal underground, turning some former affiliates into lone operators and causing some under-the-radar groups to rack up record extortion payments.
</p>

<p>
	 
</p>

<p>
	Ransomware incident response firm Coveware said in a report that 10% of all ransomware attacks it monitored from April through June came from lone operators - a massive surge.
</p>

<p>
	 
</p>

<p>
	Those hackers likely are former affiliates of Alphv - aka BlackCat - or LockBit, "or actors that made the decision to operate independently due to the increasing threat of exposure, interruption and profit loss associated with 'toxic' ransomware brands," Coveware said.
</p>

<p>
	 
</p>

<p>
	Not every former affiliate of a disrupted ransomware gang is choosing to go it alone. One victim earlier this year paid the highest publicly known ransom in history, worth $75 million, to the Dark Angels ransomware group, said Zscaler ThreatLabz. Dark Angels has operated since May 2022 and runs the Dunghill data leak site, but it "has managed to attract very minimal attention."
</p>

<p>
	 
</p>

<p>
	Blockchain analytics firm Chainalysis said it saw the record-setting payment. Big game hunting, or "fewer attacks on larger targets with deeper pockets," lately continues to grow "more pronounced," it said in a post to social platform X.
</p>

<p>
	 
</p>

<p>
	Who paid the recent $75 million ransom? Zscaler declined to name names, saying only that the firm is on the Fortune 50 list of the most profitable publicly traded U.S. companies. As Bleeping Computer reported, this could line up with a ransomware attack against Fortune 10 pharmaceutical giant Cencora in February, which disclosed the attack but offered no specifics.
</p>

<p>
	 
</p>

<p>
	No ransomware group ever claimed credit for the hit. When this happens, it often means a victim did pay a ransom, which forestalled the attackers from trying to name and shame them or leak stolen data.
</p>

<p>
	<br />
	<span style="font-size:20px;"><strong>Rampant Innovation</strong></span>
</p>

<p>
	 
</p>

<p>
	Never-ending innovation by top-flight ransomware attackers highlights their profit-making imperative at the expense of all else, as repeat hits on hospitals, blood banks, schools and critical infrastructure demonstrate.
</p>

<p>
	 
</p>

<p>
	Much innovation arrived in recent years alongside the rise of ransomware-as-a-service groups. These paired operators who built crypto-locking malware, ran data leak infrastructure and sometimes handled negotiations with affiliates who used the malware to take down targets, typically keeping 70% or 80% of every resulting ransom in return.
</p>

<p>
	 
</p>

<p>
	Even with these RaaS groups, experts said credit for most attacks also goes to the affiliates involved. After BlackCat disappeared in March, one of its Western affiliates accused the Russian operators of purposefully shutting down, rather than sharing his cut of a $22 million ransom paid by UnitedHealth Group after he hit its Change Healthcare unit.
</p>

<p>
	 
</p>

<p>
	Even without such dramatic backstabbing, affiliates regularly switch allegiance, sometimes in return for a bigger commission or to access technical innovations. Some also work with multiple groups at once, deciding on a per-victim basis which type of ransomware might be the best fit, perhaps based on the crypto-locking malware's capabilities, if it is a supply chain attack, or on the basis of a group's data leak infrastructure, negotiation capabilities or even the scariness of its reputation (see: Ransomware Groups' Data Leak Blogs Lie: Stop Trusting Them).
</p>

<p>
	 
</p>

<p>
	Just as affiliates come and go, the groups themselves may have opaque relationships with each other. When Dark Angels debuted, it used a variant of Babuk ransomware, reported Cyble. The group then switched to Ragnar Locker, at least until police seized that group's infrastructure last October, ThreatLabz said.
</p>

<p>
	<br />
	<span style="font-size:20px;"><strong>Imperative: Make Victims Pay</strong></span>
</p>

<p>
	 
</p>

<p>
	The impetus for ransomware threat actors' unceasing innovation is to counteract the constant improvement in organizations' collective defenses and force more victims to pay.
</p>

<p>
	 
</p>

<p>
	Lately, the bad guys appear to have gained an edge. Coveware said 36% of victims chose to pay a ransom during the second quarter of this year, up from 28% in the first three months. They paid on average $391,015 - a 2.4% increase from the prior quarter. In the same time frame, the median ransom payment dropped by one-third, to $170,000. This could reflect a relatively higher number of lower-price ransom payments than before and/or a few very high payments.
</p>

<p>
	 
</p>

<p>
	Of the companies who paid, 43% did so solely in response to data exfiltration, in return for a promise from criminals to delete their stolen data. This was a sharp increase from the 23% who paid only for data deletion from January through March (see: Ransom Realpolitik: Paying for Data Deletion Is for Suckers).
</p>

<p>
	 
</p>

<p>
	Coveware said the greatest number of attacks it saw involved Akira ransomware, followed by independent operators. Next up in terms of market share were Black Basta, BlackSuit, LockBit 3.0, Medusa, BianLian, Inc Ransom and Phobos.
</p>

<p>
	 
</p>

<p>
	Both Akira and Black Basta's market shares held steady in the first half of this year, and the tactics, techniques and procedures used to distribute their ransomware didn't appear to change, "suggesting not all ransomware brands have opened their doors to receive displaced affiliates," Coveware said. At the same time, TTPs previously tied to just BlackCat or LockBit attacks suddenly became tied to other groups' or independent operators' attacks.
</p>

<p>
	 
</p>

<p>
	As that highlights, simply tracking which ransomware groups appear to be hot or not doesn't tell the full story - and especially now with more lone wolves in play.
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://www.inforisktoday.com/blogs/ever-more-toxic-ransomware-brands-breed-lone-wolf-operators-p-3682" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">24594</guid><pubDate>Thu, 01 Aug 2024 17:42:21 +0000</pubDate></item><item><title>Credit card users get mysterious shopify-charge.com charges</title><link>https://nsaneforums.com/news/security-privacy-news/credit-card-users-get-mysterious-shopify-chargecom-charges-r24588/</link><description><![CDATA[<p>
	People worldwide report seeing mysterious $1 or $0 charges from Shopify-charge.com appearing on their credit card bills, even when they did not attempt to purchase anything.
</p>

<p>
	 
</p>

<p>
	The charges have no rhyme or reason to them and are seen on physical and virtual credit cards of all types, including those from Discover, Monzo, Capital One, and other Visa cards. Some people report that charges were also attempted against older deactivated cards.
</p>

<p>
	 
</p>

<p>
	According to reports, the charges started approximately ten days ago, on July 21st, with the number of impacted people increasing as time passed.
</p>

<p>
	 
</p>

<p>
	"Not sure if it was just me today but seems like I've got a shopify active card check today. Thankfully, no money was debited. Got in touch with support and they confirmed it was a scammer," warned a Monzo card member <a href="https://www.reddit.com/r/monzo/comments/1e8tkqo/suspected_fraud/" rel="external nofollow" target="_blank">on Reddit</a>.
</p>

<p>
	 
</p>

<p>
	"I just received an email from privacy.com notifying me of a decline. The declined payment was for $0.00 charge at SHOPIFY-CHARGE.COM I have not used this card outside of paying for my Wyze cam subscription," <a href="https://www.reddit.com/r/wyzecam/comments/1eec1i7/compromised_credit_card_payments/" rel="external nofollow" target="_blank">warned another person</a>.
</p>

<p>
	 
</p>

<div style="">
	<figure class="image" style="display:inline-block">
		<img alt="Example $0 charge from shopify-charge.com" class="ipsImage" height="720" width="359" src="https://www.bleepstatic.com/images/news/security/s/shopify/shopify-charges.com-charge/shopify-charge.jpg">
		<figcaption>
			<em>Example $0 charge from shopify-charge.com<br>
			Source: Reddit</em>
		</figcaption>
	</figure>
</div>

<p>
	Since then, many people have reported these unusual charges on Reddit and the <a href="https://community.shopify.com/c/shopify-discussions/a-charge-for-0-00-from-shopify-charge-com/m-p/2678947" rel="external nofollow" target="_blank">Shopify forums</a>.
</p>

<p>
	 
</p>

<p>
	Of more concern is that two people claimed to have received similar charges soon after creating a new virtual card at their bank.
</p>

<p>
	 
</p>

<p>
	The attempted charges state they are from shopify-charge.com with a phone number of 866-938-2427. Some attempted charges <a href="https://www.reddit.com/r/shopify/comments/1e9w9it/pending_1_shopifychargecom_on_my_credit_card/" rel="external nofollow" target="_blank">include an address</a> of 5715 Will Clayton Pkwy, Texas 77338, which appears to be a non-existent location.
</p>

<p>
	 
</p>

<p>
	However, Shopify-charge.com is a legitimate website operated by Shopify that, when visited in a browser, explains to a user that the charge came from a subscription fee or a purchase at a Shopify store. While some who received these charges claim they have never used their credit card at Shopify, many stores use the platform as their backend without a customer knowing.
</p>

<p>
	 
</p>

<p>
	As for the phone number, BleepingComputer's attempts to call it led to the debt collection firm Halsted Financial. BleepingComputer emailed the company to see if they were associated with the charges but has not received a reply yet.
</p>

<p>
	 
</p>

<p>
	One impacted person <a href="https://www.reddit.com/r/personalfinance/comments/1e8pcnv/comment/lfi9cgc/" rel="external nofollow" target="_blank">posted to Reddit</a> saying they called the number, and Halsted said they do not know why their number is associated with these charges.
</p>

<p>
	 
</p>

<p>
	Shopify has recently <a href="https://www.bleepingcomputer.com/news/security/shopify-denies-it-was-hacked-links-stolen-data-to-third-party-app/" target="_blank" rel="external nofollow">suffered a third-party data breach</a> at one of its vendors, leading many to think these charges may be related. However, the data exposed in that breach did not contain credit card or payment information.
</p>

<p>
	 
</p>

<p>
	BleepingComputer attempted to contact Shopify multiple times but did not receive a reply to our emails.
</p>

<p>
	 
</p>

<p>
	If you have received any of these charges and have more information to share, please comment on this story, contact us via Signal at 646-961-3731, or email us tips@bleepingcomputer.com.
</p>

<p>
	 
</p>

<p>
	<a href="https://www.bleepingcomputer.com/news/security/credit-card-users-get-mysterious-shopify-chargecom-charges/" rel="external nofollow">Source</a>
</p>

<p>
	 
</p>

<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Thank you for appreciating my time and effort posting news every single day for many years.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>2023: Over 5,800 news posts | 2024 (till end of July): 3,313 news posts</em></span>
</p>
]]></description><guid isPermaLink="false">24588</guid><pubDate>Thu, 01 Aug 2024 06:36:52 +0000</pubDate></item><item><title>Ransomware attack on major US blood center prompts hundreds of hospitals to implement shortage protocols</title><link>https://nsaneforums.com/news/security-privacy-news/ransomware-attack-on-major-us-blood-center-prompts-hundreds-of-hospitals-to-implement-shortage-protocols-r24585/</link><description><![CDATA[<p>
	One of the largest blood centers in the U.S. is operating at reduced capacity after ransomware hackers shut down parts of its system.
</p>

<p>
	 
</p>

<p>
	Nonprofit OneBlood, which provides blood to healthcare facilities across the southeast, released a statement on Wednesday warning the public that the ransomware attack is impacting their ability to operate.
</p>

<p>
	 
</p>

<p>
	“We have implemented manual processes and procedures to remain operational. Manual processes take significantly longer to perform and impacts inventory availability,” said Susan Forbes, OneBlood senior vice president of corporate communications.
</p>

<p>
	 
</p>

<p>
	“In an effort to further manage the blood supply we have asked the more than 250 hospitals we serve to activate their critical blood shortage protocols and to remain in that status for the time being.”
</p>

<p>
	 
</p>

<p>
	OneBlood said it is now working with cybersecurity specialists alongside federal and state officials to resolve the crisis. The organization provides blood and other healthcare material to hundreds of hospitals across Alabama, South Carolina, Florida, Georgia and North Carolina.
</p>

<p>
	 
</p>

<p>
	The organization is still operational and has continued to collect, test and distribute blood but is “operating at a significantly reduced capacity.”
</p>

<p>
	 
</p>

<p>
	The incident has prompted an outpouring of support from other blood organizations and the AABB Disaster Task Force is now organizing efforts to send blood and platelets to OneBlood. There is an urgent need for O positive, O negative and platelet donations, but all blood types are needed.
</p>

<p>
	 
</p>

<p>
	Forbes said the company immediately began an investigation to confirm the attack before kicking off efforts to address the incident.
</p>

<p>
	“Our comprehensive response efforts are ongoing and we are working diligently to restore full functionality to our systems as expeditiously as possible,” Forbes explained.
</p>

<p>
	 
</p>

<p>
	“The blood supply cannot be taken for granted. The situation we are dealing with is ongoing. If you are eligible to donate, we urge you to please make an appointment to donate as soon as possible.”
</p>

<p>
	 
</p>

<p>
	The attack was first reported by CNN, which obtained an advisory sent to the Health Information Sharing and Analysis Center that warned of potential shortages at hospitals in Florida. The organization has had to manually label blood products due to the ransomware attack, CNN reported.
</p>

<p>
	 
</p>

<p>
	The attack comes just one week after a prominent U.K. blood test provider said it has made significant progress in rebuilding substantial parts of its IT infrastructure following a ransomware attack in June.
</p>

<p>
	 
</p>

<p>
	Pathology services provider Synnovis was attacked by the Qilin ransomware gang last month, causing the cancellation of more than 1,000 critical surgeries and forcing England’s National Health Service to issue urgent calls for O-type blood donations.
</p>

<p>
	 
</p>

<p>
	The ransomware attack left U.K. national blood stocks “in a very fragile position,” according to a letter sent two weeks ago to National Health Service chief executives.
</p>

<p>
	 
</p>

<p>
	Ransomware gangs also attacked the national lab service of South Africa, gravely impacting the country’s efforts to deal with several concurrent health crises — mpox, HIV and tuberculosis.
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://therecord.media/ransomware-attack-blood-center-shortage-protocols-hospitals" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">24585</guid><pubDate>Thu, 01 Aug 2024 01:01:22 +0000</pubDate></item><item><title>Taiwan pioneers non-invasive urine test for thyroid cancer</title><link>https://nsaneforums.com/news/security-privacy-news/taiwan-pioneers-non-invasive-urine-test-for-thyroid-cancer-r24584/</link><description><![CDATA[<p>
	Taipei, July 31 (CNA) A novel non-invasive method for postoperative monitoring of thyroid cancer using a protein biomarker in urine has the potential to cut detection costs, according to researchers in Taiwan.
</p>

<p>
	 
</p>

<p>
	Thyroid cancer is the ninth most common cancer among Taiwanese people, according to Wang Chih-yuan (王治元), deputy director at the Department of Internal Medicine at National Taiwan University Hospital and leader of the research team that conducted the groundbreaking study.
</p>

<p>
	 
</p>

<p>
	"Thyroid cancer has the longest survival rate among thyroid-related cancers, making long-term monitoring an important issue," Wang said at a press conference on Wednesday.
</p>

<p>
	 
</p>

<p>
	A total thyroidectomy (surgical removal of all the thyroid gland) and radioactive iodine therapy are the two most common treatments for thyroid cancer, explained Wang, adding that the detection of serum thyroglobulin, a protein found in human blood, is the traditional way to monitor patients for residual tumor cells or recurrent cancer.
</p>

<p>
	 
</p>

<p>
	However, such a detection method is invasive since it requires drawing blood from patients, and can also be affected by anti-thyroglobulin antibodies, Wang noted.
</p>

<p>
	 
</p>

<p>
	He added that the process also requires the stimulation of recombinant human thyroid-stimulating hormone (rhTSH) to enhance sensitivity, which costs around NT$40,000 (US$1,219) each time.
</p>

<p>
	 
</p>

<p>
	"Therefore, finding a simple, effective, and non-invasive tracking method (for the patients' conditions) is what we are currently striving to achieve," Wang said.
</p>

<p>
	 
</p>

<p>
	Dating back to the first batch of 21 patients that joined the study in 2016, the research team found that proteins and peptides in patients' urine, specifically urinary exosomal thyroglobulin (U-Ex Tg) and its associated urinary exosomal peptides panel, can serve as biomarkers that can indicate the recurrence of thyroid cancer.
</p>

<p>
	 
</p>

<p>
	During the research process, the team collected and analyzed urine samples from patients who had been recently diagnosed with papillary or follicular thyroid cancer before and immediately after a total thyroidectomy, as well as three and six months after surgery.
</p>

<p>
	 
</p>

<p>
	"The analysis results show a positive correlation between U-Ex Tg levels and tumor size, and provided pathological insights that the traditional method (of serum thyroglobulin detection) cannot achieve," Wang said, noting the new method also has higher sensitivity and accuracy than the traditional one.
</p>

<p>
	 
</p>

<p>
	To validate the trend changes in the levels of U-Ex Tg, the research team also analyzed galectin-3/TIMP/Angiopoietin-1, another thyroid cancer-related protein in urine.
</p>

<p>
	 
</p>

<p>
	Wang said that this research approach is why the detection method has obtained patents in Taiwan, Japan, and the United States, as it involves not just a single protein, "but is validated through additional methods."
</p>

<p>
	 
</p>

<p>
	Following the International Journal of Nanomedicine publishing his research in May this year, Wang said that his team plans to conduct large-scale clinical trials to further understand the effectiveness of detecting the biomarker U-Ex Tg in patients with different types and stages of thyroid cancer.
</p>

<p>
	 
</p>

<p>
	"We believe that with the accumulation of more clinical data, U-Ex Tg and its associated urinary exosomal peptides panel will become the standard monitoring method for postoperative thyroid cancer in the future," he added.
</p>

<p>
	 
</p>

<p>
	According to the most recent published data from Health Promotion Administration, the incidence rate of thyroid cancer in Taiwan in 2021 was 4,626 cases per 100,000 people.
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://focustaiwan.tw/sci-tech/202407310021" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">24584</guid><pubDate>Thu, 01 Aug 2024 00:58:36 +0000</pubDate></item><item><title>Google Chrome on Windows will get a new layer of protection for cookies and passwords</title><link>https://nsaneforums.com/news/security-privacy-news/google-chrome-on-windows-will-get-a-new-layer-of-protection-for-cookies-and-passwords-r24575/</link><description><![CDATA[<p>
	Infostealers, a type of malware, are one of the most popular tools used by cybercriminals to steal data from users. These are often distributed through cracked or pirated software, and the stolen data is typically sold on underground forums and markets. This stolen information can be used for extortion or to facilitate further intrusions into systems.
</p>

<p>
	 
</p>

<p>
	In the past, the Google Chrome team has introduced several measures to prevent cookie theft done by infostealer malware, including Chrome’s download protection using Safe Browsing, Device Bound Session Credentials, and Google’s account-based threat detection. Now, the team has announced an additional layer of protection to make Chrome on Windows users safer from cookie-stealing malware.
</p>

<p>
	 
</p>

<p>
	Google Chrome uses Keychain services on macOS, kwallet or gnome-libsecret on Linux and Data Protection API (DPAPI) on Windows to store sensitive data such as cookies and passwords. While DPAPI on Windows protects this sensitive data at rest from other users on the system or cold boot attacks, it does not protect against malicious apps capable of executing code as the logged-in user. This loophole can be exploited by infostealer malware to steal data.
</p>

<p>
	 
</p>

<p>
	Starting with Chrome 127, Google is adding another layer of protection by providing Application-Bound (App-Bound) Encryption primitives. Instead of allowing any app running as the logged-in user to access the sensitive data, Chrome will now encrypt data tied to app identity. Initially, only cookies will be migrated to this improved storage method, with plans to expand it to passwords, payment data, and other persistent authentication tokens in the future.
</p>

<p>
	 
</p>

<p>
	Will Harris, Chrome Security Team, emphasized that App-Bound Encryption increases the difficulty for cybercriminals:
</p>

<p>
	 
</p>

<blockquote class="QuoteNewsStyle">
	<p>
		App-Bound Encryption increases the cost of data theft to attackers and also makes their actions far noisier on the system. It helps defenders draw a clear line in the sand for what is acceptable behavior for other apps on the system.
	</p>
</blockquote>

<p>
	This security improvement marks a significant step towards a more secure browsing experience for millions of Chrome users worldwide.
</p>

<p>
	 
</p>

<p>
	Source: <a href="https://security.googleblog.com/2024/07/improving-security-of-chrome-cookies-on.html" rel="external nofollow">Google</a>
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/google-chrome-on-windows-will-get-a-new-layer-of-protection-for-cookies-and-passwords/" rel="external nofollow">Source</a>
</p>

<p>
	 
</p>

<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Thank you for appreciating my time and effort posting news every single day for many years.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>2023: Over 5,800 news posts | 2024 (till end of July): 3,313 news posts</em></span>
</p>
]]></description><guid isPermaLink="false">24575</guid><pubDate>Wed, 31 Jul 2024 19:41:27 +0000</pubDate></item><item><title>North Korea-Linked Malware Targets Developers on Windows, Linux, and macOS</title><link>https://nsaneforums.com/news/security-privacy-news/north-korea-linked-malware-targets-developers-on-windows-linux-and-macos-r24568/</link><description><![CDATA[<p>
	The threat actors behind an ongoing malware campaign targeting software developers have demonstrated new malware and tactics, expanding their focus to include Windows, Linux, and macOS systems.
</p>

<p>
	 
</p>

<p>
	The activity cluster, dubbed DEV#POPPER and linked to North Korea, has been found to have singled out victims across South Korea, North America, Europe, and the Middle East.
</p>

<p>
	 
</p>

<p>
	"This form of attack is an advanced form of social engineering, designed to manipulate individuals into divulging confidential information or performing actions that they might normally not," Securonix researchers Den Iuzvyk and Tim Peck said in a new report shared with The Hacker News.
</p>

<p>
	 
</p>

<p>
	DEV#POPPER is the moniker assigned to an active malware campaign that tricks software developers into downloading booby-trapped software hosted on GitHub under the guise of a job interview. It shares overlaps with a campaign tracked by Palo Alto Networks Unit 42 under the name Contagious Interview.
</p>

<p>
	 
</p>

<p>
	Signs that the campaign was broader and cross-platform in scope emerged earlier this month when researchers uncovered artifacts targeting both Windows and macOS that delivered an updated version of a malware called BeaverTail.
</p>

<p>
	 
</p>

<p style="text-align:center;">
	<img alt="red.png" class="ipsImage" data-ratio="27.22" height="194" width="720" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEieJHZJ0c0cdkzrQh1BzidPGc4lxS2RnIRLAsjXWFevJpHbqDzr_qzr73dwaaYlb76IOQqMCsNNkX4mJMRoJRVDgLUz-UroFjTj97CmSgCKrPJ5wFhKa35EbIk6zgRZeRr5ANdadPnhNH1Fstb47aCCq0CLNHlVlNsuX1tBNxxBaYtEm2u_HMCh8aiIbObZ/s728-rw-e365/red.png" />
</p>

<p style="text-align:center;">
	 
</p>

<p>
	The attack chain document by Securonix is more or less consistent in that the threat actors pose as interviewers for a developer position and urge the candidates to download a ZIP archive file for a coding assignment.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	Present with the archive is an npm module that, once installed, triggers the execution of an obfuscated JavaScript (i.e., BeaverTail) that determines the operating system on which it's running and establishes contact with a remote server to exfiltrate data of interest.
</p>

<p>
	 
</p>

<p>
	It's also capable of downloading next-stage payloads, including a Python backdoor referred to as InvisibleFerret, which is designed to gather detailed system metadata, access cookies stored in web browsers, execute commands, upload/download files, as well as log keystrokes and clipboard content.
</p>

<p>
	 
</p>

<p>
	New features added to the recent samples include the use of enhanced obfuscation, AnyDesk remote monitoring and management (RMM) software for persistence, and improvements to the FTP mechanism employed for data exfiltration.
</p>

<p>
	 
</p>

<p>
	Furthermore, the Python script acts as a conduit to run an ancillary script that's responsible for stealing sensitive information from various web browsers – Google Chrome, Opera, and Brave – across different operating systems.
</p>

<p>
	 
</p>

<p>
	"This sophisticated extension to the original DEV#POPPER campaign continues to leverage Python scripts to execute a multi-stage attack focused on exfiltrating sensitive information from victims, though now with much more robust capabilities," the researchers said.
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://thehackernews.com/2024/07/north-korea-linked-malware-targets.html" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">24568</guid><pubDate>Wed, 31 Jul 2024 16:34:01 +0000</pubDate></item><item><title>Massive SMS stealer campaign infects Android devices in 113 countries</title><link>https://nsaneforums.com/news/security-privacy-news/massive-sms-stealer-campaign-infects-android-devices-in-113-countries-r24556/</link><description><![CDATA[<p>
	A malicious campaign targeting Android devices worldwide utilizes thousands of Telegram bots to infect devices with SMS-stealing malware and steal one-time 2FA passwords (OTPs) for over 600 services.
</p>

<p>
	 
</p>

<p>
	Zimperium researchers <a href="https://www.zimperium.com/blog/unmasking-the-sms-stealer-targeting-several-countries-with-deceptive-apps/" rel="external nofollow" target="_blank">discovered the operation</a> and have been tracking it since February 2022. They report finding at least 107,000 distinct malware samples associated with the campaign.
</p>

<p>
	 
</p>

<p>
	The cybercriminals are motivated by financial gain, most likely using infected devices as authentication and anonymization relays.
</p>

<h2>
	Telegram entrapment
</h2>

<p>
	The SMS stealer is distributed either through malvertising or Telegram bots that automate communications with the victim.
</p>

<p>
	 
</p>

<p>
	In the first case, victims are led to pages mimicking Google Play, reporting inflated download counts to add legitimacy and create a false sense of trust.
</p>

<p>
	 
</p>

<p>
	On Telegram, the bots promise to give the user a pirated application for the Android platform, asking for their phone number before they share the APK file.
</p>

<p>
	 
</p>

<p>
	The Telegram bot uses that number to generate a new APK, making personalized tracking or future attacks possible.
</p>

<p>
	 
</p>

<div style="">
	<figure class="image" style="display:inline-block">
		<img alt="Telegram bot delivering the SMS stealer" class="ipsImage" height="516" width="720" src="https://www.bleepstatic.com/images/news/u/1220909/2024/Android/16/telegram.jpg">
		<figcaption>
			<strong>Telegram bot delivering the SMS stealer to a victim</strong><br>
			<em>Source: Zimperium</em>
		</figcaption>
	</figure>
</div>

<p>
	Zimperium says the operation uses 2,600 Telegram bots to promote various Android APKs, which are controlled by 13 command and control (C2) servers.
</p>

<p>
	 
</p>

<p>
	Most of the victims of this campaign are located in India and Russia, while Brazil, Mexico, and the United States also have significant victim counts.
</p>

<h2>
	Generating money
</h2>

<p>
	Zimperium found that the malware transmits the captured SMS messages to a specific API endpoint at the website 'fastsms.su.'
</p>

<p>
	 
</p>

<p>
	The site allows visitors to purchase access to "virtual" phone numbers in foreign countries, which they can use for anonymization and to authenticate to online platforms and services.
</p>

<p>
	 
</p>

<div style="">
	<figure class="image" style="display:inline-block">
		<img alt="Fast SMS website" class="ipsImage" height="408" width="720" src="https://www.bleepstatic.com/images/news/u/1220909/2024/Android/16/fastsms.jpg">
		<figcaption>
			<strong>Fast SMS website</strong><br>
			<em>Source: BleepingComputer</em>
		</figcaption>
	</figure>
</div>

<p>
	It is very likely that the infected devices are actively used by that service without the victims knowing it.
</p>

<p>
	 
</p>

<p>
	The requested Android SMS access permissions allow the malware to capture the OTPs required for account registrations and two-factor authentication.
</p>

<p>
	 
</p>

<div style="">
	<figure class="image" style="display:inline-block">
		<img alt="The stealer malware exfiltrating SMS to the site's API" class="ipsImage" height="600" style="height: auto;" width="783" src="https://www.bleepstatic.com/images/news/u/1220909/2024/Android/16/sms-exfiltration.jpg">
		<figcaption>
			<strong>The malware exfiltrating SMS to the Fast SMS site</strong><br>
			<em>Source: Zimperium</em>
		</figcaption>
	</figure>
</div>

<p>
	BleepingComputer has contacted the Fast SMS service to ask about Zimperium's findings, but a response wasn't available by publication.
</p>

<p>
	 
</p>

<p>
	For the victims, this can incur unauthorized charges on their mobile account, while they may also be implicated in illegal activities traced back to their device and number.
</p>

<p>
	 
</p>

<p>
	To avoid phone number abuse, avoid downloading APK files from outside Google Play, do not grant risky permissions to apps with unrelated functionality, and ensure Play Protect is active on your device.
</p>

<p>
	 
</p>

<p>
	<a href="https://www.bleepingcomputer.com/news/security/massive-sms-stealer-campaign-infects-android-devices-in-113-countries/" rel="external nofollow">Source</a>
</p>

<p>
	 
</p>

<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Thank you for appreciating my time and effort posting news every single day for many years.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>2023: Over 5,800 news posts | 2024 (till end of June): 2,839 news posts</em></span>
</p>
]]></description><guid isPermaLink="false">24556</guid><pubDate>Wed, 31 Jul 2024 03:15:49 +0000</pubDate></item><item><title>AI dating bots fool over 14,000 guys who fall hard</title><link>https://nsaneforums.com/news/security-privacy-news/ai-dating-bots-fool-over-14000-guys-who-fall-hard-r24554/</link><description><![CDATA[<p>
	A French YouTuber has made an AI bot to see if girls truly get more likes on dating apps, and the results are bot funny and disturbing at the same time. Now we need to be careful of AI in addition to fake accounts.
</p>

<p>
	 
</p>

<p>
	Inspired by <a href="https://youtu.be/CqhcntD1JN4" rel="external nofollow" target="_blank">Micode’s video</a> on the best catchphrases on dating apps, YouTuber <a href="https://www.youtube.com/@DefendIntelligence" rel="external nofollow" target="_blank">Defend Intelligence</a> made multiple chatbots to see if AI can fool humans. Spoiler alert: we are not ready for sexy Skynet. We may think we are too good to fall for such a scheme, and I bet that’s exactly what many of those who got caught in the net said.
</p>

<p>
	 
</p>

<p>
	Defend Intelligence made five bots with different personalities, four pretending to be females plus one posing as a male. Interestingly, while the YouTuber coded the bot to not give users hope by accepting real-life meetings, the AI sometimes crossed the line and accepted.
</p>

<p>
	 
</p>

<p>
	Thankfully the second rule ordering the AI to stop talking with each user after 40 messages did work as intended, preventing the build of romantic links. Something that some users didn’t accept, continuing to text the bot long after the latter ghosted them. For example, one person sent over a hundred messages after the AI stopped talking, showing just how easy it is to get hooked.
</p>

<p>
	 
</p>

<p>
	But this isn’t the worst part, some started sharing personal feelings and desires thinking they were talking to a human. Things that can be used against them if the one behind the bot has bad ideas. This shows how AI can be used to get someone to become emotionally dependent, which opens the door to predatory behaviours such as scams. So, after seeing this you may want to be more careful.
</p>

<p>
	 
</p>

<div class="ipsEmbeddedVideo" contenteditable="false">
	<div>
		<iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen="" frameborder="0" height="113" referrerpolicy="strict-origin-when-cross-origin" src="https://www.youtube-nocookie.com/embed/4lkWl6NL2wg?feature=oembed" title="J'ai codé une IA qui a soumis 14 252 mecs, voici ce que j'ai appris." width="200"></iframe>
	</div>
</div>

<p>
	 
</p>

<p>
	As you can guess these apps are extremely sensitive and aggressive whenever they suspect an account of being a bot. Thus, to avoid their radar as much as possible Defend Intelligence used real smartphones controlled via ADB (Android Debug Bridge) instead of emulators, plus as close to reality pictures – one of which is based on a friend of his.
</p>

<p>
	 
</p>

<p>
	Some users went as far as to image search the latter, managing to find her true Instagram account and messaging her there. This prompted the YouTuber to take things a step further by creating websites for his bots to make them look more like true individuals who have lives.
</p>

<p>
	 
</p>

<p>
	After some time had passed on this experiment, a funny yet eye-opening thing happened. Two of the AI bots matched together and started talking, each acting as if it was human.
</p>

<p>
	 
</p>

<p>
	While it may be funny to see two AIs hitting on each other, it gives us a glimpse at a potential future. One where everyone has an AI reflecting their personality, used to filter the massive number of potential partners before giving a curated list of high-potential matches. These could be people sharing the same interests or having traits you appreciate. For example, someone who likes jokes, or someone that doesn’t need to be texted every hour.
</p>

<p>
	 
</p>

<p>
	To drive home the likelihood of this occuring, the number of online dating service users worldwide surpassed 381 million in 2023, according to <a href="https://www.statista.com/topics/7443/online-dating/" rel="external nofollow" target="_blank">Statista</a>. This is a possibility that Whitney Wolfe Herd – Founder of dating app Bumble – <a href="https://youtu.be/zYzuycrGqkI" rel="external nofollow" target="_blank">talked about</a>. After all, AI and algorithms already choose our future to some extent as they are responsible for which person’s profile we will see next. Fantastic or dystopian, I’ll let you be the judge.
</p>

<p>
	 
</p>

<p>
	<a href="https://www.club386.com/ai-dating-bots-fool-over-14000-guys-who-fall-hard/" rel="external nofollow">Source</a>
</p>
]]></description><guid isPermaLink="false">24554</guid><pubDate>Tue, 30 Jul 2024 20:37:41 +0000</pubDate></item><item><title>Multiple Microsoft 365 services are facing another outage</title><link>https://nsaneforums.com/news/security-privacy-news/multiple-microsoft-365-services-are-facing-another-outage-r24542/</link><description><![CDATA[<p>
	Users around the world have been reporting issues accessing Microsoft 365 services and features for the past few hours. Microsoft has confirmed that certain users are experiencing access issues and degraded performance with multiple Microsoft 365 services and features, and they are investigating the situation.
</p>

<p>
	 
</p>

<p style="margin-left:40px;">
	<em>We're currently investigating access issues and degraded performance with multiple Microsoft 365 services and features. More information can be found under MO842351 in the admin center.</em>
</p>

<p style="margin-left:40px;">
	<br />
	<em>— Microsoft 365 Status (@MSFT365Status) <span style="color:#2980b9;">July 30, 2024</span></em>
</p>

<p>
	 
</p>

<p>
	Impacted services include, but are not limited to:
</p>

<p>
	 
</p>

<ul>
	<li>
		    Microsoft Entra
	</li>
	<li>
		    Microsoft Power Platform
	</li>
	<li>
		    Microsoft Intune
	</li>
	<li>
		    Microsoft 365 Admin Center
	</li>
</ul>

<p>
	 
</p>

<p>
	The following services are not impacted:
</p>

<p>
	 
</p>

<ul>
	<li>
		    SharePoint Online
	</li>
	<li>
		    OneDrive for Business
	</li>
	<li>
		    Microsoft Teams
	</li>
	<li>
		    Exchange Online
	</li>
</ul>

<p>
	 
</p>

<p>
	To mitigate the network issue, Microsoft has implemented networking configuration changes and performed failovers to alternate networking paths. According to Microsoft's telemetry, these networking changes have shown improvement in service availability since approximately 14:10 UTC. Microsoft is continuing to monitor the situation to ensure the full recovery of all Microsoft 365 services.
</p>

<p>
	 
</p>

<p>
	Given that Microsoft 365 services experienced a <span style="color:#2980b9;">similar outage earlier this month</span>, it's clear that Microsoft needs to prioritize enhancing the reliability of its cloud infrastructure. Repeated disruptions to essential services not only inconvenience users but also raise concerns about the platform's stability. As we await further updates from Microsoft, we hope they will take significant steps to prevent such issues from recurring in the future.
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://www.neowin.net/news/multiple-microsoft-365-services-are-facing-another-outage/" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">24542</guid><pubDate>Tue, 30 Jul 2024 18:25:48 +0000</pubDate></item><item><title>Microsoft: Ransomware gangs exploiting VMware ESXi flaw</title><link>https://nsaneforums.com/news/security-privacy-news/microsoft-ransomware-gangs-exploiting-vmware-esxi-flaw-r24540/</link><description><![CDATA[<p>
	<span style="font-size:18px;"><strong>VMware ESXi has proven to be a popular target for ransomware threat actors and a challenge for enterprises to patch. </strong></span>
</p>

<p>
	 
</p>

<p>
	Microsoft warned that multiple ransomware gangs including Black Basta are exploiting a VMware ESXi vulnerability that could allow attackers to gain full administrative permissions on an affected machine.
</p>

<p>
	 
</p>

<p>
	In a blog post published Monday, Microsoft detailed the VMware ESXi medium severity authentication bypass vulnerability tracked as CVE-2024-37085, and confirmed it's under active exploitation by ransomware gangs. Microsoft credited its researchers Danielle Kuznets Nohi, Edan Zwick, Meitar Pinto, Charles-Edouard Bettan and Vaibhav Deshmukh for discovering the vulnerability.
</p>

<p>
	 
</p>

<p>
	Exploitation could allow attackers with Windows Active Directory permissions to gain full access to an ESXi hypervisor host. Microsoft warned that attacks could affect critical network servers.
</p>

<p>
	 
</p>

<p>
	Microsoft researchers observed several ransomware operators -- including ones it tracks as Storm-0506, Storm-1175 and Octo Tempes -- leveraging the flaw to deploy Black Basta and Akira ransomware.
</p>

<p>
	 
</p>

<p>
	"Over the last year, we have seen ransomware actors targeting ESXi hypervisors to facilitate mass encryption impact in few clicks, demonstrating that ransomware operators are constantly innovating their attack techniques to increase impact on the organizations they target," Microsoft wrote in the blog.
</p>

<p>
	 
</p>

<p>
	Researchers discovered the flaw while investigating "numerous attacks" conducted by ransomware operators Microsoft tracks as Storm-0506, Storm-1175, Octo Tempest and Manatee Tempest that involved ESXi hypervisor. Attack analysis revealed the threat actors leveraged an ESXi vulnerability to elevate their privileges to full administrative access on the ESXi hypervisor.
</p>

<p>
	 
</p>

<p>
	"Further analysis of the vulnerability revealed that VMware ESXi hypervisors joined to an Active Directory domain consider any member of a domain group named "ESX Admins" to have full administrative access by default. This group is not a built-in group in Active Directory and does not exist by default," the blog said.
</p>

<p>
	 
</p>

<p>
	The researchers then discovered three ways attackers could exploit CVE-2024-37085. Microsoft warned that the first method, which involves adding the "ESX admins" group and a user to the domain, is currently the only one being actively exploited by the ransomware groups.
</p>

<p>
	 
</p>

<p>
	Researchers reported the flaws to VMware earlier this year, according to the blog.
</p>

<p>
	 
</p>

<p>
	"ESXi is a popular product in many corporate networks, and in recent years, we have observed ESXi hypervisors become a favored target for threat actors," the blog said.
</p>

<p>
	 
</p>

<p>
	Microsoft added that ESXi is a popular target for attackers because hypervisors have limited security product options and pose visibility challenges for Security Operations Center teams.
</p>

<p>
	 
</p>

<p>
	Microsoft stressed that its incident response engagements involving ESXi hypervisors more than doubled over the last three years. It's particularly dangerous when ransomware is involved.
</p>

<p>
	 
</p>

<p>
	Last year, Mandiant warned that a Chinese advanced persistent threat group it tracks as UNC3886 was exploiting a ESXi zero-day vulnerabiity. Just prior to that, attackers exploited a two-year-old ESXi vulnerability in a widespread ransomware campaign dubbed "ESXiArgs." The attacks highlighted enterprises' hypervisor patching struggles, which could pose a problem with CVE-2024-37085.
</p>

<p>
	 
</p>

<p>
	Microsoft said it observed Storm-0506 deploy Black Basta ransomware then exploit CVE-2024-37085 against an unnamed engineering firm earlier this year. The full attack scope and patching rates remain unknown.
</p>

<p>
	 
</p>

<p>
	"Microsoft observed that the threat actor created the 'ESX Admins' group in the domain and added a new user account to it, following these actions, Microsoft observed that this attack resulted in encrypting of the ESXi file system and losing functionality of the hosted virtual machines on the ESXi hypervisor," the blog said.
</p>

<p>
	 
</p>

<p>
	In addition to applying VMware's fix for CVE-2024-37085, Microsoft recommended that enterprises implement MFA, isolate privileged accounts from productivity accounts and improve critical assets posture.
</p>

<p>
	 
</p>

<p>
	TechTarget Editorial contacted Broadcom regarding the attack scope and patching rates. Broadcom provided the following statement:
</p>

<p>
	 
</p>

<p>
	"On July 29, 2024, Microsoft reported on the use of a known vulnerability in VMware ESXi by ransomware actors who had obtained access to a victim's network through unrelated means. This medium-severity ESXi vulnerability, cataloged as CVE-2024-37085, was discovered by Microsoft earlier this year and responsibly reported to Broadcom. We promptly fixed the issue in a software update to ESXi 8.x and published a security advisory that explained how to change settings in earlier versions of ESXi to mitigate the threat. Customers who have not yet updated ESXi or followed the published guidance are vulnerable to this authentication-bypass risk once a malicious actor has obtained unauthorized Active Directory privileges. For more information on Broadcom's recommendations for VMware product hardening, please visit the VMware Cloud Foundation Security Enablement website."
</p>

<p>
	 
</p>

<p>
	Microsoft provided the following statement to TechTarget Editorial: "Ransomware poses a major, high-severity threat being leveraged by threat actors across the landscape. Organizations should be aware that exploiting this vulnerability could lead to ransomware attacks or other malicious activities.
</p>

<p>
	 
</p>

<p>
	"Microsoft frequently collaborates with other software vendors and partners to ensure coordinated responsible disclosure. VMWare is one of those partners, and this vulnerability was responsibly disclosed, coordinated and finally released and assigned a CVE ID in June 2024." 
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://www.techtarget.com/searchsecurity/news/366599377/Microsoft-Ransomware-gangs-exploiting-VMware-ESXi-flaw" rel="external nofollow">Source</a></strong><strong></strong>
</p>
]]></description><guid isPermaLink="false">24540</guid><pubDate>Tue, 30 Jul 2024 18:14:16 +0000</pubDate></item><item><title>Microsoft hit by global outage of some Azure and Office cloud services</title><link>https://nsaneforums.com/news/security-privacy-news/microsoft-hit-by-global-outage-of-some-azure-and-office-cloud-services-r24537/</link><description><![CDATA[<p>
	<span style="font-size:20px;">Nothing to do with CrowdStrike this time</span>
</p>

<p>
	 
</p>

<p>
	Microsoft is experiencing a significant global outage of its cloud and Office services.
</p>

<p>
	 
</p>

<p>
	“We are investigating reports of issues connecting to Microsoft services globally,” the company said.
</p>

<p>
	 
</p>

<p>
	The issue is not impacting all users, but just a large subset.
</p>

<p>
	 
</p>

<p>
	Along with Azure services and the Azure Portal, Microsoft 365 services and features, including Outlook, Word, and Excel, are affected.
</p>

<p>
	 
</p>

<p>
	"We have implemented networking configuration changes and have performed failovers to alternate networking paths to provide relief," Microsoft said in an update.
</p>

<p>
	 
</p>

<p>
	"Monitoring telemetry shows improvement in service availability, and we are continuing to monitor to ensure full recovery."
</p>

<p>
	 
</p>

<p>
	The outage comes less than two weeks after an Azure outage and a separate CrowdStrike-caused outage of millions of Windows systems.
</p>

<p>
	 
</p>

<p>
	The latter issue caused flights to be canceled, hospital appointments to be pushed back, and retailers to shut.
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://www.datacenterdynamics.com/en/news/microsoft-hit-by-global-outage-of-some-azure-and-office-cloud-services/" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">24537</guid><pubDate>Tue, 30 Jul 2024 18:01:57 +0000</pubDate></item><item><title>Hackers can wirelessly watch your screen via HDMI radiation</title><link>https://nsaneforums.com/news/security-privacy-news/hackers-can-wirelessly-watch-your-screen-via-hdmi-radiation-r24536/</link><description><![CDATA[<p>
	<span style="color:#7f8c8d;"><span style="font-size:20px;"><strong>A newly-discovered technique combines wireless EM monitoring and AI algorithms to "read" text on a victim's screen, and it's already being used in the wild. </strong></span></span>
</p>

<p>
	 
</p>

<p>
	Covertly intercepting video signals is a very old-fashioned way to go about electronic spying, but a new method discovered by researchers puts a frightening spin on it.
</p>

<p>
	 
</p>

<p>
	A research team out of Uruguay has found that it’s possible to intercept the wireless electromagnetic radiation coming from an HDMI cable and interpret the video by processing it with AI. Three scientists from the University of the Republic in Montevideo published their findings on Cornell’s ArXiv service, spotted by Techspot.
</p>

<p>
	 
</p>

<p>
	According to the paper, it’s possible to train an AI model to interpret the tiny fluctuations in electromagnetic energy from the wired HDMI signal. Even though it’s a wired standard and it’s usually encrypted digitally, there’s enough electromagnetic signal coming off of these cables to detect without direct access.
</p>

<p>
	 
</p>

<p>
	Detecting and decoding are two different things, of course. But the researchers also found that using an AI model paired to text recognition software, it’s possible to “read” the wirelessly recorded EM radiation with up to 70 percent accuracy.
</p>

<p>
	 
</p>

<p>
	Though that’s a long way from a conventional recording, it’s still a 60 percent improvement over previous methods—and it’s more than enough to steal passwords and other sensitive information. It’s even possible to do wirelessly without physical access to a target computer, even from the outside of a building under ideal conditions.
</p>

<p>
	 
</p>

<p>
	Skimming off wireless electromagnetic signals for surveillance isn’t a new idea. It’s a vulnerability referred to as TEMPEST (Transient ElectroMagnetic Pulse Emanation STandard, a very awkward backronym) with roots in espionage going all the way back to World War II. But as a digital transmission with at least some level of encryption using the HDCP system, HDMI cables weren’t thought to be particularly susceptible to it. The researcher’s AI algorithm-assisted method of attack (which they’re calling “Deep-TEMPEST”) opens up some very disturbing possibilities.
</p>

<p>
	 
</p>

<p>
	The researchers claim that this system, or functionally identical alternatives, are already being used by state-level spies and industrial espionage agents. The sophisticated nature of the technique and the need to be at least somewhere in the vicinity of the target system means that it’s unlikely to affect regular users. But any government agency or large company with sensitive data should be wary and might want to look into EM-shielding measures—and that goes double for any of their employees who work from home.
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://www.pcworld.com/article/2413156/hackers-can-wirelessly-watch-your-screen-via-hdmi-radiation.html" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">24536</guid><pubDate>Tue, 30 Jul 2024 17:57:48 +0000</pubDate></item><item><title>Meta to pay $1.4 billion to settle Texas facial recognition data lawsuit</title><link>https://nsaneforums.com/news/security-privacy-news/meta-to-pay-14-billion-to-settle-texas-facial-recognition-data-lawsuit-r24535/</link><description><![CDATA[<p>
	July 30 (Reuters) - Meta Platforms has agreed to pay $1.4 billion to Texas to resolve the state’s lawsuit accusing the Facebook parent of illegally using facial-recognition technology to collect biometric data of millions of Texans without their consent.
</p>

<p>
	<br />
	The terms of the settlement, disclosed on Tuesday, mark the largest accord ever by any single state, according to the lawyers for Texas, whose legal team included the plaintiffs firm Keller Postman.
</p>

<p>
	<br />
	The lawsuit, filed in 2022, was the first major case to be brought under Texas' 2009 biometric privacy law, according to law firms tracking the litigation. A provision of the law provides damages of up to $25,000 per violation.
</p>

<p>
	<br />
	Texas accused Facebook of capturing biometric information "billions of times" from photos and videos that users uploaded to the social media platform as part of a free, discontinued feature called "Tag Suggestions."
</p>

<p>
	<br />
	A spokesperson for Meta said the company is pleased to resolve the matter and looks forward to "exploring future opportunities to deepen our business investments in Texas, including potentially developing data centers."
</p>

<p>
	<br />
	It has continued to deny any wrongdoing.
</p>

<p>
	<br />
	Texas Attorney General Ken Paxton in a statement said the settlement marks the state’s "commitment to standing up to the world’s biggest technology companies and holding them accountable for breaking the law and violating Texans’ privacy rights."
</p>

<p>
	<br />
	Texas and Meta said they reached an accord in May, weeks before the start of a trial in state court was scheduled to begin.
</p>

<p>
	<br />
	Meta separately agreed to pay $650 million in 2020 to settle a biometric privacy class action that was brought under an Illinois privacy law that is considered one of the nation's most stringent. The company also denied wrongdoing.
</p>

<p>
	<br />
	Alphabet’s Google separately is fighting a lawsuit by Texas accusing the company of violating the state’s biometric law.
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://www.reuters.com/technology/cybersecurity/meta-platforms-pay-14-bln-settle-texas-lawsuit-over-facial-recognition-data-2024-07-30/" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">24535</guid><pubDate>Tue, 30 Jul 2024 17:29:25 +0000</pubDate></item><item><title>'Fortune 50' Company Made Record-Breaking $75M Ransomware Payment</title><link>https://nsaneforums.com/news/security-privacy-news/fortune-50-company-made-record-breaking-75m-ransomware-payment-r24531/</link><description><![CDATA[<p>
	<span style="font-size:18px;">The payment was sent to a lesser known ransomware group called Dark Angels, according to cybersecurity vendor Zscaler, topping the $40 million paid by CNA in 2021.</span>
</p>

<p>
	 
</p>

<p>
	A major company made a staggering $75 million ransomware payment to hackers earlier this year, according to cybersecurity vendor Zscaler.
</p>

<p>
	 
</p>

<p>
	Zscaler made the claim in a Tuesday report examining the latest trends in ransomware attacks, which continue to ensnare companies, hospitals, and schools across the country.
</p>

<p>
	 
</p>

<p>
	In a tweet, Zscaler said the unnamed “Fortune 50 company” made the $75 million payment to a lesser known ransomware group called Dark Angels. “The payment is the single largest ransomware-related transaction ever reported,” the cybersecurity vendor added.
</p>

<p>
	 
</p>

<p>
	Chainanalysis, a cryptocurrency tracking firm, also confirmed to PCMag it spotted the $75 million payment to Dark Angels as well.
</p>

<p>
	 
</p>

<p>
	The previous ransomware record holder goes to insurance provider CNA, which reportedly paid $40 million to a hacking group known as Phoenix in 2021.
</p>

<p>
	 
</p>

<p>
	Compared to other ransomware groups, Dark Angels stands out by usually focusing on a "single large company at a time,” and demanding a high sum, Zscaler says. “This is in stark contrast to most ransomware groups, which target victims indiscriminately and outsource most of the attack to affiliate networks."
</p>

<p>
	 
</p>

<p>
	As an example, Zscaler said it tracked Dark Angels in September 2023 breaching an “international conglomerate that provides solutions for building automation systems, among other services.” Dark Angels stole 27TB of corporate information while encrypting the company’s VMware ESXi virtual machines. The group then demanded a $51 million ransom.
</p>

<p>
	 
</p>

<p>
	“The Dark Angels ransomware group’s strategy of targeting a small number of high-value companies for large payouts is a trend worth monitoring,” according to Zscaler, which says its "ThreatLabz predicts that other ransomware groups will take note of Dark Angels’ success and may adopt similar tactics.”
</p>

<p>
	 
</p>

<p>
	The US remains a top target for ransomware hackers. The number of ransomware attacks in the country this year have doubled so far to 1,821, up from 902 in 2023. The company published the findings as others, such as Chainalysis, report that the ransomware scourge continues to grow, despite law enforcement efforts to crack down.
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://www.pcmag.com/news/fortune-50-company-made-record-breaking-75m-ransomware-payment" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">24531</guid><pubDate>Tue, 30 Jul 2024 16:56:41 +0000</pubDate></item><item><title>Microsoft offers advice on avoiding another CrowdStrike-style outage</title><link>https://nsaneforums.com/news/security-privacy-news/microsoft-offers-advice-on-avoiding-another-crowdstrike-style-outage-r24507/</link><description><![CDATA[<p>
	<span style="color:#3498db;"><span style="font-size:22px;"><strong>Vendors should minimise use of kernel mode, customers should make full use of integrated Windows security features </strong></span></span>
</p>

<p>
	 
</p>

<p>
	In a blog post published on Friday, David Weston, vice president, enterprise and OS security at Microsoft, outlined the causes of the global incident which saw millions of devices running CrowdStrike Falcon on Windows crash.
</p>

<p>
	 
</p>

<p>
	According to Microsoft's kernel-crash dump analyses, the root cause of the outage was a memory safety issue, specifically a read out-of-bounds access violation in CrowdStrike's CSagent.sys driver, a module designed to detect suspicious activity.
</p>

<p>
	 
</p>

<p>
	CSagent.sys is a file system filter driver operating at kernel level that receives notifications about file operations, such as creation or modification.
</p>

<p>
	 
</p>

<p>
	File system filters are also used to detect when security solutions are attempting to monitor the behaviour of the system.
</p>

<p>
	 
</p>

<p>
	The fateful CrowdStrike update contained a change to the sensor that allowed the filter driver to be called when file-based activity was detected. This was intended to enhance malware detection capabilities. However the faulty update cause it to try to access a memory address for which it did not have permissions, and Falcon was unable to handle the error gracefully, causing the Windows kernel to crash and enter a bootloop.
</p>

<p>
	 
</p>

<p>
	Microsoft's analysis of the cause of the crash concurs with CrowdStrike's preliminary review, released last week.
</p>

<p>
	 
</p>

<p>
	CrowdStrike Falcon loads four modules into the Windows kernel. A question on the lips of many security professions and admins tasked with cleaning up the mess, is why that is necessary at all. Why could they not run in user mode, where any glitches would be far less damaging?
</p>

<p>
	 
</p>

<p>
	They also wondered whether Microsoft's security checks might be at fault.
</p>

<p>
	 
</p>

<p>
	The main reasons for running drivers in kernel mode are twofold, according to Weston.
</p>

<p>
	 
</p>

<p>
	First, it allows security vendors to monitor what's happening in the core of the operating system itself: "Kernel drivers allow for system wide visibility, and the capability to load in early boot to detect threats like boot kits and root kits which can load before user-mode applications," he wrote.
</p>

<p>
	 
</p>

<p>
	Second, it provides for tamper resistance: "Security products want to ensure that their software cannot be disabled by malware, targeted attacks, or malicious insiders, even when those attackers have admin-level privileges."
</p>

<p>
	 
</p>

<p>
	CrowdStrike has taken full responsibility for the error, which took down more than 8.5 million Windows devices, saying it was due to a bug in its Content Validator, the system that is supposed to detect faulty code in an update.
</p>

<p>
	 
</p>

<p>
	However, the incident does put question mark over whether operating systems that allow third-party software to run in kernel mode should have more stringent checks in place.
</p>

<p>
	 
</p>

<p>
	Microsoft's blog does not address this directly. It says it engages with third-party security vendors through the Microsoft Virus Initiative (MVI) to share data and best practices, and that it provides runtime protection, such as Patch Guard, to prevent disruptive behaviour from kernel drivers.
</p>

<p>
	 
</p>

<p>
	In addition, drivers must pass a series of tests by Microsoft Windows Hardware Quality Labs (WHQL) to be certified - although this does not cover updates.
</p>

<p>
	 
</p>

<p>
	In his blog post, Weston advised security software vendors to minimise their use of sensors in kernel mode for data collection and enforcement, and to isolate the majority of key product functionality in user mode, where additional protections such as Virtualisation-based Security (VBS) Enclaves and Protected Processes and Event Tracing for Windows (ETW) are available.
</p>

<p>
	 
</p>

<p>
	Customers are advised to make use of security features integrated into Windows.
</p>

<p>
	 
</p>

<p>
	"Windows is constantly increasing security defaults, including dozens of new security features enabled by default in Windows 11," Weston wrote.
</p>

<p>
	 
</p>

<p>
	He added that Microsoft plans to work with the third-party vendors security software vendors to help them take advantage of these integrated features.
</p>

<p>
	 
</p>

<p>
	CrowdStrike is used predominantly by large corporations and public sector organisations. It is estimated that the global outage CrowdStrike outage will cost Fortune 500 companies around $44 million each, on average.
</p>

<p>
	 
</p>

<p>
	However, a CISO told Computing that the company is "the best at what it does," and predicted its long-term survival, in spite of causing the largest IT outage in history.
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://www.computing.co.uk/news/4340656/microsoft-offers-advice-avoiding-crowdstrike-style-outage" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">24507</guid><pubDate>Mon, 29 Jul 2024 17:05:35 +0000</pubDate></item><item><title>Microsoft admits 8.5 million CrowdStruck machines estimate was lowballed</title><link>https://nsaneforums.com/news/security-privacy-news/microsoft-admits-85-million-crowdstruck-machines-estimate-was-lowballed-r24505/</link><description><![CDATA[<p>
	<span style="font-size:22px;">Promises to discourage use of kernel drivers – so they don't crash the world again</span>
</p>

<p>
	 
</p>

<p>
	Microsoft has admitted that its estimate of 8.5 million machines crashed by CrowdStrike's faulty software update was almost certainly too low, and vowed to reduce infosec vendors' reliance on the kernel drivers at the heart of the issue.
</p>

<p>
	 
</p>

<p>
	Redmond posted an incident response blog on Saturday – titled "Windows Security best practices for integrating and managing security tools" – in which veep for enterprise and OS security David Weston explained how Microsoft measured the impact of the incident: by accessing crash reports shared by customers.
</p>

<p>
	 
</p>

<p>
	But of course, as Weston noted, not every Windows customer shares crash reports.
</p>

<p>
	 
</p>

<p>
	"It's worth noting the number of devices which generated crash reports is a subset of the number of impacted devices previously shared by Microsoft," he wrote. Which means the 8.5 million crashed machine estimate Redmond shared on July 20 for over a week was not entirely accurate. It was also advantageous to Microsoft, which was criticized for the fragility of its OS in the wake of the incident – especially in mainstream media, which often identified crashes caused by CrowdStrike as a Microsoft mess.
</p>

<p>
	 
</p>

<p>
	Weston's post justifies how Windows performed, on the grounds that kernel drivers like those employed by CrowdStrike can improve performance and prevent tampering with software in ways that enhance security.
</p>

<p>
	 
</p>

<p>
	He noted, however, that infosec vendors must rationalize those benefits against potential negative impacts on resilience.
</p>

<p>
	 
</p>

<p>
	"Since kernel drivers run at the most trusted level of Windows, where containment and recovery capabilities are by nature constrained, security vendors must carefully balance needs like visibility and tamper resistance with the risk of operating within kernel mode," he wrote.
</p>

<p>
	 
</p>

<p>
	Weston observed that security vendors can find the right balance.
</p>

<p>
	 
</p>

<p>
	"For example, security vendors can use minimal sensors that run in kernel mode for data collection and enforcement, limiting exposure to availability issues," he wrote. "The remainder of the key product functionality includes managing updates, parsing content, and other operations can occur isolated within user mode where recoverability is possible."
</p>

<p>
	 
</p>

<p>
	That arrangement, he suggested, "demonstrates the best practice of minimizing kernel usage while still maintaining a robust security posture and strong visibility."
</p>

<p>
	 
</p>

<p>
	Are you taking notes, CrowdStrike?
</p>

<p>
	 
</p>

<p>
	Weston also reminded readers that Redmond runs an industry forum called the Microsoft Virus Initiative (MVI) in which security vendors and the OS giant work together to "define reliable extension points and platform improvements, as well as share information about how to best protect our customers."
</p>

<p>
	 
</p>

<p>
	The Microsoft veep listed the many security-related enhancements Microsoft has made over the years, and revealed the software megalith now plans "to work with the anti-malware ecosystem to take advantage of these integrated features to modernize their approach, helping to support and even increase security along with reliability."
</p>

<p>
	 
</p>

<p>
	That work will involve four efforts, namely:
</p>

<p>
	 
</p>

<ol>
	<li>
		Providing safe rollout guidance, best practices, and technologies to make it safer to perform updates to security products;
	</li>
	<li>
		Reducing the need for kernel drivers to access important security data;
	</li>
	<li>
		Providing enhanced isolation and anti-tampering capabilities with technologies like recently announced VBS enclaves;
	</li>
	<li>
		Enabling zero trust approaches like high integrity attestation which provides a method to determine the security state of the machine based on the health of Windows native security features.
	</li>
</ol>

<p>
	 
</p>

<p>
	Point two seems aimed at ensuring a CrowdStrike-like event becomes less likely in future.
</p>

<p>
	 
</p>

<p>
	Weston didn't explain how that reduced dependence will be delivered – some re-jigging of Windows will likely be needed to make it happen.
</p>

<p>
	 
</p>

<p>
	Microsoft and Windows have a long and inglorious history of security snafus. If Redmond's changes go awry, it won't have CrowdStrike to blame for any new problems. ®
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://www.theregister.com/2024/07/29/microsoft_crowdstrike_incident_report/" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">24505</guid><pubDate>Mon, 29 Jul 2024 16:57:53 +0000</pubDate></item></channel></rss>
