<?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/126/?d=2</link><description><![CDATA[News: Security & Privacy News]]></description><language>en</language><item><title>Microsoft: Credit card stealers are getting much stealthier</title><link>https://nsaneforums.com/news/security-privacy-news/microsoft-credit-card-stealers-are-getting-much-stealthier-r6039/</link><description><![CDATA[<p>
	Microsoft's security researchers have observed a worrying trend in credit card skimming, where threat actors employ more advanced techniques to hide their malicious info-stealing code.
</p>

<p>
	 
</p>

<p>
	Skimming gangs obfuscate their code snippets, inject them into image files, and masquerade them as popular web applications to evade detection.
</p>

<p>
	 
</p>

<p>
	This undermines the effectiveness of threat detection products and increases the likelihood that internet users will have their credit card information stolen by malicious actors.
</p>

<h2>
	What is skimming
</h2>

<p>
	Payment card skimming is a web-based attack where hackers inject malicious JavaScript code onto e-commerce websites by exploiting a vulnerability on the underlying platform (Magento, PrestaShop, WordPress, etc.) or poor security practices.
</p>

<p>
	 
</p>

<p>
	The code is activated when the site visitor reaches the checkout page and proceeds to enter their credit or debit card details to pay for the placed order.
</p>

<p>
	 
</p>

<p>
	Anything typed on the forms of that page is stolen by the skimmer and sent to malicious operators who then use these details to make online purchases or sell the data to others.
</p>

<p>
	 
</p>

<p>
	<img alt="fig1-skimming-attack-overview.png" class="ipsImage" data-ratio="58.41" height="420" width="719" src="https://www.bleepstatic.com/images/news/u/1220909/Diagrams/fig1-skimming-attack-overview.png">
</p>

<div>
	<div>
		Skimming attack overview (Microsoft)
	</div>
</div>

<h2>
	Stealthier skimmers
</h2>

<p>
	Microsoft's analysts report seeing an uptick in the employment of three hiding methods: injecting the scripts in images, string concatenation, and script spoofing.
</p>

<p>
	 
</p>

<p>
	In the first case, the malicious image files are uploaded to the target server disguised as favicons. Their contents, however, include a PHP script with a base64-encoded JavaScript.
</p>

<p>
	 
</p>

<p>
	"The insertion of the PHP script in an image file is interesting because, by default, the web server wouldn't run the said code," explains <a href="https://www.microsoft.com/security/blog/2022/05/23/beneath-the-surface-uncovering-the-shift-in-web-skimming/" rel="external nofollow" target="_blank">new research</a> from Microsoft.
</p>

<p>
	 
</p>

<p>
	"...we believe that the attacker used a PHP include expression to include the image (that contains the PHP code) in the website's index page, so that it automatically loads at every webpage visit."
</p>

<p>
	 
</p>

<p>
	The script runs to identify the checkout page, runs a check to exclude the admin user, and then serves a fake form to legitimate site visitors.
</p>

<p>
	 
</p>

<p>
	<img alt="check-admin.png" class="ipsImage" data-ratio="28.06" height="187" width="720" src="https://www.bleepstatic.com/images/news/u/1220909/Code%20and%20Details/check-admin.png">
</p>

<div>
	<div>
		Validating admin user status (Microsoft)
	</div>

	<p>
		 
	</p>
</div>

<p>
	Using string concatenation obfuscation, the attackers load the skimmer from a domain under their control using an implant on the target site.
</p>

<p>
	 
</p>

<p>
	The domain is base64 encoded and concatenated from several strings, while the skimmer itself doesn't need to be obfuscated since it's not hosted on the targeted platform.
</p>

<p>
	 
</p>

<p>
	<img alt="atob-url.png" class="ipsImage" data-ratio="15.56" height="99" width="720" src="https://www.bleepstatic.com/images/news/u/1220909/Code%20and%20Details/atob-url.png">
</p>

<div>
	<div>
		Concatenated encoded URL (Microsoft)
	</div>

	<p>
		 
	</p>
</div>

<p>
	The third, script spoofing, trend is masquerading the skimmers as Google Analytics or Meta Pixel (Facebook Pixel), two widely used visitor tracking tools present on almost every site.
</p>

<p>
	 
</p>

<p>
	The threat actors inject base64-encoded strings inside a spoofed Google Tag Manager code, tricking admins into skipping inspection, thinking it's part of the website's standard code.
</p>

<p>
	 
</p>

<p>
	<img alt="hiding-google-tag.png" class="ipsImage" data-ratio="41.53" height="265" width="720" src="https://www.bleepstatic.com/images/news/u/1220909/Code%20and%20Details/hiding-google-tag.png">
</p>

<div>
	<div>
		Skimmer spoofed as Google Analytics code (Microsoft)
	</div>

	<p>
		 
	</p>
</div>

<p>
	In the case of the Meta Pixel, the threat actors mimic some common parameters of the actual plugin while also keeping the skimmer URL encoded in base64 and split into multiple strings.
</p>

<p>
	 
</p>

<p>
	<img alt="meta-functions.png" class="ipsImage" data-ratio="41.39" height="265" width="720" src="https://www.bleepstatic.com/images/news/u/1220909/Code%20and%20Details/meta-functions.png">
</p>

<div>
	<div>
		Spoofing the functions of Meta Pixel (Microsoft)
	</div>

	<p>
		 
	</p>
</div>

<p>
	Microsoft's analysis revealed that those scripts don't just load the card skimmers but also feature anti-debugging mechanisms but couldn't deobfuscate them to the level required for more details on that function.
</p>

<h2>
	How to defend
</h2>

<p>
	Common characteristics among all payment card skimmers include the presence of base64-encoded strings and the "atob()" JavaScript function on compromised webpages.
</p>

<p>
	 
</p>

<p>
	Apart from active scanning and detection, website administrators should ensure they're running the latest available version of their content management system (CMS) and plugins.
</p>

<p>
	 
</p>

<p>
	From the customers' perspective, minimizing the damage of skimmers is only possible by using one-time private cards, setting strict payment limits, or using electronic payment methods instead.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.bleepingcomputer.com/news/security/microsoft-credit-card-stealers-are-getting-much-stealthier/" rel="external nofollow">Microsoft: Credit card stealers are getting much stealthier</a>
</p>
]]></description><guid isPermaLink="false">6039</guid><pubDate>Tue, 24 May 2022 20:50:14 +0000</pubDate></item><item><title>&#x201C;Tough to forge&#x201D; digital driver&#x2019;s license is&#x2026; easy to forge</title><link>https://nsaneforums.com/news/security-privacy-news/%E2%80%9Ctough-to-forge%E2%80%9D-digital-driver%E2%80%99s-license-is%E2%80%A6-easy-to-forge-r6036/</link><description><![CDATA[<h3>
	A litany of security flaws allows forgeries that are easy, quick, and cheap.
</h3>

<p>
	<img alt="nsw-digital-driver-license2-800x450.jpeg" class="ipsImage" data-ratio="62.50" height="405" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2022/05/nsw-digital-driver-license2-800x450.jpeg">
</p>

<div itemprop="articleBody">
	<div>
		Service NSW
	</div>

	<p>
		 
	</p>

	<p>
		In late 2019, the government of New South Wales in Australia rolled out digital driver's licenses. The new licenses allowed people to use their iPhone or Android device to show proof of identity and age during roadside police checks or at bars, stores, hotels, and other venues. ServiceNSW, as the government body is usually referred to, <a href="https://www.nsw.gov.au/media-releases/nsw-digital-drivers-licence-rolled-out-statewide" rel="external nofollow">promised</a> it would “provide additional levels of security and protection against identity fraud, compared to the plastic [driver's license]” citizens had used for decades.
	</p>

	<p>
		 
	</p>

	<p>
		Now, 30 months later, security researchers have shown that it’s trivial for just about anyone to forge fake identities using the digital driver's licenses, or DDLs. The technique allows people under drinking age to change their date of birth and for fraudsters to forge fake identities. The process takes well under an hour, doesn’t require any special hardware or expensive software, and will generate fake IDs that pass inspection using the electronic verification system used by police and participating venues. All of this, despite assurances that security was a key priority for the newly created <a href="https://www.service.nsw.gov.au/privacy-and-digital-licences-and-credentials" rel="external nofollow">DDL system</a>.
	</p>

	<p>
		 
	</p>

	<p>
		“To be clear, we do believe that if the Digital Driver's Licence was improved by implementing a more secure design, then the above statement made on behalf of ServiceNSW would indeed be true, and we would agree that the Digital Driver's Licence would provide additional levels of security against fraud compared to the plastic driver's licence,” Noah Farmer, the researcher who identified the flaws, wrote in a <a href="https://blog.dvuln.com/blogs/servicensw-digital-superbad" rel="external nofollow">post</a> published last week.
	</p>

	<h2>
		A better mousetrap hacked with minimal effort
	</h2>

	<p>
		“When an unsuspecting victim scans the fraudster’s QR code, everything will check out, and the victim won't know that the fraudster has combined their own identification photo with someone’s stolen Driver's Licence details,” he continued. As things have stood for the past 30 months, however, DDLs make it “possible for malicious users to generate [a] fraudulent Digital Driver's Licence with minimal effort on both jailbroken and non-jailbroken devices without the need to modify or repackage the mobile application itself.”
	</p>

	<p>
		 
	</p>

	<p>
		DDLs require an iOS or Android app that displays each person’s credentials. The same app allows police and venues to verify that the credentials are authentic. Features designed to <a href="https://www.service.nsw.gov.au/campaign/nsw-digital-driver-licence/licence-checkers-and-nsw-digital-driver-licence" rel="external nofollow">confirm the ID is authentic</a> and current include:
	</p>

	<p>
		 
	</p>

	<p>
		<img alt="nsw-ddl-verification-300x548.jpeg" class="ipsImage" data-ratio="180.00" height="540" width="295" src="https://cdn.arstechnica.net/wp-content/uploads/2022/05/nsw-ddl-verification-300x548.jpeg">
	</p>

	<p>
		 
	</p>

	<ul>
		<li>
			Animated NSW Government logo.
		</li>
		<li>
			Display of the last refreshed date and time.
		</li>
		<li>
			A QR code expires and reloads.
		</li>
		<li>
			A hologram that moves when the phone is tilted.
		</li>
		<li>
			A watermark that matches the license photo.
		</li>
		<li>
			Address details that don’t require scrolling.
		</li>
	</ul>

	<h2>
		Surprisingly simple
	</h2>

	<p>
		The technique for overcoming these safeguards is surprisingly simple. The key is the ability to brute-force the PIN that encrypts the data. Since it’s only four digits long, there are only 10,000 possible combinations. Using publicly available scripts and a commodity computer, someone can learn the correct combination in a matter of a few minutes, as <a href="https://www.youtube.com/watch?v=k89Qub3BVxs" rel="external nofollow">this video</a>, showing the process on an iPhone, demonstrates.
	</p>

	<p>
		 
	</p>

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

	<p>
		ServiceNSW Digital Driver's Licence proof-of-concept: Brute-forcing PIN.
	</p>

	<p>
		 
	</p>

	<p>
		Once a fraudster gets access to someone’s encrypted DDL license data—either with permission, by stealing a copy stored in an iPhone backup, or through remote compromise—the brute force gives them the ability to read and modify any of the data stored on the file.
	</p>

	<p>
		 
	</p>

	<p>
		From there, it's a matter of using simple brute-force software and standard smartphone and computer functions to extract the file storing the credential, decrypting it, changing the text, re-encrypting it, and copying it back to the device. The precise steps on an iPhone are:
	</p>

	<p>
		 
	</p>

	<ul>
		<li>
			Use <a href="https://support.apple.com/en-us/HT212156" rel="external nofollow">iTunes backup</a> to copy the contents of the iPhone storing the credential the fraudster wants to modify
		</li>
		<li>
			Extract the encrypted file from the backup stored on the computer
		</li>
		<li>
			Use brute-force software to decrypt the file
		</li>
		<li>
			Open the file in a text editor and modify the birth date, address, or other data they want to fake
		</li>
		<li>
			Re-encrypt the file
		</li>
		<li>
			Copy the re-encrypted file to the backup folder and
		</li>
		<li>
			Restore the backup to the iPhone
		</li>
	</ul>

	<p>
		 
	</p>

	<p>
		With that, the ServiceNSW app will display the fake ID and present it as genuine.
	</p>

	<p>
		 
	</p>

	<div itemprop="articleBody">
		<p>
			The following <a href="https://www.youtube.com/watch?v=MIYyAlxoESk" rel="external nofollow">video</a> shows the entire process from start to finish.
		</p>

		<p>
			 
		</p>

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

		<h2>
			Death by 1,000 flaws
		</h2>

		<p>
			A variety of design flaws make this simple hack possible.
		</p>

		<p>
			 
		</p>

		<p>
			The first is a lack of adequate encryption. A key based on a four-digit PIN is woefully inadequate. Apple provides a function named <a href="https://developer.apple.com/documentation/security/1399291-secrandomcopybytes" rel="external nofollow">SecRandomCopyBytes</a> for producing random bytes that can be used to generate secure keys. “If this was used to encrypt the Digital Driver's Licence rather than the 4 digit PIN, it would make the task of brute-forcing much harder if not completely infeasible for attackers,” Farmer wrote.
		</p>

		<p>
			 
		</p>

		<p>
			The next major flaw is that, astonishingly, DDL data is never validated against the back-end database to make sure that what’s stored on the iPhone matches records maintained by the government department. With no means to natively validate the data, there’s no way to tell when information has been tampered with. As a result, attackers are able to display the falsified data on the Service NSW application without any means to prevent or detect the fraud.
		</p>

		<p>
			 
		</p>

		<p>
			The third shortcoming is that using the “pull-to-refresh” function—a cornerstone of the DDL verification scheme intended to ensure the most current information is showing—fails to refresh any of the data stored in the electronic credential. Instead, it updates only the QR code. A better response would be for the pull-to-refresh function to download the latest copy of the DDL from the ServiceNSW database.
		</p>

		<p>
			 
		</p>

		<p>
			Fourth, the QR code transmits only the DDL holder’s name and status as either over or under the age of 18. The QR code is supposed to allow the person checking the ID to scan it with their own ServiceNSW app to validate that the data presented is authentic. To bypass the check, a fraudster only needs to obtain the driver's license details from a stolen or otherwise-obtained DDL and replace it locally on their phone.
		</p>

		<p>
			 
		</p>

		<p>
			“When an unsuspecting victim scans the fraudster’s QR code, everything will check out, and the victim won't know that the fraudster has combined their own identification photo with someone's stolen Driver's Licence details,” Farmer explained. Had the system returned the legitimate image data, the scanning party would easily see that the fraudster had forged the DDL, since the face returned by Service NSW wouldn’t match the face displayed on the app.
		</p>

		<p>
			 
		</p>

		<p>
			The last flaw the researcher identified was that the app allows the data it stores to be backed up and restored at all. While all files stored in the Documents and Library/Application Support/ folders are backed up by default, iOS allows developers to easily exclude certain files from backup by calling NSURL setResourceValue:forKey:error: with the NSURLIsExcludedFromBackupKey key.
		</p>

		<p>
			 
		</p>

		<p>
			With a reported 4 million NSW residents using the DDLs, the gaffe could have serious consequences for anyone who relies on DDLs to verify identities, ages, addresses, or other personal information. It's not clear how or even if Service NSW plans to respond. Given time differences between San Francisco and New South Wales, officials with the department weren't immediately available for comment.
		</p>

		<p>
			 
		</p>

		<p>
			Farmer noted <a href="https://twitter.com/Sydney2100/status/1463640054853603332" rel="external nofollow">this tweet</a>, which called out a hotel bar for refusing service to someone who had only physical ID and instead accepting only DDLs. “I know 10 kids that you let in regularly with fake digital licenses because they are easy to make,” the person claimed.
		</p>

		<p>
			 
		</p>

		<div class="ipsEmbeddedOther" contenteditable="false">
			<iframe allowfullscreen="" class="ipsEmbed_finishedLoading" data-controller="core.front.core.autosizeiframe" data-embedid="embed44583829" scrolling="no" src="https://nsaneforums.com/index.php?app=core&amp;module=system&amp;controller=embed&amp;url=https://twitter.com/Sydney2100/status/1463640054853603332?ref_src=twsrc%255Etfw%257Ctwcamp%255Etweetembed%257Ctwterm%255E1463640054853603332%257Ctwgr%255E%257Ctwcon%255Es1_%26ref_url=https://arstechnica.com/information-technology/2022/05/digital-drivers-license-used-by-4m-australians-is-a-snap-to-forge/" style="overflow: hidden; height: 379px;"></iframe>
		</div>

		<p>
			 
		</p>

		<p>
			While the veracity of that claim can’t be verified, it certainly sounds plausible, given the ease and effectiveness of the hack shown here.
		</p>
	</div>

	<p>
		 
	</p>
</div>

<p>
	 
</p>

<p>
	<a href="https://arstechnica.com/information-technology/2022/05/digital-drivers-license-used-by-4m-australians-is-a-snap-to-forge/" rel="external nofollow">“Tough to forge” digital driver’s license is… easy to forge</a>
</p>
]]></description><guid isPermaLink="false">6036</guid><pubDate>Tue, 24 May 2022 20:44:06 +0000</pubDate></item><item><title>Hackers can hack your online accounts before you even register them</title><link>https://nsaneforums.com/news/security-privacy-news/hackers-can-hack-your-online-accounts-before-you-even-register-them-r6018/</link><description><![CDATA[<p>
	Security researchers have revealed that hackers can hijack your online accounts before you even register them by exploiting flaws that have been already been fixed on popular websites, including Instagram, LinkedIn, Zoom, WordPress, and Dropbox.
</p>

<p>
	 
</p>

<p>
	Andrew Paverd, a researcher at Microsoft Security Response Center, and Avinash Sudhodanan, an independent security researcher, analyzed 75 popular online services and found that at least 35 are vulnerable to account pre-hijacking attacks.
</p>

<p>
	 
</p>

<p>
	These attacks vary in type and severity, but they all stem from poor security practices on the side of the websites themselves.
</p>

<p>
	 
</p>

<p>
	As some vulnerable websites run bug bounty programs, it is surprising and worrying to see that such elementary attacks are still possible against their users.
</p>

<p>
	 
</p>

<div>
	<p style="margin-left: 40px;">
		"The impact of account pre-hijacking attacks is the same as that of account hijacking. Depending on the nature of the target service, a successful attack could allow the attacker to read/modify sensitive information associated with the account (e.g., messages, billing statements, usage history, etc.) or perform actions using the victim's identity (e.g., send spoofed messages, make purchases using saved payment methods, etc.)." - <a href="https://arxiv.org/pdf/2205.10174.pdf" rel="external nofollow" target="_blank">A. Paverd, A. Sudhodanan</a>.
	</p>
</div>

<h2>
	How pre-hijacking works
</h2>

<p>
	For a pre-hijacking attack to work, the hacker needs to know a target's email address, which is relatively easy through email correspondence or via the numerous data breaches that plague companies daily.
</p>

<p>
	 
</p>

<p>
	Next, an attacker creates an account on a vulnerable site using the target's email address and hopes that the victim dismisses the notification that arrives in their inbox, deeming it spam. Finally, the attacker waits for the victim to create an account on the site or indirectly tricks them into doing it.
</p>

<p>
	 
</p>

<p>
	During this process, there are five different attacks that threat actors can conduct, namely the classic-federated merge (CFM), the unexpired session (US) ID, the trojan identifier (TID), the unexpired email change (UEC), and the non-verifying Identity provider (IdP) attack (NV).
</p>

<p>
	 
</p>

<p>
	In the first case, CFM, the vulnerable platform uses account merging when the target creates an account with an existing email address and, in some cases, doesn't even inform them of the fact. This attack relies on giving the victim a single-sign-on (SSO) option, so they never change the password set by the attacker.
</p>

<p>
	 
</p>

<p>
	In the unexpired session attack, the hacker keeps the session active after creating the account using an automated script. When the victim creates an account and resets the password, the active session might not be invalidated, so the attacker can continue accessing the account.
</p>

<p>
	 
</p>

<p>
	The trojan identifier method combines the Classic-Federated Merge and Unexpired Session attacks.
</p>

<p>
	 
</p>

<p>
	"The attacker creates a pre-hijacked account using the victim’s email address, but then associates the account with the attacker’s IdP account for federated authentication. When the victim resets the password (as in the Unexpired Session Attack), the attacker can still access the account via the federated authentication route," explains the paper.
</p>

<p>
	 
</p>

<p>
	In the UEC attack, the attacker creates an account using the victim's email address and then submits a change request for that email but doesn't confirm it. Then, after the victim performs the password reset, the attacker validates the change and assumes control of the account.
</p>

<p>
	 
</p>

<p>
	Finally, in the NV attack, the threat actor exploits the lack of verifying ownership of an IdP when creating the account, opening up the way to abuse cloud-based login services like Okta and Onelogin.
</p>

<p>
	 
</p>

<p>
	<img alt="diagram(4).png" class="ipsImage" data-ratio="75.10" height="475" width="720" src="https://www.bleepstatic.com/images/news/u/1220909/Diagrams/diagram(4).png">
</p>

<div>
	<div>
		Pre-hijacking attack methods (arxiv.org)
	</div>
</div>

<h2>
	Bypassing the email verification step
</h2>

<p>
	Many services today require new users to validate ownership of the email address, so creating new accounts with other people's email addresses wouldn't work without access to the email account.
</p>

<p>
	 
</p>

<p>
	To bypass this, the attacker can create the account using their email address and then switch to the victim's email address, abusing a standard functionality available in most online services.
</p>

<p>
	 
</p>

<p>
	In some cases, the service will not require a second verification for the new email address, allowing the threat actors to mount the attacks described above.
</p>

<h2>
	Results and protection
</h2>

<p>
	The study shows that the availability of the different attacks are similar, with the unexpired session issue being the most common in the limited dataset.
</p>

<p>
	 
</p>

<p>
	Some notable examples of vulnerable platforms are Dropbox (UEC), Instagram (TID), LinkedIn (US), Wordpress.com (US and UEC), and Zoom (CFM and NV).
</p>

<p>
	 
</p>

<p>
	<img alt="results.png" class="ipsImage" data-ratio="75.10" height="540" width="481" src="https://www.bleepstatic.com/images/news/u/1220909/Tables/results.png">
</p>

<div>
	<p>
		 
	</p>

	<div>
		Sites vulnerable to account pre-hijacking (arxiv.org)
	</div>

	<p>
		 
	</p>
</div>

<p>
	The researchers reported these problems responsibly to the platforms, many of which fixed them after categorizing them as high severity.
</p>

<p>
	 
</p>

<p>
	However, it is crucial to underline that these findings concern only a handful of sites, and there should be many more following similar lousy security practices.
</p>

<p>
	 
</p>

<p>
	The main issue with this subcategory of security problems and the root cause of the identified vulnerabilities is the lack of strict verification.
</p>

<p>
	 
</p>

<p>
	As the analysts explain, the reason behind these flawed systems is that all online platforms want to minimize friction during sign-up as much as possible, which has an adverse effect on account security.
</p>

<p>
	 
</p>

<p>
	To deal with the risk of pre-hijacked accounts, users can immediately set up MFA (multi-factor authentication) on their accounts, which should also force all previous sessions to be invalidated.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.bleepingcomputer.com/news/security/hackers-can-hack-your-online-accounts-before-you-even-register-them/" rel="external nofollow">Hackers can hack your online accounts before you even register them</a>
</p>
]]></description><guid isPermaLink="false">6018</guid><pubDate>Mon, 23 May 2022 19:26:11 +0000</pubDate></item><item><title>Facebook's Zuckerberg targeted in US privacy lawsuit</title><link>https://nsaneforums.com/news/security-privacy-news/facebooks-zuckerberg-targeted-in-us-privacy-lawsuit-r6012/</link><description><![CDATA[<p>
	Facebook founder Mark Zuckerberg was named personally in a Washington lawsuit Monday alleging he played a direct role in decisions that set the stage for the Cambridge Analytica privacy scandal.
</p>

<p>
	<br />
	The US capital's attorney general argues that Zuckerberg was closely involved in conceiving the framework that allowed the Britain-based consulting firm to harvest over 70 million US Facebook users data
</p>

<p>
	<br />
	A whistleblower revealed in 2018 that Cambridge Analytica went on to use that data for political purposes, including trying to rally support for Donald Trump.
</p>

<p>
	<br />
	"Zuckerberg is not just a figurehead at Facebook; he is personally involved in nearly every decision the company makes," Washington Attorney General Karl Racine wrote in the suit.
</p>

<p>
	<br />
	He added that Zuckerberg's control is baked into the structure of the company, where the founder and CEO holds a majority of voting shares.<br />
	Racine's office sued Facebook over its data privacy practices in 2018 as part of a case that is ongoing.
</p>

<p>
	<br />
	Facebook's parent company Meta did not immediately respond to the new lawsuit's allegations, but spokesman Andy Stone noted on Twitter that a judge had previously rejected Racine's bid to add Zuckerberg as a defendant in the privacy case.
</p>

<p>
	<br />
	US authorities imposed what they described as a "historic" $5 billion fine on Facebook in the wake of the scandal, and also required Facebook to ramp up privacy protections, provide detailed quarterly reports on compliance with the deal, and have an independent oversight board.
</p>

<p>
	<br />
	Since the Cambridge Analytica scandal broke, Facebook has removed access to its data from thousands of apps suspected of abusing it, restricted the amount of information available to developers in general, and made it easier for users to calibrate restrictions on personal data sharing.
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://techxplore.com/news/2022-05-facebook-zuckerberg-privacy-lawsuit.html" rel="external nofollow">Source</a></strong>
</p>

<p>
	 
</p>

<p>
	<em>Also:  <a href="https://www.msn.com/en-us/money/companies/dc-attorney-general-sues-zuckerberg-over-cambridge-analytica-scandal/ar-AAXCyMw" rel="external nofollow">D.C. attorney general sues Zuckerberg over Cambridge Analytica scandal</a>.</em>
</p>
]]></description><guid isPermaLink="false">6012</guid><pubDate>Mon, 23 May 2022 17:20:18 +0000</pubDate></item><item><title>New Unpatched Bug Could Let Attackers Steal Money from PayPal Users</title><link>https://nsaneforums.com/news/security-privacy-news/new-unpatched-bug-could-let-attackers-steal-money-from-paypal-users-r6005/</link><description><![CDATA[<p>
	A security researcher claims to have discovered an unpatched vulnerability in PayPal's money transfer service that could allow attackers to trick victims into unknowingly completing attacker-directed transactions with a single click.
</p>

<p>
	<br />
	Clickjacking, also called UI redressing, refers to a technique wherein an unwitting user is tricked into clicking seemingly innocuous webpage elements like buttons with the goal of downloading malware, redirecting to malicious websites, or disclose sensitive information.
</p>

<p>
	<br />
	This is typically achieved by displaying an invisible page or HTML element on top of the visible page, resulting in a scenario where users are fooled into thinking that they are clicking the legitimate page when they are in fact clicking the rogue element overlaid atop it.
</p>

<p>
	<br />
	"Thus, the attacker is 'hijacking' clicks meant for [the legitimate] page and routing them to another page, most likely owned by another application, domain, or both," security researcher h4x0r_dz wrote in a post documenting the findings.
</p>

<p>
	 
</p>

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

<p>
	 
</p>

<p>
	h4x0r_dz, who discovered the issue on the "www.paypal[.]com/agreements/approve" endpoint, said the issue was reported to the company in October 2021.
</p>

<p>
	<br />
	"This endpoint is designed for Billing Agreements and it should accept only billingAgreementToken," the researcher explained. "But during my deep testing, I found that we can pass another token type, and this leads to stealing money from [a] victim's PayPal account."
</p>

<p>
	<br />
	This means that an adversary could embed the aforementioned endpoint inside an iframe, causing a victim already logged in a web browser to transfer funds to an attacker-controlled PayPal account simply on the click of a button.
</p>

<p>
	<br />
	Even more concerningly, the attack could have had disastrous consequences in online portals that integrate with PayPal for checkouts, enabling the malicious actor to deduct arbitrary amounts from users' PayPal accounts.
</p>

<p>
	<br />
	"There are online services that let you add balance using PayPal to your account," h4x0r_dz said. "I can use the same exploit and force the user to add money to my account, or I can exploit this bug and let the victim create/pay Netflix account for me!"
</p>

<p>
	<br />
	<em>(Update: The story has been rectified to mention that the bug is still unpatched and that the security researcher was not awarded any bug bounty for reporting the issue. The error is regretted. We have also reached out to PayPal for more details.)</em>
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://thehackernews.com/2022/05/paypal-pays-hacker-200000-for.html" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">6005</guid><pubDate>Mon, 23 May 2022 14:56:23 +0000</pubDate></item><item><title>Brave joins Mozilla in declaring Google's First-Party Sets feature harmful to privacy</title><link>https://nsaneforums.com/news/security-privacy-news/brave-joins-mozilla-in-declaring-googles-first-party-sets-feature-harmful-to-privacy-r6004/</link><description><![CDATA[<p>
	First-Party Sets is a proposed feature by Google that is designed to give site owners an option to declare multiple owned sites as first-party. Companies may own multiple domain names, and with first-party sets, they could get supporting browsers to handle all of the properties identical.
</p>

<p>
	 
</p>

<p>
	<img alt="google-first-party-sets-privacy.webp" class="ipsImage" data-ratio="75.10" height="335" width="720" src="https://www.ghacks.net/wp-content/uploads/2022/05/google-first-party-sets-privacy.webp">
</p>

<p>
	 
</p>


<p>
	Currently, different domain names are considered third-parties in most cases, even if they belong to the same company. With the new technology in place, Google could group all of its properties together to improve communication and data flows between them.
</p>

<p>
	 
</p>

<p>
	Brave believes that first-party sets are harmful to user privacy, as companies may use the feature to track users across their properties. Third-party cookies, which are used for the same tracking purpose, will be a thing of the past soon.
</p>

<p>
	 
</p>

<p>
	Google explains that first-party sets "define a more realistic 'privacy boundary' by reflecting the real-world organization of websites, which often span multiple registrable domains".  Google points out that the feature would standardize functionality for the entire Web.
</p>

<p>
	 
</p>

<p>
	Mozilla, the organization that is making the Firefox web browser, <a data-wpel-link="external" href="https://github.com/mozilla/standards-positions/pull/360" rel="external nofollow" target="_blank">declared</a> First-Party Sets harmful back in 2020. Feedback from Apple was positive, according <a data-wpel-link="external" href="https://chromestatus.com/feature/5640066519007232" rel="external nofollow" target="_blank">to this</a> Chrome Status page.
</p>

<p>
	 
</p>

<p>
	Brave Software, maker of the Brave browser, joined Mozilla recently in declaring first-party sets an anti-privacy feature. Brave Senior director of privacy, Peter Snyder, pointed out on the official blog that the adoption of the feature would make it harder for "user-respecting browsers to protect their users' privacy".
</p>

<p>
	 
</p>

<p>
	First-Party Sets will allow more sites to track more of your behavior on the Web, and make it more difficult for users to predict how their information will be shared.
</p>

<p>
	 
</p>

<p>
	Snyder believes that Chrome's dominance will likely lead to the implementation of the feature in other browsers to "maintain compatibility with the Web". Chrome has a market share of over 60% and many browsers are using the same source as Chrome already. The two main exceptions are Apple's Safari and Mozilla's Firefox web browser. Other browsers, including Microsoft Edge, Brave, Vivaldi or Opera, use Chromium as the source.
</p>

<p>
	 
</p>

<p>
	First-party sets enable the tracking of users across properties that organizations and individuals own. Google could declare most of its properties a first-party set; this would mean that if a user is known on google.com, it is also known on any other site of the first-party set, even if that site was never visited or is visited for the first time.
</p>

<p>
	 
</p>

<p>
	Google would know about the user who visits YouTube, Blogger, or Alphabet.com for the first time, provided that these domains would be in the same first-party set.  Worse still, according to Snyder, users would have no control over the mechanism.
</p>

<p>
	 
</p>

<p>
	Google is arguing that first-party sets is improving privacy, as it paves the way for removing support for third-party cookies in the browser. Snyder argues that first-party sets is not a privacy feature, but one designed to "ensure companies can continue to identify and track people across sites".
</p>

<p>
	 
</p>

<p>
	Google is continuing its work on its Privacy Sandbox project. The company dropped support for the controversial FLoC in January 2022 to replace it with the <a data-wpel-link="internal" href="https://www.ghacks.net/2022/01/26/google-drops-floc-and-announces-topics-as-the-future-cookie-less-advertising-system/" rel="external nofollow">equally-controversial Topics system</a>. The company is <a data-wpel-link="internal" href="https://www.ghacks.net/2022/04/26/chrome-101-ships-with-controversial-advertising-system-trials/" rel="external nofollow">running advertising system trials in Chrome currently</a>.
</p>

<p>
	 
</p>

<p>
	Chrome's dominance makes it difficult to oppose features. While browser makers may choose to ignore certain features that Google implements in Chromium and Chrome, it could result in web compatibility issues, as many developers look at Chrome first when it comes to web standards and support.
</p>

<p>
	 
</p>

<p>
	<strong>Now You</strong>: what is your take on first-party sets?
</p>

<p>
	 
</p>

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

<p>
	 
</p>

<p>
	<a href="https://www.ghacks.net/2022/05/23/brave-joins-mozilla-in-declaring-googles-first-party-sets-feature-harmful-to-privacy/" rel="external nofollow">Brave joins Mozilla in declaring Google's First-Party Sets feature harmful to privacy</a>
</p>
]]></description><guid isPermaLink="false">6004</guid><pubDate>Mon, 23 May 2022 08:48:46 +0000</pubDate></item><item><title>Windows 11 hacked three more times on last day of Pwn2Own contest</title><link>https://nsaneforums.com/news/security-privacy-news/windows-11-hacked-three-more-times-on-last-day-of-pwn2own-contest-r5988/</link><description><![CDATA[<p>
	On the third and last day of the 2022 Pwn2Own Vancouver hacking contest, security researchers successfully hacked Microsoft's Windows 11 operating system three more times using zero-day exploits.
</p>

<p>
	 
</p>

<p>
	The first attempt of the day targeting Microsoft Teams failed after Team DoubleDragon could not demo their exploit within the allotted time.
</p>

<p>
	 
</p>

<p>
	All other contestants hacked their targets, earning $160,000 after taking down Windows 11 three times and Ubuntu Desktop once.
</p>

<p>
	 
</p>

<p>
	The first to demonstrate a Windows 11 escalation of privilege zero-day (via Integer Overflow) on the third day of Pwn2Own was nghiadt12 from Viettel Cyber Security.
</p>

<p>
	 
</p>

<p>
	<a href="https://twitter.com/BrunoPujos" rel="external nofollow" target="_blank">Bruno Pujos</a> from REverse Tactics and vinhthp1712 also escalated privileges on Windows 11 using Use-After-Free and Improper Access Control vulnerabilities, respectively.
</p>

<p>
	 
</p>

<p>
	Last but not least, STAR Labs' <a href="https://twitter.com/st424204" rel="external nofollow" target="_blank">Billy Jheng Bing-Jhong</a> hacked a system running Ubuntu Desktop using a Use-After-Free exploit.
</p>

<p>
	 
</p>

<p>
	<img alt="Windows_11_%20EOP%20via%20Integer_Overfl" class="ipsImage" data-ratio="75.10" height="371" width="720" src="https://www.bleepstatic.com/images/news/u/1109292/2022/Windows_11_%20EOP%20via%20Integer_Overflow.jpg">
</p>

<div>
	<div>
		Windows 11 EOP via Integer Overflow demoed by nghiadt12 (ZDI)
	</div>

	<p>
		 
	</p>
</div>

<p>
	Pwn2Own 2022 Vancouver ended with 17 competitors <a href="http://Trend%20Micro%20and%20ZDI%20awarding%20%241,155,000" rel="external nofollow" target="_blank">earning a total of $1,155,000</a> for zero-day exploits and exploits chains demoed over three days after 21 attempts, between May 18 and May 20.
</p>

<p>
	 
</p>

<p>
	On the first day of Pwn2Own, <a href="https://www.bleepingcomputer.com/news/security/microsoft-teams-windows-11-hacked-on-first-day-of-pwn2own/" target="_blank" rel="external nofollow">hackers won $800,000</a> after successfully exploiting 16 zero-day bugs to hack multiple products, including Microsoft's Windows 11 operating system and the Teams communication platform, Ubuntu Desktop, Apple Safari, Oracle Virtualbox, and Mozilla Firefox.
</p>

<p>
	 
</p>

<p>
	On second day, <a href="https://www.bleepingcomputer.com/news/security/windows-11-hacked-again-at-pwn2own-telsa-model-3-also-falls/" target="_blank" rel="external nofollow">contestants earned $195,000</a> after demoing flaws in the Telsa Model 3 Infotainment System, Ubuntu Desktop, and Microsoft Windows 11.
</p>

<p>
	 
</p>

<p>
	Security researchers demonstrated six Windows 11 exploits during the contest, hacked Ubuntu Desktop four times, and demoed three Microsoft Teams zero-days. They also reported several flaws in Apple Safari, Oracle Virtualbox, and Mozilla Firefox.
</p>

<p>
	 
</p>

<p>
	After vulnerabilities are exploited and reported during Pwn2Own, vendors have 90 days to release security fixes until Trend Micro's Zero Day Initiative publicly discloses them.
</p>

<p>
	 
</p>

<p>
	In April, hackers also <a href="https://www.bleepingcomputer.com/news/security/hackers-earn-400k-for-zero-day-ics-exploits-demoed-at-pwn2own/" target="_blank" rel="external nofollow">earned $400,000 for 26 zero-day exploits</a> targeting ICS and SCADA products demoed during the 2022 Pwn2Own Miami contest between April 19 and April 21.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.bleepingcomputer.com/news/security/windows-11-hacked-three-more-times-on-last-day-of-pwn2own-contest/" rel="external nofollow">Windows 11 hacked three more times on last day of Pwn2Own contest</a>
</p>
]]></description><guid isPermaLink="false">5988</guid><pubDate>Sat, 21 May 2022 21:39:19 +0000</pubDate></item><item><title>Mozilla patches two critical security issues in Firefox and Thunderbird</title><link>https://nsaneforums.com/news/security-privacy-news/mozilla-patches-two-critical-security-issues-in-firefox-and-thunderbird-r5983/</link><description><![CDATA[<p>
	Mozilla published updates for its Firefox and Firefox ESR web browsers on May 20, 2022. The Thunderbird development team released a patch for the email client as well. The security updates patch two critical security issues in the Firefox web browser and Thunderbird.
</p>

<p>
	 
</p>

<p>
	Here is the list of products with updates:
</p>

<p>
	 
</p>

<ul>
	<li>
		Firefox 100.0.2
	</li>
	<li>
		Firefox ESR 91.9.1
	</li>
	<li>
		Firefox for Android 100.3
	</li>
	<li>
		Thunderbird 91.9.1
	</li>
</ul>

<p>
	 
</p>

<p>
	The updates are available already, and most user installations will be updated automatically. Desktop users who don't want to wait until that happens may run a manual check for updates to speed up the installation.
</p>

<p>
	 
</p>

<ul>
	<li>
		<strong>Firefox</strong>: select Menu &gt; Help &gt; About Firefox. Firefox runs a manual check for updates. Any update that is found will be downloaded and installed.
	</li>
	<li>
		<strong>Thunderbird</strong>: select Help &gt; About Thunderbird. Thunderbird will also check for updates and install any that it finds.
	</li>
</ul>

<p>
	 
</p>

<p>
	Note: Firefox for Android is updated via Google Play. There is no option to speed up the delivery of updates on Android via Google Play.
</p>

<p>
	 
</p>

<p>
	The <a data-wpel-link="external" href="https://www.mozilla.org/en-US/firefox/100.0.2/releasenotes/" rel="external nofollow" target="_blank">official release notes</a> list a single entry, that confirm the security nature of the update. Mozilla published a <a data-wpel-link="external" href="https://www.mozilla.org/en-US/security/advisories/mfsa2022-19/" rel="external nofollow" target="_blank">security advisory</a> for all affected versions of the web browser that provide additional details on the issues:
</p>

<p>
	 
</p>

<p>
	There, users find out that two security issues have been patched in the update. Both issues have the severity rating of critical, the highest rating that is available. They were reported to Mozilla by Manfred Paul via Trend Micro's Zero Day Initiative.
</p>

<p>
	 
</p>

<p style="margin-left: 40px;">
	CVE-2022-1802: Prototype pollution in Top-Level Await implementation
</p>

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

<p style="margin-left: 40px;">
	If an attacker was able to corrupt the methods of an Array object in JavaScript via prototype pollution, they could have achieved execution of attacker-controlled JavaScript code in a privileged context.
</p>

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

<p style="margin-left: 40px;">
	CVE-2022-1529: Untrusted input used in JavaScript object indexing, leading to prototype pollution
</p>

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

<p style="margin-left: 40px;">
	An attacker could have sent a message to the parent process where the contents were used to double-index into a JavaScript object, leading to prototype pollution and ultimately attacker-controlled JavaScript executing in the privileged parent process.
</p>

<p>
	 
</p>

<p>
	The linked bug reports are restricted. Mozilla makes no mention of attacks in the wilds that target these vulnerabilities.
</p>

<p>
	 
</p>

<p>
	Firefox and Thunderbird users may want to update their applications quickly to protect them against attacks targeting these issues.
</p>

<p>
	 
</p>

<p>
	<strong>Now You</strong>: when do you update your applications?
</p>

<p>
	 
</p>

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

<p>
	 
</p>

<p>
	<a href="https://www.ghacks.net/2022/05/21/mozilla-patches-two-critical-security-issues-in-firefox-and-thunderbird/" rel="external nofollow">Mozilla patches two critical security issues in Firefox and Thunderbird</a>
</p>
]]></description><guid isPermaLink="false">5983</guid><pubDate>Sat, 21 May 2022 07:24:48 +0000</pubDate></item><item><title>Google Chat adds warning banners to protect against phishing attacks</title><link>https://nsaneforums.com/news/security-privacy-news/google-chat-adds-warning-banners-to-protect-against-phishing-attacks-r5967/</link><description><![CDATA[<h3>
	The warning labels are spreading across Google services
</h3>

<p>
	Google Chat has <a href="https://www.theverge.com/2022/2/23/22947115/google-chat-classic-hangouts-gmail-workspace" rel="external nofollow">replaced Hangouts</a> and will now display banners warning you against potential phishing and malware attacks coming from personal accounts, <a href="https://workspaceupdates.googleblog.com/2022/05/new-google-chat-banners-protect-against-malicious-links.html" rel="external nofollow">Google announced on Thursday</a>. This tweak for Google Chat is the latest expansion of Google’s attempts to prevent phishing.
</p>

<p>
	 
</p>

<p>
	During its 2022 I/O developer conference, Google <a href="https://www.theverge.com/2022/5/11/23066161/google-privacy-controls-protected-computing-io" rel="external nofollow">discussed several security measures</a> it has implemented to enhance user safety, including warnings against potential security issues and recommendations to fix them. Google also laid out other plans for security measures, like expanded two-step verification, ad customization, and more data security.
</p>

<p>
	 
</p>

<p>
	<img alt="Screen_Shot_2022_05_19_at_4.07.32_PM.png" class="ipsImage" data-ratio="84.38" height="540" width="634" src="https://cdn.vox-cdn.com/thumbor/81aXnOIHGe4V3EqE9N-0i2roXUc=/0x0:640x545/920x0/filters:focal(0x0:640x545):format(webp):no_upscale()/cdn.vox-cdn.com/uploads/chorus_asset/file/23577012/Screen_Shot_2022_05_19_at_4.07.32_PM.png">
</p>

<p>
	Warning labels about suspicious links in Google Chat. Image: Google
</p>

<p>
	 
</p>

<p>
	Google’s new warning banners first appeared in Gmail on Workspace accounts to point out attempts to lure someone with a link that could be used for malware, phishing, or ransomware. At the end of April, Google <a href="https://www.theverge.com/2022/4/29/23048113/google-docs-slides-sheets-warning-banner-scams-phishing-links-web" rel="external nofollow">expanded the banners to Google Docs</a>, warning users against suspected malicious files in several Google Workspace apps (Docs, Sheets, Slides, and Drawing) no matter where they opened the link from.
</p>

<p>
	 
</p>

<p>
	This new feature is rolling out over the next couple of weeks, and it will be available for both personal Google accounts and for all Google Workspace customers.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.theverge.com/2022/5/20/23132300/google-chat-warning-banner-phishing-cybersecurity" rel="external nofollow">Google Chat adds warning banners to protect against phishing attacks</a>
</p>
]]></description><guid isPermaLink="false">5967</guid><pubDate>Fri, 20 May 2022 21:12:04 +0000</pubDate></item><item><title>Windows 11 hacked again at Pwn2Own, Telsa Model 3 also falls</title><link>https://nsaneforums.com/news/security-privacy-news/windows-11-hacked-again-at-pwn2own-telsa-model-3-also-falls-r5966/</link><description><![CDATA[<p>
	During the second day of the Pwn2Own Vancouver 2022 hacking competition, contestants hacked Microsoft's Windows 11 OS again and demoed zero-days in Tesla Model 3's infotainment system.
</p>

<p>
	 
</p>

<p>
	The first demonstration of the day came from the <a href="https://twitter.com/Synacktiv" rel="external nofollow" target="_blank">@Synacktiv</a> team, who successfully demoed two unique bugs (Double-Free &amp; OOBW) and a sandbox escape collision while targeting the Tesla Model 3 infotainment system, earning $75,000 for their efforts.
</p>

<p>
	 
</p>

<p>
	<a href="https://twitter.com/Jedar_LZ" rel="external nofollow" target="_blank">@Jedar_LZ</a> also failed to demo a zero-day exploit against Tesla's car. Although the bug wasn't exploited within the allotted time, Trend Micro's Zero Day Initiative (ZDI) acquired the exploit details and disclosed them to Tesla. 
</p>

<p>
	 
</p>

<p>
	A third Windows 11 elevation of privileges zero-day caused by an improper access control bug was demoed on the second day by T0, with namnp failing to demonstrate a second Windows 11 privilege escalation zero-day within the time allotted.
</p>

<p>
	 
</p>

<p>
	Two more local privilege escalation vulnerabilities in Windows 11 were successfully demoed by the STAR Labs team and Marcin Wiązowski <a href="https://www.bleepingcomputer.com/news/security/microsoft-teams-windows-11-hacked-on-first-day-of-pwn2own/" target="_blank" rel="external nofollow">during the first round of the Pwn2Own contest</a>.
</p>

<p>
	 
</p>

<p>
	Ubuntu Desktop was also hacked twice, with Bien Pham (<a href="https://twitter.com/bienpnn" rel="external nofollow">@bienpnn</a>) and Team TUTELARY from Northwestern University escalating privileges using two Use After Free bugs and earning $40,000 each.
</p>

<p>
	 
</p>

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

<p>
	 
</p>

<p>
	On the first day of Pwn2Own, <a href="https://www.bleepingcomputer.com/news/security/microsoft-teams-windows-11-hacked-on-first-day-of-pwn2own/" target="_blank" rel="external nofollow">hackers won $800,000</a> after successfully exploiting 16 zero-day bugs to hack multiple products, including Microsoft's Windows 11 operating system and the Teams communication platform, Ubuntu Desktop, Apple Safari, Oracle Virtualbox, and Mozilla Firefox.
</p>

<p>
	 
</p>

<p>
	<a href="https://www.zerodayinitiative.com/blog/2022/5/17/pwn2own-vancouver-2022-the-schedule#:~:text=%C2%A0Friday%2C%20May%2020%2C%202022" rel="external nofollow" target="_blank">On the third day</a> of the contest, Pwn2Own competitors will attempt to exploit more zero-days in Windows 11, Microsoft Teams, and Ubuntu Desktop.
</p>

<p>
	 
</p>

<p>
	Vendors have 90 days to develop and release security fixes for all reported flaws after demoed security vulnerabilities are disclosed during Pwn2Own.
</p>

<p>
	 
</p>

<p>
	Security researchers will target products in multiple product categories between May 18 and May 20 at <a href="https://www.zerodayinitiative.com/blog/2022/5/18/pwn2own-vancouver-2022-the-results" rel="external nofollow" target="_blank">Pwn2Own Vancouver 2022</a>, including web browsers, virtualization, local escalation of privilege, servers, enterprise communications, and automotive.
</p>

<p>
	 
</p>

<p>
	They can earn more than $1,000,000 in cash and prizes throughout the three days of the contest after successfully exploiting previously unknown bugs.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.bleepingcomputer.com/news/security/windows-11-hacked-again-at-pwn2own-telsa-model-3-also-falls/" rel="external nofollow">Windows 11 hacked again at Pwn2Own, Telsa Model 3 also falls</a>
</p>
]]></description><guid isPermaLink="false">5966</guid><pubDate>Fri, 20 May 2022 21:10:10 +0000</pubDate></item><item><title>New method to kill cyberattacks in less than a second</title><link>https://nsaneforums.com/news/security-privacy-news/new-method-to-kill-cyberattacks-in-less-than-a-second-r5959/</link><description><![CDATA[<p>
	A new method that could automatically detect and kill cyberattacks on our laptops, computers and smart devices in under a second has been created by researchers at Cardiff University.
</p>

<p>
	<br />
	Using artificial intelligence in a completely novel way, the method has been shown to successfully prevent up to 92 percent of files on a computer from being corrupted, with it taking just 0.3 seconds on average for a piece of malware to be wiped out.
</p>

<p>
	<br />
	Publishing their findings in the journal Security and Communications Networks, the team say this is the first demonstration of a method that can both detect and kill malicious software in real-time, which could transform approaches to modern cybersecurity and avoid instances such as the recent WannaCry cyberattack that hit the NHS in 2017.
</p>

<p>
	<br />
	Using advances in artificial intelligence and machine learning, the new approach, developed in collaboration with Airbus, is based on monitoring and predicting the behavior of malware as opposed to more traditional antivirus approaches that analyze what a piece of malware looks like.
</p>

<p>
	<br />
	"Traditional antivirus software will look at the code structure of a piece of malware and say 'yeah, that looks familiar'," co-author of the study Professor Pete Burnap explains.
</p>

<p>
	<br />
	"But the problem is malware authors will just chop and change the code, so the next day the code looks different and is not detected by the antivirus software. We want to know how a piece of malware behaves so once it starts attacking a system, like opening a port, creating a process or downloading some data in a particular order, it will leave a fingerprint behind which we can then use to build up a behavioral profile."
</p>

<p>
	<br />
	By training computers to run simulations on specific pieces of malware, it is possible to make a very quick prediction in less than a second of how the malware will behave further down the line.
</p>

<p>
	<br />
	Once a piece of software is flagged as malicious the next stage is to wipe it out, which is where the new research comes into play.
</p>

<p>
	<br />
	"Once a threat is detected, due to the fast-acting nature of some destructive malware, it is vital to have automated actions to support these detections," continued Professor Burnap.
</p>

<p>
	<br />
	"We were motivated to undertake this work as there was nothing available that could do this kind of automated detecting and killing on a user's machine in real-time."
</p>

<p>
	<br />
	Existing products, known as endpoint detection and response (EDR), are used to protect end-user devices such as desktops, laptops, and mobile devices and are designed to quickly detect, analyze, block, and contain attacks that are in progress.
</p>

<p>
	<br />
	The main problem with these products is that the collected data needs to be sent to administrators in order for a response to be implemented, by which time a piece of malware may already have caused damage.
</p>

<p>
	<br />
	To test the new detection method, the team set up a virtual computing environment to represent a group of commonly used laptops, each running up to 35 applications at the same time to simulate normal behavior.
</p>

<p>
	<br />
	The AI-based detection method was then tested using thousands of samples of malware.
</p>

<p>
	<br />
	Lead author of the study Matilda Rhode, now Head of Innovation and Scouting at Airbus, said: "While we still have some way to go in terms of improving the accuracy of this system before it could be implemented, this is an important step towards an automated real-time detection system that would not only benefit our laptops and computers, but also our smart speakers, thermostats, cars and refrigerators as the 'Internet of Things' becomes more prevalent."
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://techxplore.com/news/2022-05-method-cyberattacks.html" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">5959</guid><pubDate>Fri, 20 May 2022 19:25:39 +0000</pubDate></item><item><title>Microsoft detects massive surge in Linux XorDDoS malware activity</title><link>https://nsaneforums.com/news/security-privacy-news/microsoft-detects-massive-surge-in-linux-xorddos-malware-activity-r5944/</link><description><![CDATA[<p>
	A stealthy and modular malware used to hack into Linux devices and build a DDoS botnet has seen a massive 254% increase in activity during the last six months, as Microsoft revealed today.
</p>

<p>
	 
</p>

<p>
	This malware (active since at least <a href="https://blog.malwaremustdie.org/2014/09/mmd-0028-2014-fuzzy-reversing-new-china.html" rel="external nofollow" target="_blank">2014</a>) is known as XorDDoS (or XOR DDoS) due to its use of XOR-based encryption when communicating with command-and-control (C2) servers and being employed to launch distributed denial-of-service (DDoS) attacks.
</p>

<p>
	 
</p>

<p>
	As the company revealed, the botnet's success is likely due to its extensive use of various evasion and persistence tactics which allow it to remain stealthy and hard to remove.
</p>

<p>
	 
</p>

<p>
	"Its evasion capabilities include obfuscating the malware's activities, evading rule-based detection mechanisms and hash-based malicious file lookup, as well as using anti-forensic techniques to break process tree-based analysis," Microsoft 365 Defender Research Team <a href="https://www.microsoft.com/security/blog/2022/05/19/rise-in-xorddos-a-deeper-look-at-the-stealthy-ddos-malware-targeting-linux-devices/" rel="external nofollow" target="_blank">said</a>.
</p>

<p>
	 
</p>

<p>
	"We observed in recent campaigns that XorDdos hides malicious activities from analysis by overwriting sensitive files with a null byte."
</p>

<p>
	 
</p>

<p>
	XorDDoS is known for targeting a multitude of Linux system architectures, from ARM (IoT) to x64 (servers), and compromising vulnerable ones in SSH brute-force attacks.
</p>

<p>
	 
</p>

<p>
	To propagate to more devices, it uses a shell script that will attempt to log in as root using various passwords against thousands of Internet-exposed systems until it finally finds a match.
</p>

<p>
	 
</p>

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

<div>
	<div>
		XorDDoS attack flow (Microsoft)
	</div>

	<p>
		 
	</p>
</div>

<p>
	Besides launching DDoS attacks, the malware's operators use the XorDDoS botnet to install rootkits, maintain access to hacked devices, and, likely, drop additional malicious payloads.
</p>

<p>
	 
</p>

<p>
	"We found that devices first infected with XorDdos were later infected with additional malware such as the Tsunami backdoor, which further deploys the XMRig coin miner," Microsoft added.
</p>

<p>
	 
</p>

<p>
	"While we did not observe XorDdos directly installing and distributing secondary payloads like Tsunami, it's possible that the trojan is leveraged as a vector for follow-on activities."
</p>

<p>
	 
</p>

<p>
	The huge boost in XorDDoS activity Microsoft detected since December lines up with a report by cybersecurity firm CrowdStrike which said that <a href="https://www.bleepingcomputer.com/news/security/linux-malware-sees-35-percent-growth-during-2021/" target="_blank" rel="external nofollow">Linux malware had seen a 35% growth</a> during 2021 compared to the previous year.
</p>

<p>
	 
</p>

<p>
	XorDDoS, Mirai, and Mozi were the most prevalent families, accounting for 22% of all malware attacks targeting Linux devices observed in 2021.
</p>

<p>
	 
</p>

<p>
	Of the three, CrowdStrike said that XorDDoS saw a notable year-over-year increase of 123%, while Mozi had an explosive activity growth, with ten times more samples detected in the wild throughout last year.
</p>

<p>
	 
</p>

<p>
	A <a href="https://www.intezer.com/blog/cloud-security/2020-set-record-for-new-linux-malware-families/" rel="external nofollow" target="_blank">February 2021 report from Intezer</a> also revealed that Linux malware families increased by roughly 40% in 2020 compared to 2019.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.bleepingcomputer.com/news/security/microsoft-detects-massive-surge-in-linux-xorddos-malware-activity/" rel="external nofollow">Microsoft detects massive surge in Linux XorDDoS malware activity</a>
</p>
]]></description><guid isPermaLink="false">5944</guid><pubDate>Thu, 19 May 2022 21:26:25 +0000</pubDate></item><item><title>Windows 11 and Teams got hacked several times during the first day of Pwn2Own 2022</title><link>https://nsaneforums.com/news/security-privacy-news/windows-11-and-teams-got-hacked-several-times-during-the-first-day-of-pwn2own-2022-r5943/</link><description><![CDATA[<p>
	During Pwn2Own, an annual computer hacking event, contestants and cybersecurity experts demonstrate their skills in utilizing bugs, zero-day exploits, and other issues to legally crack into various software and receive rewards and recognition. This year, during Pwn2Own Vancouver 2022, contestants managed to break into Microsoft Teams and Windows 11 on day one.
</p>

<p>
	 
</p>

<p>
	Hector "p3rro" Peralta was the first to get into Microsoft Teams. He demonstrated an improper configuration against Microsoft's corporate messenger and earned $150,000 for his findings. Later, Teams fell victim again when Masato Kinugawa executed a 3-bug chain of infection, misconfiguration, and sandbox escape. The beatings continued with Daniel Lim Wee Soong, Poh Jia Hao, Li Jiantao, and Ngo Wei Lin demonstrating zero-click exploits of two bugs.
</p>

<p>
	 
</p>

<p>
	Windows 11 was not immune to hackers either. Despite Microsoft's strong emphasis on security in its latest OS, Marcin Wiązowski executed an out-of-bounds write escalation of privilege in Windows 11. For that, Marcin netted $40,000 and high praise from Microsoft.
</p>

<p>
	 
</p>

<p>
	Microsoft's products were not the only software hackers broke during the first day of Pwn2Own Vancouver 2022. Contestants managed to earn points and money by cracking Oracle Virtualbox, Mozilla Firefox, Ubuntu Desktop, and Apple Safari. Events like this help Microsoft and other companies improve the security of their products and incentivize skilled hackers to stay on the right side of cyber laws.
</p>

<p>
	 
</p>

<p>
	In total, hackers earned $800,000 on day one by exploiting 16 zero-day bugs in multiple products. On days two and three, contestants can make more than $1,000,000 in rewards by breaking into other software, gadgets, and cars (Tesla Model 3 and Model S).
</p>

<p>
	 
</p>

<p>
	Source: <a href="http://www.zerodayinitiative.com/blog/2022/5/18/pwn2own-vancouver-2022-the-results" rel="external nofollow">Zero Day Initiative</a> via <a href="https://www.bleepingcomputer.com/news/security/microsoft-teams-windows-11-hacked-on-first-day-of-pwn2own/" rel="external nofollow">Bleeping Computer</a>
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/windows-11-and-teams-got-hacked-several-times-during-the-first-day-of-pwn2own-2022/" rel="external nofollow">Windows 11 and Teams got hacked several times during the first day of Pwn2Own 2022</a>
</p>
]]></description><guid isPermaLink="false">5943</guid><pubDate>Thu, 19 May 2022 21:24:34 +0000</pubDate></item><item><title>Phishing websites now use chatbots to steal your credentials</title><link>https://nsaneforums.com/news/security-privacy-news/phishing-websites-now-use-chatbots-to-steal-your-credentials-r5942/</link><description><![CDATA[<p>
	Phishing attacks are now using automated chatbots to guide visitors through the process of handing over their login credentials to threat actors.
</p>

<p>
	 
</p>

<p>
	This approach automates the process for attackers and gives a sense of legitimacy to visitors of the malicious sites, as chatbots are commonly found on websites for legitimate brands.
</p>

<p>
	 
</p>

<p>
	This new development in phishing attacks was discovered by researchers at Trustwave, who shared the report with Bleeping Computer before publication.
</p>

<h2>
	It starts with an email
</h2>

<p>
	The phishing process begins with an email claiming to contain information about the delivery of a parcel, masquerading as the DHL shipping brand.
</p>

<p>
	 
</p>

<p>
	<img alt="message(1).png" class="ipsImage" data-ratio="66.39" height="365" width="720" src="https://www.bleepstatic.com/images/news/u/1220909/Phishing/message(1).png">
</p>

<div>
	<div>
		Phishing email sample (Trustwave)
	</div>

	<p>
		 
	</p>
</div>

<p>
	Clicking on the 'Please follow our instructions' button in the email loads a PDF file that contains links to the phishing site. The threat actors display the phishing links in the PDF document to bypass email security software.
</p>

<p>
	 
</p>

<p>
	<img alt="dhl-pdf.png" class="ipsImage" data-ratio="103.85" height="540" width="436" src="https://www.bleepstatic.com/images/news/u/1220909/Phishing/dhl-pdf.png">
</p>

<div>
	<div>
		Downloadable PDF containing the malicious links(Trustwave)
	</div>

	<p>
		 
	</p>
</div>

<p>
	However, the URL button (or the link) in the PDF takes the victim to a phishing site (dhiparcel-management[.]support-livechat[.]24mhd[.]com) where they are supposed to resolve issues causing a package to be undeliverable.
</p>

<p>
	 
</p>

<p>
	This is where the chatbot takes over.
</p>

<h2>
	A chatbot steals your credentials
</h2>

<p>
	When the phishing page loads, visitors are greeted with a web chat explaining why the package could not be delivered instead of being shown a fake login form commonly used to steal credentials.
</p>

<p>
	 
</p>

<p>
	This webchat explains that the package's label was damaged, preventing its delivery. The webchat also displays a photo of the alleged package to add more legitimacy to the scam.
</p>

<p>
	 
</p>

<p>
	<img alt="chatbot.png" class="ipsImage" data-ratio="75.10" height="540" width="629" src="https://www.bleepstatic.com/images/news/u/1220909/Phishing/chatbot.png">
</p>

<div>
	<div>
		Chatbot on the phishing site (Trustwave)
	</div>

	<p>
		 
	</p>
</div>

<p>
	This virtual assistant offers pre-defined responses for the visitor, so the conversation is fixed, always leading to showing a photograph of the alleged package featuring a damaged label.
</p>

<p>
	 
</p>

<p>
	Due to this problem, the chatbot requests the victim to give their personal details such as home or business address, full name, phone number, etc.
</p>

<p>
	 
</p>

<p>
	After that, the delivery is supposedly scheduled, and a bogus CAPTCHA step is displayed to act as one more false send of legitimacy to the phishing page.
</p>

<p>
	 
</p>

<p>
	Next, the victim is redirected to a phishing page that requires entering DHL account credentials and finally, leading to a payment step, supposedly to cover the shipping costs.
</p>

<p>
	 
</p>

<p>
	The final "Secure Pay" page contains the typical credit card payment fields, including cardholder name, card number, expiration date, and the CVV code.
</p>

<p>
	 
</p>

<div>
	<p>
		<img alt="payment.png" class="ipsImage" data-ratio="91.53" height="540" width="571" src="https://www.bleepstatic.com/images/news/u/1220909/Phishing/payment.png">
	</p>

	<div>
		Credit card payment field (Trustwave)
	</div>

	<p>
		 
	</p>
</div>

<p>
	When the details are entered and the "Pay Now" button is clicked, the victim receives a one-time password (OTP) on the provided mobile phone number via SMS, which adds to the sense of legitimacy.
</p>

<p>
	 
</p>

<div>
	<p>
		<img alt="otp.png" class="ipsImage" data-ratio="114.41" height="540" width="444" src="https://www.bleepstatic.com/images/news/u/1220909/Phishing/otp.png">
	</p>

	<div>
		One-time password verification screen (Trustwave)
	</div>

	<p>
		 
	</p>
</div>

<p>
	Trustwave's analysts tested entering random characters, and the system returned an error about an invalid security code, so the implementation of the OTP verification is real.
</p>

<p>
	 
</p>

<p>
	If the correct code is entered, the fake page serves a "Thank you!" message and confirms that the submission has been received.
</p>

<h2>
	Campaigns are getting more "genuine"
</h2>

<p>
	Threat actors are increasingly using mechanisms generally found in real websites, like CAPTCHAs, OTPs, and now even chatbots, making it hard for victims to spot attempts to steal their information.
</p>

<p>
	 
</p>

<p>
	This calls for greater vigilance when receiving unsolicited communications that request your immediate action, especially if these messages contain embedded buttons and URL links.
</p>

<p>
	 
</p>

<p>
	If DHL or any other shipping service requires your action, you should always open the actual website on a new browser tab instead of clicking on the provided links.
</p>

<p>
	 
</p>

<p>
	Then Log in to your account on the trusted platform, and check for any pending items or alerts. Alternatively, contact a customer support agent yourself.
</p>

<p>
	 
</p>

<p>
	As always, the best way to spot a phishing page is to examine the URL for the website. If it looks suspicious or does not match the legitimate domain, do not enter any personal information into the page.
</p>

<p>
	 
</p>

<p>
	In this case, the spoofed DHL URL ends with the domain "24mhd.com," which is clearly not the DHL website and is a clear sign of a phishing attempt.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.bleepingcomputer.com/news/security/phishing-websites-now-use-chatbots-to-steal-your-credentials/" rel="external nofollow">Phishing websites now use chatbots to steal your credentials</a>
</p>
]]></description><guid isPermaLink="false">5942</guid><pubDate>Thu, 19 May 2022 21:22:55 +0000</pubDate></item><item><title>Deepfakes can fool biometric checks used by banks, research finds</title><link>https://nsaneforums.com/news/security-privacy-news/deepfakes-can-fool-biometric-checks-used-by-banks-research-finds-r5933/</link><description><![CDATA[<p>
	<span style="font-size:18px;"><span style="font-family:Tahoma, Geneva, sans-serif;">Fraudsters can easily use artificial intelligence to open up fake accounts online.</span></span>
</p>

<p>
	 
</p>

<p>
	A team of researchers has found that biometric tests used by banks and cryptocurrency exchanges to verify users’ identities can be fooled by deepfake technology.
</p>

<p>
	<br />
	In a report published on Wednesday, researchers with Sensity, a security firm focused on deepfake detection, demonstrated how it was able to bypass an automated “liveness test” by using AI-generated faces.
</p>

<p>
	<br />
	Commonly known as “know your customer” or KYC tests, such verification processes often ask users to provide photographs of their identification as well as their face. A “liveness test” is then used to capture the users’ face in real-time in order to match it to their selfie and identification photo with facial recognition.
</p>

<p>
	<br />
	KYC verification is utilized in a wide array of industries including banking, fintech, insurance, crypto, and gambling. Sensity tweeted out footage of its demonstration a week before it released its report, detailing how 9 of the top 10 KYC vendors were highly vulnerable to deepfake attacks.
</p>

<p>
	 
</p>

<p style="margin-left:40px;">
	On Wed, May 18, we will publish our latest research about how fraudsters are leveraging <span style="color:#2980b9;">#deepfakes</span> to spoof identity verification on digital banks and crypto platforms <span style="color:#2980b9;">pic.twitter.com/xIKCdkpOd5</span>
</p>

<p style="margin-left:40px;">
	<br />
	— Sensity (@sensityai) <span style="color:#2980b9;">May 13, 2022</span>
</p>

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

<p>
	“Despite its widespread adoption, active liveness checks are weak against attacks by Deepfakes,” the report states. “The reason is that real-time Deepfakes can reproduce faithfully facial landmark movements of the attackers.”
</p>

<p>
	<br />
	Even with such a glaring vulnerability, KYC vendors do not appear concerned about the potential for misuse. In a statement to the <span style="color:#2980b9;">Verge</span>, which first covered the report on Wednesday, Francesco Cavalli, Sensity’s chief operating officer, claimed that vulnerable companies did not appear to care.
</p>

<p>
	<br />
	“We told them ‘look you’re vulnerable to this kind of attack,’ and they said ‘we do not care,’” he said. “We decided to publish it because we think, at a corporate level and in general, the public should be aware of these threats.”
</p>

<p>
	<br />
	With massive crypto heists becoming common, it seems likely such vulnerabilities will be exploited more and more by cybercriminals as deepfake technology becomes more realistic and easier to use.
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://www.dailydot.com/debug/biometric-checks-kyc-deepfake-vulnerability/" rel="external nofollow">Source</a></strong>
</p>

<p>
	 
</p>
]]></description><guid isPermaLink="false">5933</guid><pubDate>Wed, 18 May 2022 22:49:12 +0000</pubDate></item><item><title>Critical Jupiter WordPress plugin flaws let hackers take over sites</title><link>https://nsaneforums.com/news/security-privacy-news/critical-jupiter-wordpress-plugin-flaws-let-hackers-take-over-sites-r5927/</link><description><![CDATA[<p>
	WordPress security analysts have discovered a set of vulnerabilities impacting the Jupiter Theme and JupiterX Core plugins for WordPress, one of which is a critical privilege escalation flaw.
</p>

<p>
	 
</p>

<p>
	Jupiter is a powerful high-quality theme builder for WordPress sites used by over 90,000 popular blogs, online mags, and platforms that enjoy heavy user traffic.
</p>

<p>
	 
</p>

<p>
	The vulnerability, tracked as CVE-2022-1654, and given a CVSS score of 9.9 (critical), allows any authenticated user on a site using the vulnerable plugins to gain administrative privileges.
</p>

<p>
	 
</p>

<p>
	After exploiting the vulnerability, attackers may perform unlimited actions on the site, including altering its content, injecting malicious scripts, or completely deleting it.
</p>

<p>
	 
</p>

<p>
	The attacker can be a simple subscriber or customer on the site to exploit this vulnerability, so the attack doesn't have very restrictive prerequisites.
</p>

<h2>
	Discovery and fix
</h2>

<p>
	According to <a href="https://www.wordfence.com/blog/2022/05/critical-privilege-escalation-vulnerability-in-jupiter-and-jupiterx-premium-themes/" rel="external nofollow" target="_blank">Wordfence</a>, which discovered the flaw, the problem lies in a function named "uninstallTemplate," which resets the site after a theme is removed.
</p>

<p>
	 
</p>

<p>
	This function elevates the user's privileges to admin, so if a logged-in user sends an AJAX request with the action parameter to call the function, they will elevate their privileges without going through nonce or any other checks.
</p>

<p>
	 
</p>

<p>
	The Wordfence Threat Intelligence team discovered the issue on April 5, 2022, and notified the plugin developer with full technical details.
</p>

<p>
	 
</p>

<p>
	On April 28, 2022, the vendor released a partial fix for the impacted plugins. Then, on May 10, 2022, Artbees released another security update that addressed the issues thoroughly.
</p>

<p>
	 
</p>

<p>
	The versions impacted by CVE-2022-1654 are Jupiter Theme version 6.10.1 and older (fixed in 6.10.2), JupiterX Theme version 2.0.6 and older (fixed in 2.0.7), and JupiterX Core Plugin version 2.0.7 and older (fixed in 2.0.8).
</p>

<p>
	 
</p>

<p>
	The only way to address the security problems is to update to the latest available versions as soon as possible or deactivate the plugin and replace your site's theme.
</p>

<p>
	 
</p>

<p>
	During this security investigation, Wordfence discovered additional, albeit less severe flaws, that got fixed with the mentioned security updates on May 10, 2022. These flaws are:
</p>

<p>
	 
</p>

<ul>
	<li>
		CVE-2022-1656: Medium severity (CVSS score: 6.5) arbitrary plugin deactivation and settings modification.
	</li>
	<li>
		CVE-2022-1657: High severity (CVSS score: 8.1) path traversal and local file inclusion.
	</li>
	<li>
		CVE-2022-1658: Medium severity (CVSS score: 6.5) arbitrary plugin deletion.
	</li>
	<li>
		CVE-2022-1659: Medium severity (CVSS score: 6.3) information disclosure, modification, and denial of service.
	</li>
</ul>

<p>
	 
</p>

<p>
	These additional four vulnerabilities require authentication to be exploited, and they too are accessible to site subscribers and customers, but their consequences aren't as damaging.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.bleepingcomputer.com/news/security/critical-jupiter-wordpress-plugin-flaws-let-hackers-take-over-sites/" rel="external nofollow">Critical Jupiter WordPress plugin flaws let hackers take over sites</a>
</p>
]]></description><guid isPermaLink="false">5927</guid><pubDate>Wed, 18 May 2022 21:41:53 +0000</pubDate></item><item><title>Microsoft warns of brute-force attacks targeting MSSQL servers</title><link>https://nsaneforums.com/news/security-privacy-news/microsoft-warns-of-brute-force-attacks-targeting-mssql-servers-r5919/</link><description><![CDATA[<p>
	Microsoft warned of brute-forcing attacks targeting Internet-exposed and poorly secured Microsoft SQL Server (MSSQL) database servers using weak passwords.
</p>

<p>
	 
</p>

<p>
	While this isn't necessarily the first time MSSQL servers have been targeted in such attacks, Redmond says that the threat actors behind this recently observed campaign are using <a href="https://lolbas-project.github.io/lolbas/OtherMSBinaries/Sqlps/" rel="external nofollow" target="_blank">the legitimate sqlps.exe tool as a LOLBin</a> (short for living-off-the-land binary).
</p>

<p>
	 
</p>

<p>
	"The attackers achieve fileless persistence by spawning the sqlps.exe utility, a PowerShell wrapper for running SQL-built cmdlets, to run recon commands and change the start mode of the SQL service to LocalSystem," the Microsoft Security Intelligence team <a href="https://twitter.com/MsftSecIntel/status/1526680351858475008" rel="external nofollow" target="_blank">revealed</a>.
</p>

<p>
	 
</p>

<p>
	"The attackers also use sqlps.exe to create a new account that they add to the sysadmin role, enabling them to take full control of the SQL server. They then gain the ability to perform other actions, including deploying payloads like coin miners."
</p>

<p>
	 
</p>

<p>
	Using sqlps, a utility that comes included with the Microsoft SQL Server and allows loading SQL Server cmdlets, as a LOLBin, enables the attackers to execute PowerShell commands without worrying about defenders detecting their malicious actions.
</p>

<p>
	 
</p>

<p>
	It also helps ensure that they don't leave any traces to be found while analyzing their attacks since using sqlps is an effective way to bypass <a href="https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_logging_windows?view=powershell-7.2#enabling-script-block-logging" rel="external nofollow">Script Block Logging</a>, a PowerShell capability that would otherwise log cmdlet operations to the Windows event log.
</p>

<p>
	 
</p>

<p>
	<img alt="Microsoft%20MSSQL%20brute-force%20attack" class="ipsImage" data-ratio="74.21" height="423" width="570" src="https://www.bleepstatic.com/images/news/u/1109292/2022/Microsoft%20MSSQL%20brute-force%20attacks.jpg">
</p>

<p>
	 
</p>

<p>
	Similar attacks against MSSQL servers were reported in March when they were targeted to <a href="https://www.bleepingcomputer.com/news/security/unsecured-microsoft-sql-mysql-servers-hit-by-gh0stcringe-malware/" target="_blank" rel="external nofollow">deploy Gh0stCringe (aka CirenegRAT) remote access trojans</a> (RATs).
</p>

<p>
	 
</p>

<p>
	In a previous campaign from February, threat actors compromised MSSQL servers to <a href="https://www.bleepingcomputer.com/news/security/vulnerable-microsoft-sql-servers-targeted-with-cobalt-strike/" target="_blank" rel="external nofollow">drop Cobalt Strike beacons</a> using the Microsoft SQL xp_cmdshell command.
</p>

<p>
	 
</p>

<p>
	However, for years, MSSQL servers have been targeted as part of massive campaigns where malicious actors attempt to hijack thousands of vulnerable servers daily for various end goals.
</p>

<p>
	 
</p>

<p>
	In one such series of attacks (dubbed <a href="https://www.bleepingcomputer.com/news/security/hacker-group-backdoors-thousands-of-microsoft-sql-servers-daily/" target="_blank" rel="external nofollow">Vollgar</a>) spanning almost two years, threat actors backdoored between 2,000 and 3,000 servers with RATs after brute-forcing publicly exposed servers to deploy Monero (XMR) and Vollar (VDS) cryptominers.
</p>

<p>
	 
</p>

<p>
	To defend their MSSQL servers against such attacks, admins are advised not to expose them to the Interne, use a strong admin password that can't be guessed or brute-forced, and place the server behind a firewall.
</p>

<p>
	 
</p>

<p>
	Admins are advised not to expose them to the Internet to defend their MSSQL servers against such attacks.
</p>

<p>
	 
</p>

<p>
	You should also:
</p>

<p>
	 
</p>

<ul>
	<li>
		use a strong admin password that can't be guessed or brute-forced easily and place the server behind a firewall
	</li>
	<li>
		enable logging to monitor for suspicious or unexpected activity or recurring login attempts
	</li>
	<li>
		apply the latest security updates to decrease the attack surface and block attacks leveraging exploits that target known vulnerabilities
	</li>
</ul>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.bleepingcomputer.com/news/security/microsoft-warns-of-brute-force-attacks-targeting-mssql-servers/" rel="external nofollow">Microsoft warns of brute-force attacks targeting MSSQL servers</a>
</p>
]]></description><guid isPermaLink="false">5919</guid><pubDate>Wed, 18 May 2022 21:20:53 +0000</pubDate></item><item><title>When Your Smart ID Card Reader Comes With Malware</title><link>https://nsaneforums.com/news/security-privacy-news/when-your-smart-id-card-reader-comes-with-malware-r5911/</link><description><![CDATA[<p>
	Millions of U.S. government employees and contractors have been issued a secure smart ID card that enables physical access to buildings and controlled spaces, and provides access to government computer networks and systems at the cardholder’s appropriate security level. But many government employees aren’t issued an approved card reader device that lets them use these cards at home or remotely, and so turn to low-cost readers they find online. What could go wrong? Here’s one example.
</p>

<p>
	 
</p>

<p>
	<img alt="caccard.png" class="ipsImage" data-ratio="30.97" height="220" width="720" src="https://krebsonsecurity.com/wp-content/uploads/2022/05/caccard.png">
</p>

<div id="attachment_59847">
	<p id="caption-attachment-59847">
		A sample Common Access Card (CAC). Image: Cac.mil.
	</p>

	<p>
		 
	</p>
</div>

<p>
	KrebsOnSecurity recently heard from a reader — we’ll call him “Mark” because he wasn’t authorized to speak to the press — who works in IT for a major government defense contractor and was issued a Personal Identity Verification (PIV) government smart card designed for civilian employees. Not having a smart card reader at home and lacking any obvious guidance from his co-workers on how to get one, Mark opted to purchase a $15 reader from Amazon that said it was made to handle U.S. government smart cards.
</p>

<p>
	 
</p>

<p>
	The USB-based device Mark settled on is the first result that currently comes up one when searches on Amazon.com for “PIV card reader.” The card reader Mark bought was sold by a company called Saicoo, whose sponsored Amazon listing advertises a “DOD Military USB Common Access Card (CAC) Reader” and has more than 11,700 mostly positive ratings.
</p>

<p>
	 
</p>

<p>
	The <a href="https://www.cac.mil/common-access-card/" rel="external nofollow" target="_blank">Common Access Card</a> (CAC) is the standard identification for active duty uniformed service personnel, selected reserve, DoD civilian employees, and eligible contractor personnel. It is the principal card used to enable physical access to buildings and controlled spaces, and provides access to DoD computer networks and systems.
</p>

<p>
	 
</p>

<p>
	Mark said when he received the reader and plugged it into his Windows 10 PC, the operating system complained that the device’s hardware drivers weren’t functioning properly. Windows suggested consulting the vendor’s website for newer drivers.
</p>

<p>
	 
</p>

<p>
	<img alt="saicoo-768x438.png" class="ipsImage" data-ratio="60.69" height="410" width="720" src="https://krebsonsecurity.com/wp-content/uploads/2022/05/saicoo-768x438.png">
</p>

<div id="attachment_59848">
	<p id="caption-attachment-59848">
		The Saicoo smart card reader that Mark purchased. Image: Amazon.com
	</p>

	<p>
		 
	</p>
</div>

<p>
	So Mark went to the website mentioned on Saicoo’s packaging and found a ZIP file containing drivers for Linux, Mac OS and Windows:
</p>

<p>
	 
</p>

<p>
	<img alt="saicoodrivers.png" class="ipsImage" data-ratio="75.10" height="540" width="561" src="https://krebsonsecurity.com/wp-content/uploads/2022/05/saicoodrivers.png">
</p>

<div id="attachment_59852">
	<p id="caption-attachment-59852">
		Image: Saicoo
	</p>

	<p>
		 
	</p>
</div>

<p>
	Out of an abundance of caution, Mark submitted Saicoo’s drivers file to <a href="https://www.virustotal.com" rel="external nofollow" target="_blank">Virustotal.com</a>, which simultaneously scans any shared files with more than five dozen antivirus and security products. Virustotal reported that some 43 different security tools detected the Saicoo drivers as malicious. The consensus seems to be that the ZIP file currently harbors a malware threat known as <a href="https://www.trendmicro.com/vinfo/us/threat-encyclopedia/malware/trojan.win32.ramnit.a" rel="external nofollow" target="_blank">Ramnit</a>, a fairly common but dangerous trojan horse that spreads by appending itself to other files.
</p>

<p>
	 
</p>

<p>
	<img alt="saicooramnit-768x551.png" class="ipsImage" data-ratio="75.10" height="516" width="720" src="https://krebsonsecurity.com/wp-content/uploads/2022/05/saicooramnit-768x551.png">
</p>

<div id="attachment_59849">
	<p id="caption-attachment-59849">
		Image: Virustotal.com
	</p>

	<p>
		 
	</p>
</div>

<p>
	Ramnit is a well-known and older threat — first surfacing more than a decade ago — but it has evolved over the years and is <a href="https://www.cybereason.com/blog/research/banking-trojan-delivered-by-lolbins-ramnit-trojan" rel="external nofollow" target="_blank">still employed in more sophisticated data exfiltration attacks</a>. Amazon said in a written statement that it was investigating the reports.
</p>

<p>
	 
</p>

<p>
	“Seems like a potentially significant national security risk, considering that many end users might have elevated clearance levels who are using PIV cards for secure access,” Mark said.
</p>

<p>
	 
</p>

<p>
	Mark said he contacted Saicoo about their website serving up malware, and received a response saying the company’s newest hardware did not require any additional drivers. He said Saicoo did not address his concern that the driver package on its website was bundled with malware.
</p>

<p>
	 
</p>

<p>
	In response to KrebsOnSecurity’s request for comment, Saicoo sent a somewhat less reassuring reply.
</p>

<p>
	 
</p>

<p>
	“From the details you offered, issue may probably caused by your computer security defense system as it seems not recognized our rarely used driver &amp; detected it as malicious or a virus,” Saicoo’s support team wrote in an email.
</p>

<p>
	 
</p>

<p>
	“Actually, it’s not carrying any virus as you can trust us, if you have our reader on hand, please just ignore it and continue the installation steps,” the message continued. “When driver installed, this message will vanish out of sight. Don’t worry.”
</p>

<p>
	 
</p>

<p>
	<img alt="saicooresponse.png" class="ipsImage" data-ratio="79.71" height="487" width="611" src="https://krebsonsecurity.com/wp-content/uploads/2022/05/saicooresponse.png">
</p>

<div id="attachment_59851">
	<p id="caption-attachment-59851">
		Saicoo’s response to KrebsOnSecurity.
	</p>

	<p>
		 
	</p>
</div>

<p>
	The trouble with Saicoo’s apparently infected drivers may be little more than a case of a technology company having their site hacked and responding poorly. Will Dormann, a vulnerability analyst at CERT/CC, <a href="https://twitter.com/wdormann/status/1526306527237267458" rel="external nofollow" target="_blank">wrote</a> on Twitter that the executable files (.exe) in the Saicoo drivers ZIP file were not altered by the Ramnit malware — only the included HTML files.
</p>

<p>
	 
</p>

<p>
	Dormann said it’s bad enough that searching for device drivers online is one of the riskiest activities one can undertake online.
</p>

<p>
	 
</p>

<p>
	“Doing a web search for drivers is a VERY dangerous (in terms of legit/malicious hit ratio) search to perform, based on results of any time I’ve tried to do it,” Dormann <a href="https://twitter.com/wdormann/status/1526404312137703424" rel="external nofollow" target="_blank">added</a>. “Combine that with the apparent due diligence of the vendor outlined here, and well, it ain’t a pretty picture.”
</p>

<p>
	 
</p>

<p>
	But by all accounts, the potential attack surface here is enormous, as many federal employees clearly will purchase these readers from a myriad of online vendors when the need arises. Saicoo’s product listings, for example, are replete with <a href="https://www.amazon.com/hz/reviews-render/lighthouse/B00CMKS2DI?filterByKeyword=smart+card&amp;pageNumber=1" rel="external nofollow" target="_blank">comments</a> from customers who self-state that they work at a federal agency (and several who reported problems installing drivers).
</p>

<p>
	 
</p>

<p>
	A <a href="https://twitter.com/briankrebs/status/1526297731748216833" rel="external nofollow" target="_blank">thread about Mark’s experience on Twitter</a> generated a strong response from some of my followers, many of whom apparently work for the U.S. government in some capacity and have government-issued CAC or PIV cards.
</p>

<p>
	 
</p>

<p>
	<img alt="saicootweet.png" class="ipsImage" data-ratio="71.55" height="415" width="580" src="https://krebsonsecurity.com/wp-content/uploads/2022/05/saicootweet.png">
</p>

<p>
	 
</p>

<p>
	Two things emerged clearly from that conversation. The first was general confusion about whether the U.S. government has any sort of list of approved vendors. It does. The General Services Administration (GSA), the agency which handles procurement for federal civilian agencies, maintains <a href="https://www.idmanagement.gov/approved-products-list-pacs-products/" rel="external nofollow" target="_blank">a list of approved card reader vendors at idmanagement.gov</a> (Saicoo is not on that list). [Thanks to <a href="https://twitter.com/MetaBiometrics/status/1526662768476270597" rel="external nofollow" target="_blank">@MetaBiometrics</a> and <a href="https://twitter.com/shugenja/status/1526613826858254338" rel="external nofollow" target="_blank">@shugenja</a> for the link!]
</p>

<p>
	 
</p>

<p>
	The other theme that ran through the Twitter discussion was the reality that many people find buying off-the-shelf readers more expedient than going through the GSA’s official procurement process, whether it’s because they were never issued one or the reader they were using simply no longer worked or was lost and they needed another one quickly.
</p>

<p>
	 
</p>

<p>
	“Almost every officer and NCO [non-commissioned officer] I know in the Reserve Component has a CAC reader they bought because they had to get to their DOD email at home and they’ve never been issued a laptop or a CAC reader,” <a href="https://twitter.com/dixondaver/with_replies" rel="external nofollow" target="_blank">said</a> David Dixon, an Army veteran and author who lives in Northern Virginia. “When your boss tells you to check your email at home and you’re in the National Guard and you live 2 hours from the nearest [non-classified military network installation], what do you think is going to happen?”
</p>

<p>
	 
</p>

<p>
	Interestingly, anyone asking on Twitter about how to navigate purchasing the right smart card reader and getting it all to work properly is invariably steered toward <a href="https://www.militarycac.com" rel="external nofollow" target="_blank">militarycac.com</a>. The website is maintained by Michael Danberry, a decorated and retired Army veteran who launched the site in 2008 (its text and link-heavy design very much takes one back to that era of the Internet and webpages in general). His site has even been <a href="https://militarycac.com/PDFs/EEmail.pdf" rel="external nofollow" target="_blank">officially recommended by the Army</a> (PDF). Mark shared emails showing Saicoo itself recommends militarycac.com.
</p>

<p>
	 
</p>

<p>
	<img alt="militarycac-768x766.png" class="ipsImage" data-ratio="75.10" height="540" width="541" src="https://krebsonsecurity.com/wp-content/uploads/2022/05/militarycac-768x766.png">
</p>

<div id="attachment_59853">
	<p id="caption-attachment-59853">
		Image: Militarycac.com.
	</p>

	<p>
		 
	</p>
</div>

<p>
	“The Army Reserve started using CAC logon in May 2006,” Danberry wrote on his <a href="https://militarycac.com/about.htm" rel="external nofollow" target="_blank">“About” page</a>. “I [once again] became the ‘Go to guy’ for my Army Reserve Center and Minnesota. I thought Why stop there? I could use my website and knowledge of CAC and share it with you.”
</p>

<p>
	 
</p>

<p>
	Danberry did not respond to requests for an interview — no doubt because he’s busy doing tech support for the federal government. The friendly message on Danberry’s voicemail instructs support-needing callers to leave detailed information about the issue they’re having with CAC/PIV card readers.
</p>

<p>
	 
</p>

<p>
	Dixon said Danberry has “done more to keep the Army running and connected than all the G6s [Army Chief Information Officers] put together.”
</p>

<p>
	 
</p>

<p>
	In many ways, Mr. Danberry is the equivalent of that little known software developer whose tiny open-sourced code project ends up becoming widely adopted and eventually folded into the fabric of the Internet.  I wonder if he ever imagined 15 years ago that his website would one day become “critical infrastructure” for Uncle Sam?
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://krebsonsecurity.com/2022/05/when-your-smart-id-card-reader-comes-with-malware/" rel="external nofollow">When Your Smart ID Card Reader Comes With Malware</a>
</p>
]]></description><guid isPermaLink="false">5911</guid><pubDate>Wed, 18 May 2022 06:39:49 +0000</pubDate></item><item><title>NVIDIA fixes ten vulnerabilities in Windows GPU display drivers</title><link>https://nsaneforums.com/news/security-privacy-news/nvidia-fixes-ten-vulnerabilities-in-windows-gpu-display-drivers-r5905/</link><description><![CDATA[<p>
	NVIDIA has released a security update for a wide range of graphics card models, addressing four high-severity and six medium-severity vulnerabilities in its GPU drivers.
</p>

<p>
	 
</p>

<p>
	The security update fixes vulnerabilities that can lead to denial of service, information disclosure, elevation of privileges, code execution, etc.
</p>

<p>
	 
</p>

<p>
	The updates have been made available for Tesla, RTX/Quadro, NVS, Studio, and GeForce software products, covering driver branches R450, R470, and R510.
</p>

<p>
	 
</p>

<p>
	<img alt="drivers.png" class="ipsImage" data-ratio="19.03" height="110" width="720" src="https://www.bleepstatic.com/images/news/u/1220909/Tables/drivers.png">
</p>

<div>
	<div>
		CVEs fixed for each driver branch (NVIDIA)
	</div>

	<p>
		 
	</p>
</div>

<p>
	Interestingly, apart from the current and recent product lines that are actively supported, NVIDIA’s latest release also covers GTX 600 and GTX 700 Kepler-series cards, whose support ended in October 2021.
</p>

<p>
	 
</p>

<p>
	The GPU maker previously <a href="https://nvidia.custhelp.com/app/answers/detail/a_id/5202" rel="external nofollow" target="_blank">promised</a> to continue providing critical security updates for these products until September 2024, and this driver update honors that promise.
</p>

<p>
	 
</p>

<p>
	The four high-severity flaws fixed this month are:
</p>

<p>
	 
</p>

<ul>
	<li>
		CVE-2022-28181 (CVSS v3 score: 8.5) - Out-of-bounds write in the kernel mode layer caused by a specially crafted shader sent over the network, potentially leading to code execution, denial of service, escalation of privileges, information disclosure, and data tampering.
	</li>
	<li>
		CVE-2022-28182 (CVSS v3 score: 8.5) – Flaw in DirectX11 user mode driver allowing an unauthorized attacker to send a specially crafted shared over the network and cause denial of service, escalation of privileges, information disclosure, and data tampering.
	</li>
	<li>
		CVE-2022-28183 (CVSS v3 score: 7.7) - Vulnerability in the kernel mode layer, where an unprivileged regular user can cause an out-of-bounds read, which may lead to denial of service and information disclosure.
	</li>
	<li>
		CVE-2022-28184 (CVSS v3 score: 7.1) - Vulnerability in the kernel mode layer (nvlddmkm.sys) handler for DxgkDdiEscape, where a regular unprivileged user can access administrator-privileged registers, which may lead to denial of service, information disclosure, and data tampering.
	</li>
</ul>

<p>
	 
</p>

<p>
	These vulnerabilities require low privileges and no user interaction, so they could be incorporated into malware, allowing attackers to execute commands with higher privileges.
</p>

<p>
	 
</p>

<p>
	The first two are exploitable over the network, while the other two are exploited with local access, which could still be helpful for a malware infecting a system with low privileges.
</p>

<p>
	 
</p>

<p>
	Cisco Talos, which discovered CVE-2022-28181 and CVE-2022-28182, has also <a href="https://blog.talosintelligence.com/2022/05/vuln-spotlight-nvidia-driver-memory.html" rel="external nofollow" target="_blank">published a post today</a> detailing how they triggered the memory corruption flaws by supplying a malformed compute shader.
</p>

<p>
	 
</p>

<p>
	As threat actors can use a malicious shader in the browser by WebAssembly and WebGL, Talos warns that threat actors may be able to trigger this remotely.
</p>

<p>
	 
</p>

<div>
	<p>
		"A specially-crafted executable/shader file can lead to memory corruption. This vulnerability potentially could be triggered from guest machines running virtualization environments (i.e. VMware, qemu, VirtualBox etc.) in order to perform guest-to-host escape. Theoretically this vulnerability could be also triggered from web browser using webGL and webassembly," <a href="https://talosintelligence.com/vulnerability_reports/TALOS-2021-1435" rel="external nofollow" target="_blank">explains Talos</a> regarding CVE-2022-28181.
	</p>

	<p>
		 
	</p>
</div>

<p>
	For more details on all of the fixes and every software and hardware product covered this month, check out <a href="https://nvidia.custhelp.com/app/answers/detail/a_id/5353" rel="external nofollow" target="_blank">NVIDIA's security bulletin</a>.
</p>

<p>
	 
</p>

<p>
	All users are advised to apply the released security updates as soon as possible. Users can download the latest driver for their GPU model from <a href="https://www.nvidia.com/Download/index.aspx" rel="external nofollow" target="_blank">NVIDIA’s download central</a> section, where they can select the specific product and OS they are using.
</p>

<p>
	 
</p>

<p>
	The updates can also be applied through NVIDIA’s GeForce Experience suite. 
</p>

<p>
	 
</p>

<p>
	However, if you don’t specifically need the software to save gaming profiles or use its streaming features, we recommend against using it as it introduces unnecessary security risks and the use of resources.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.bleepingcomputer.com/news/security/nvidia-fixes-ten-vulnerabilities-in-windows-gpu-display-drivers/" rel="external nofollow">NVIDIA fixes ten vulnerabilities in Windows GPU display drivers</a>
</p>
]]></description><guid isPermaLink="false">5905</guid><pubDate>Tue, 17 May 2022 22:54:48 +0000</pubDate></item><item><title>Hackers can steal your Tesla Model 3, Y using new Bluetooth attack</title><link>https://nsaneforums.com/news/security-privacy-news/hackers-can-steal-your-tesla-model-3-y-using-new-bluetooth-attack-r5897/</link><description><![CDATA[<p>
	Security researchers at the NCC Group have developed a tool to carry out a Bluetooth Low Energy (BLE) relay attack that bypasses all existing protections to authenticate on target devices.
</p>

<p>
	 
</p>

<p>
	BLE technology is used in a wide spectrum of products, from electronics like laptops, mobile phones, smart locks, and building access control systems to cars like Tesla Model 3 and Model Y.
</p>

<p>
	 
</p>

<p>
	Pushing out fixes for this security problem is complicated, and even if the response is immediate and coordinated, it would still take a long time for the updates to trickle to impacted products.
</p>

<h2>
	How the attack works
</h2>

<p>
	In this type of relay attacks, an adversary intercepts and can manipulate the communication between two parties, such as the key fob that unlocks and operates the car and the vehicle itself.
</p>

<p>
	 
</p>

<p>
	This places the attacker in the middle of the two ends of the communication, allowing them to relay the signal as if they were standing right next to the car.
</p>

<p>
	 
</p>

<p>
	Products that rely on BLE for proximity-based authentication protect against known relay attack methods by introducing checks based on precise amounts of latency and also link-layer encryption.
</p>

<p>
	 
</p>

<p>
	NCC Group has developed a tool that operates at the link layer and with a latency of 8ms that is within the accepted 30ms range of the GATT (Generic ATTribute Profile) response.
</p>

<p>
	 
</p>

<p style="margin-left: 40px;">
	“Since this relay attack operates at the link layer, it can forward encrypted link layer PDUs. It is also capable of detecting encrypted changes to connection parameters (such as connection interval, WinOffset, PHY mode, and channel map) and continuing to relay connections through parameter changes. Thus, neither link layer encryption nor encrypted connection parameter changes are defences against this type of relay attack.” - <a href="https://research.nccgroup.com/2022/05/15/technical-advisory-ble-proximity-authentication-vulnerable-to-relay-attacks/" rel="external nofollow" target="_blank">NCC Group</a>
</p>

<p>
	 
</p>

<p>
	According to Sultan Qasim Khan, a senior security consultant at NCC Group, it takes about ten seconds to run the attack and it can be repeated endlessly.
</p>

<p>
	 
</p>

<p>
	Both the Tesla Model 3 and Model Y use a BLE-based entry system, so NCC’s attack could be used to unlock and start the cars.
</p>

<p>
	 
</p>

<p>
	While technical details behind this new BLE relay attack have not been published, the researchers say that they tested the method on a Tesla Model 3 from 2020 using an iPhone 13 mini running version 4.6.1-891 of the Tesla app.
</p>

<p>
	 
</p>

<p style="margin-left: 40px;">
	"NCC Group was able to use this newly developed relay attack tool to unlock and operate the vehicle while the iPhone was outside the BLE range of the vehicle" - <a href="https://research.nccgroup.com/2022/05/15/technical-advisory-tesla-ble-phone-as-a-key-passive-entry-vulnerable-to-relay-attacks/" rel="external nofollow" target="_blank">NCC Group</a>
</p>

<p>
	 
</p>

<p>
	During the experiment, they were able to deliver to the car the communication from the iPhone via two relay devices, one placed seven meters away from the phone, the other sitting three meters from the car. The distance between the phone and the car was 25 meters.
</p>

<p>
	 
</p>

<p>
	The experiment was also replicated successfully on a Tesla Model Y from 2021, since it uses similar technologies. Below is a demonstration of the attack:
</p>

<p>
	 
</p>

<div class="ipsEmbeddedVideo" contenteditable="false">
	<div>
		<iframe allow="autoplay; fullscreen; picture-in-picture" allowfullscreen="" frameborder="0" height="240" src="https://player.vimeo.com/video/710798583?h=f90e694074&amp;app_id=122963" title="Hacking Tesla Model Y using new BLE relay attack" width="426"></iframe>
	</div>
</div>

<p>
	 
</p>

<p>
	These findings were reported to Tesla on April 21st. A week later, the company responded by saying "that relay attacks are a known limitation of the passive entry system."
</p>

<p>
	 
</p>

<p>
	The researchers also notified Spectrum Brands, the parent company behind Kwikset (makers of the Kevo line of smart locks).
</p>

<h2>
	What can be done
</h2>

<p>
	NCC Group's research on this new proximity attack is available in three separate advisories, <a href="https://research.nccgroup.com/2022/05/15/technical-advisory-ble-proximity-authentication-vulnerable-to-relay-attacks/" rel="external nofollow" target="_blank">for BLE</a> in general, one <a href="https://research.nccgroup.com/2022/05/15/technical-advisory-tesla-ble-phone-as-a-key-passive-entry-vulnerable-to-relay-attacks/" rel="external nofollow" target="_blank">for Tesla cars</a>, and another <a href="https://research.nccgroup.com/2022/05/15/technical-advisory-kwikset-weiser-ble-proximity-authentication-in-kevo-smart-locks-vulnerable-to-relay-attacks/" rel="external nofollow" target="_blank">for Kwikset/Weiser</a> smart locks, each illustrating the issue on the tested devices and how it affects a larger set of products from other vendors.
</p>

<p>
	 
</p>

<p>
	The Bluetooth Core Specification warns device makers about relay attacks and notes that proximity-based authentication shouldn’t be used for valuable assets.
</p>

<p>
	 
</p>

<p>
	This leaves users with few possibilities, one being to disable it, if possible, and switch to an alternative authentication method that requires user interaction.
</p>

<p>
	 
</p>

<p>
	Another solution would be for makers to adopt a distance bounding solution such as UWB (ultra-wideband) radio technology instead of Bluetooth.
</p>

<p>
	 
</p>

<p>
	Tesla owners are encouraged to use the ‘PIN to Drive’ feature, so even if their car is unlocked, at least the attacker won't be able to drive away with it.
</p>

<p>
	 
</p>

<p>
	Additionally, disabling the passive entry functionality in the mobile app when the phone is stationary would make the relay attack impossible to carry out.
</p>

<p>
	 
</p>

<p>
	If none of the above is possible on your device, keep in mind the possibility of relay attacks and implement additional protection measures accordingly.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.bleepingcomputer.com/news/security/hackers-can-steal-your-tesla-model-3-y-using-new-bluetooth-attack/" rel="external nofollow">Hackers can steal your Tesla Model 3, Y using new Bluetooth attack</a>
</p>
]]></description><guid isPermaLink="false">5897</guid><pubDate>Tue, 17 May 2022 22:24:27 +0000</pubDate></item><item><title>Tech giants pledge $30M to boost open source software security</title><link>https://nsaneforums.com/news/security-privacy-news/tech-giants-pledge-30m-to-boost-open-source-software-security-r5871/</link><description><![CDATA[<p>
	Tech giants including Amazon, Google and Microsoft have pledged millions of dollars to bolster the security of open source software.
</p>

<p>
	<br />
	The pledge was made during a meeting in Washington DC last week, which saw open source leaders, headed up by the Linux Foundation and the Open Source Software Security Foundation (OpenSSF), share their plans for enhancing the security of the software supply chain.
</p>

<p>
	<br />
	The industry gathering, which was attended by government leaders and over 90 executives from 37 companies, is a follow up to the historic White House summit in January convened in the wake of the Log4Shell zero-day vulnerability in January. The flaw affected the Apache’s Log4j library, a ubiquitous logging software, which put millions of devices worldwide at risk. But according to a study from March, almost a third of instances remain unpatched.
</p>

<p>
	<br />
	During last week’s meeting, companies including Amazon, Ericsson, Google, Intel, Microsoft, and VMware pledged a collective $30 million to fund a 10-point plan that aims to boost the security of open source software. Designed by the Linux Foundation and OpenSSF, the first-of-its-kind initiative aims to secure the production of open source code, improve vulnerability detection and remediation, and shorten patching response time. This will include the creation of a software bill of materials, known as an SBOM, allowing companies to gain visibility of the software that they are using in their tech stack.
</p>

<p>
	<br />
	The so-called Software Supply Chain Security Mobilization Plan also calls for security education for everyone working in the open source community, the elimination of non-memory safe programming languages like C+ and COBOL, and for annual third-party code reviews of 200 of the most critical open source software components.
</p>

<p>
	<br />
	The ultimate goal is to find and fix vulnerabilities like Log4Shell faster in an effort to better protect the U.S. from malicious cyberattacks that exploit insecure software platforms and devices.
</p>

<p>
	<br />
	“What we are doing here together is converging a set of ideas and principles of what is broken out there and what we can do to fix it,” said Brian Behlendorf, executive director of OpenSSF. “The plan we have put together represents the 10 flags in the ground as the base for getting started. We are eager to get further input and commitments that move us from plan to action."
</p>

<p>
	<br />
	Google Cloud also announced during the summit that it would launch an open source maintenance crew, a team of dedicated engineers that will work with upstream maintainers in order to boost the security of various open source projects.
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://www.yahoo.com/lifestyle/tech-giants-pledge-30m-boost-135827247.html" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">5871</guid><pubDate>Mon, 16 May 2022 14:35:39 +0000</pubDate></item><item><title>Researchers Find Potential Way to Run Malware on iPhone Even When it's OFF</title><link>https://nsaneforums.com/news/security-privacy-news/researchers-find-potential-way-to-run-malware-on-iphone-even-when-its-off-r5869/</link><description><![CDATA[<p>
	A first-of-its-kind security analysis of iOS Find My function has identified a novel attack surface that makes it possible to tamper with the firmware and load malware onto a Bluetooth chip that's executed while an iPhone is "off."
</p>

<p>
	<br />
	The mechanism takes advantage of the fact that wireless chips related to Bluetooth, Near-field communication (NFC), and ultra-wideband (UWB) continue to operate while iOS is shut down when entering a "power reserve" Low Power Mode (LPM).
</p>

<p>
	<br />
	While this is done so as to enable features like Find My and facilitate Express Card transactions, all the three wireless chips have direct access to the secure element, academics from the Secure Mobile Networking Lab (SEEMOO) at the Technical University of Darmstadt said in a paper.
</p>

<p>
	<br />
	"The Bluetooth and UWB chips are hardwired to the Secure Element (SE) in the NFC chip, storing secrets that should be available in LPM," the researchers said.
</p>

<p>
	<br />
	"Since LPM support is implemented in hardware, it cannot be removed by changing software components. As a result, on modern iPhones, wireless chips can no longer be trusted to be turned off after shutdown. This poses a new threat model."
</p>

<p>
	<br />
	The findings are set to be presented at the ACM Conference on Security and Privacy in Wireless and Mobile Networks (WiSec 2022) this week.
</p>

<p>
	<br />
	The LPM features, newly introduced last year with iOS 15, make it possible to track lost devices using the Find My network even when run out of battery power or have been shut off. Current devices with Ultra-wideband support include iPhone 11, iPhone 12, and iPhone 13.
</p>

<p>
	<br />
	A message displayed when turning off iPhones reads thus: "iPhone remains findable after power off. Find My helps you locate this iPhone when it is lost or stolen, even when it is in power reserve mode or when powered off."
</p>

<p>
	 
</p>

<p style="text-align:center;">
	<img alt="nfc.jpg" class="ipsImage" data-ratio="46.81" height="334" width="720" src="https://thehackernews.com/new-images/img/b/R29vZ2xl/AVvXsEj6tqK-RvhIiwBt216E4fw1a1aAfyJqwbNorxk-4x3Fr6X6TKVgttVNzatBteoeG9zNULTPIuF6xR_dp49sY5VSSdhSyY5EAL-qS0GE2Pvkw_abG0BAz02QHIuEHj2DOp1HRpjuUfTd82fjul_y67JquQ2FOHU0WTLFO9mQqM3xcgL7VcldNe_zCO0I/s728-e1000/nfc.jpg" />
</p>

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

<p>
	Calling the current LPM implementation "opaque," the researchers not only sometimes observed failures when initializing Find My advertisements during power off, effectively contradicting the aforementioned message, they also found that the Bluetooth firmware is neither signed nor encrypted.
</p>

<p>
	<br />
	By taking advantage of this loophole, an adversary with privileged access can create malware that's capable of being executed on an iPhone Bluetooth chip even when it's powered off.
</p>

<p>
	<br />
	However, for such a firmware compromise to happen, the attacker must be able to communicate to the firmware via the operating system, modify the firmware image, or gain code execution on an LPM-enabled chip over-the-air by exploiting flaws such as BrakTooth.
</p>

<p>
	<br />
	Put differently, the idea is to alter the LPM application thread to embed malware, such as those that could alert the malicious actor of a victim's Find My Bluetooth broadcasts, enabling the threat actor to keep remote tabs on the target.
</p>

<p>
	<br />
	"Instead of changing existing functionality, they could also add completely new features," SEEMOO researchers pointed out, adding they responsibly disclosed all the issues to Apple, but that the tech giant "had no feedback."
</p>

<p>
	<br />
	With LPM-related features taking a more stealthier approach to carrying out its intended use cases, SEEMOO called on Apple to include a hardware-based switch to disconnect the battery so as to alleviate any surveillance concerns that could arise out of firmware-level attacks.
</p>

<p>
	<br />
	"Since LPM support is based on the iPhone's hardware, it cannot be removed with system updates," the researchers said. "Thus, it has a long-lasting effect on the overall iOS security model."
</p>

<p>
	<br />
	"Design of LPM features seems to be mostly driven by functionality, without considering threats outside of the intended applications. Find My after power off turns shutdown iPhones into tracking devices by design, and the implementation within the Bluetooth firmware is not secured against manipulation."
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://thehackernews.com/2022/05/researchers-find-way-to-run-malware-on.html" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">5869</guid><pubDate>Mon, 16 May 2022 14:24:57 +0000</pubDate></item><item><title>Some top 100,000 websites collect everything you type&#x2014;before you hit submit</title><link>https://nsaneforums.com/news/security-privacy-news/some-top-100000-websites-collect-everything-you-type%E2%80%94before-you-hit-submit-r5854/</link><description><![CDATA[<h3>
	A number of websites include keyloggers that covertly snag your keyboard inputs.
</h3>

<p>
	 
</p>

<div itemprop="articleBody">
	
	<p>
		When you sign up for a newsletter, make a hotel reservation, or check out online, you probably take for granted that if you mistype your email address three times or change your mind and X out of the page, it doesn't matter. Nothing actually happens until you hit the Submit button, right? Well, maybe not. As with so many assumptions about the web, this isn't always the case, according to <a data-event-click='{"element":"ExternalLink","outgoingURL":"https://homes.esat.kuleuven.be/~asenol/leaky-forms/"}' data-offer-url="https://homes.esat.kuleuven.be/~asenol/leaky-forms/" data-uri="5b37e3854c893ef43b7f10fc81771274" href="https://homes.esat.kuleuven.be/~asenol/leaky-forms/" rel="external nofollow" target="_blank">new research</a>: A surprising number of websites are collecting some or all of your data as you type it into a digital form.
	</p>

	<p>
		 
	</p>

	<p>
		Researchers from KU Leuven, Radboud University, and University of Lausanne crawled and analyzed the top 100,000 websites, looking at scenarios in which a user is visiting a site while in the European Union and visiting a site from the United States. They found that 1,844 websites gathered an EU user's email address without their consent, and a staggering 2,950 logged a US user's email in some form. Many of the sites seemingly do not intend to conduct the data-logging but incorporate third-party marketing and analytics services that cause the behavior.
	</p>

	<p>
		 
	</p>

	<p>
		After specifically crawling sites for password leaks in May 2021, the researchers also found 52 websites in which third parties, including the Russian tech giant Yandex, were incidentally collecting password data before submission. The group disclosed their findings to these sites, and all 52 instances have since been resolved.
	</p>

	<p>
		 
	</p>

	<p>
		“If there’s a Submit button on a form, the reasonable expectation is that it does something—that it will submit your data when you click it,” says Güneş Acar, a professor and researcher in Radboud University's digital security group and one of the leaders of the study. “We were super surprised by these results. We thought maybe we were going to find a few hundred websites where your email is collected before you submit, but this exceeded our expectations by far.”
	</p>

	<p>
		 
	</p>

	<p>
		The researchers, who will <a data-event-click='{"element":"ExternalLink","outgoingURL":"https://www.usenix.org/conference/usenixsecurity22/presentation/senol"}' data-offer-url="https://www.usenix.org/conference/usenixsecurity22/presentation/senol" data-uri="1e645a9cb25814934d5611c3a818864f" href="https://www.usenix.org/conference/usenixsecurity22/presentation/senol" rel="external nofollow" target="_blank">present</a> their findings at the Usenix security conference in August, say they were inspired to investigate what they call “leaky forms” by media reports, <a data-event-click='{"element":"ExternalLink","outgoingURL":"https://gizmodo.com/before-you-hit-submit-this-company-has-already-logge-1795906081"}' data-offer-url="https://gizmodo.com/before-you-hit-submit-this-company-has-already-logge-1795906081" data-uri="dea0991fccbcf1fc41bcf836feae99fd" href="https://gizmodo.com/before-you-hit-submit-this-company-has-already-logge-1795906081" rel="external nofollow" target="_blank">particularly</a> from <a data-event-click='{"element":"ExternalLink","outgoingURL":"https://gizmodo.com/be-warned-customer-service-agents-can-see-what-youre-t-1830688119"}' data-offer-url="https://gizmodo.com/be-warned-customer-service-agents-can-see-what-youre-t-1830688119" data-uri="46d7e8da3cf328468f961a0925f62316" href="https://gizmodo.com/be-warned-customer-service-agents-can-see-what-youre-t-1830688119" rel="external nofollow" target="_blank">Gizmodo</a>, about third parties collecting form data regardless of submission status. They point out that, at its core, the behavior is similar to so-called keyloggers, which are typically <a data-uri="7a95835c5d419e8cbc174307787241aa" href="https://www.wired.com/story/ios-macos-hacks-hong-kong-watering-hole/" rel="external nofollow">malicious programs</a> that log everything a target types. But on a mainstream top-1,000 site, users probably won't expect to have their information keylogged. And in practice, the researchers saw a few variations of the behavior. Some sites logged data keystroke by keystroke, but many grabbed complete submissions from one field when users clicked to the next.
	</p>

	<p>
		 
	</p>

	<p>
		“In some cases, when you click the next field, they collect the previous one, like you click the password field and they collect the email, or you just click anywhere and they collect all the information immediately," says Asuman Senol, a privacy and identity researcher at KU Leuven and one of the study co-authors. "We didn’t expect to find thousands of websites; and in the US, the numbers are really high, which is interesting.”
	</p>

	<p>
		 
	</p>

	<p>
		The researchers say that the regional differences may be related to companies being more cautious about user tracking, and even potentially integrating with fewer third parties, because of the EU's General Data Protection Regulation. But they emphasize that this is just one possibility, and the study didn't examine explanations for the disparity.
	</p>

	<p>
		 
	</p>

	<p>
		Through a substantial effort to notify websites and third parties collecting data in this way, the researchers found that one explanation for some of the unexpected data collection may have to do with the challenge of differentiating a “submit” action from other user actions on certain web pages. But the researchers emphasize that from a privacy perspective, this is not an adequate justification.
	</p>

	<p>
		 
	</p>

	<p>
		Since completing the <a data-event-click='{"element":"ExternalLink","outgoingURL":"https://homes.esat.kuleuven.be/~asenol/leaky-forms/leaky-forms-usenix-sec22.pdf"}' data-offer-url="https://homes.esat.kuleuven.be/~asenol/leaky-forms/leaky-forms-usenix-sec22.pdf" data-uri="d81fd361d26217b047e357989d62138f" href="https://homes.esat.kuleuven.be/~asenol/leaky-forms/leaky-forms-usenix-sec22.pdf" rel="external nofollow" target="_blank">paper</a>, the group also had a discovery about Meta Pixel and TikTok Pixel, invisible marketing trackers that services embed on their websites to track users across the web and show them ads. Both claimed in their documentation that customers could turn on “automatic advanced matching,” which would trigger data collection when a user submitted a form. In practice, though, the researchers found that these tracking pixels were grabbing hashed email addresses, an obscured version of email addresses used to identify web users across platforms, before submission. For US users, 8,438 sites may have been leaking data to Meta, Facebook’s parent company, through pixels, and 7,379 sites may be impacted for EU users. For TikTok Pixel, the group found 154 sites for US users and 147 for EU users.
	</p>

	<p>
		 
	</p>

	<p>
		The researchers filed a bug report with Meta on March 25, and the company quickly assigned an engineer to the case, but the group has not heard an update since. The researchers notified TikTok on April 21—they discovered the TikTok behavior more recently—and have not heard back. Meta and TikTok did not immediately return WIRED's request for comment about the findings.
	</p>

	<p>
		 
	</p>

	<p>
		“The privacy risks for users are that they will be tracked even more efficiently; they can be tracked across different websites, across different sessions, across mobile and desktop,” Acar says. “An email address is such a useful identifier for tracking, because it’s global, it’s unique, it’s constant. You can’t clear it like you clear your cookies. It's a very powerful identifier.”
	</p>

	<p>
		 
	</p>

	<p>
		Acar also points out that, as tech companies look to phase out cookie-based tracking in a nod to privacy concerns, marketers and other analysts will rely more and more heavily on static IDs like phone numbers and email addresses.
	</p>

	<p>
		 
	</p>

	<p>
		Since the findings indicate that deleting data in a form before submitting it may not be enough to protect yourself from all collection, the researchers created a <a data-event-click='{"element":"ExternalLink","outgoingURL":"https://homes.esat.kuleuven.be/~asenol/leaky-forms/#leak-inspector"}' data-offer-url="https://homes.esat.kuleuven.be/~asenol/leaky-forms/#leak-inspector" data-uri="4fb6ac95490433f56f522cb44d00a4ae" href="https://homes.esat.kuleuven.be/~asenol/leaky-forms/#leak-inspector" rel="external nofollow" target="_blank">Firefox extension</a> called LeakInspector to detect rogue form collection. And they say they hope their findings will raise awareness about the issue, not only for regular web users but for website developers and administrators who can proactively check whether their own systems or any of the third parties they're using are collecting data from forms without consent.
	</p>

	<p>
		 
	</p>

	<p>
		Leaky forms are just one more type of data collection to be wary of in an already extremely crowded online field.
	</p>

	<p>
		 
	</p>

	<p>
		This story originally appeared on <a href="https://www.wired.com/story/leaky-forms-keyloggers-meta-tiktok-pixel-study/" rel="external nofollow">wired.com</a>.
	</p>

	<p>
		 
	</p>
</div>

<p>
	 
</p>

<p>
	<a href="https://arstechnica.com/information-technology/2022/05/some-top-100000-websites-collect-everything-you-type-before-you-hit-submit/" rel="external nofollow">Some top 100,000 websites collect everything you type—before you hit submit</a>
</p>
]]></description><guid isPermaLink="false">5854</guid><pubDate>Sat, 14 May 2022 19:32:55 +0000</pubDate></item><item><title>Costa Rica declares emergency after gov't systems hit by notorious hacker gang</title><link>https://nsaneforums.com/news/security-privacy-news/costa-rica-declares-emergency-after-govt-systems-hit-by-notorious-hacker-gang-r5835/</link><description><![CDATA[<p>
	May 12 (UPI) -- Officials have declared a state of emergency in Costa Rica after government computers there were targeted by a crippling ransomware attack, authorities said.
</p>

<p>
	 
</p>

<p>
	Investigators said that hackers tapped into the country's finance ministry computer system a month ago and the attack quickly spread to other areas, including government science, technology and telecommunications infrastructure and Costa Rica's National Meteorological Institute.
</p>

<p>
	<br />
	"The government has been really, really affected," Leon Weinstok, director of Costa Rican law firm BLP, said according to NBC News. "It is impossible to quantify the losses at this time."
</p>

<p>
	<br />
	New Costa Rican President Rodrigo Chaves Robles, who took office this week, said that there are many cybercriminals and cyberterrorists in the Central American nation.
</p>

<p>
	<br />
	The hackers who breached the systems had attempted to extort the Costa Rican government and former President Carlos Alvarado out of $10 million, officials said.
</p>

<p>
	<br />
	Authorities said that a user linked to Conti, one of the world's most active ransomware gangs, claimed responsibility for the attack on a dark web site. Last week, the U.S. State Department offered a $10 million reward for information leading to perpetrators associated with Conti.
</p>

<p>
	<br />
	"[This] ransomware group has been responsible for hundreds of ransomware incidents over the past two years," department spokesman Ned Price said in a statement.
</p>

<p>
	<br />
	Price added that federal investigators believe there have been more than 1,000 cyberattacks worldwide worth $150 million associated with Conti, and that the group is behind the "costliest strain of ransomware ever documented."
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://www.msn.com/en-us/news/world/costa-rica-declares-emergency-after-govt-systems-hit-by-notorious-hacker-gang/ar-AAXc7em" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">5835</guid><pubDate>Thu, 12 May 2022 21:10:45 +0000</pubDate></item><item><title>BPFdoor: Stealthy Linux malware bypasses firewalls for remote access</title><link>https://nsaneforums.com/news/security-privacy-news/bpfdoor-stealthy-linux-malware-bypasses-firewalls-for-remote-access-r5824/</link><description><![CDATA[<p>
	A recently discovered backdoor malware called BPFdoor has been stealthily targeting Linux and Solaris systems without being noticed for more than five years.
</p>

<p>
	<br />
	BPFdoor is a Linux/Unix backdoor that allows threat actors to remotely connect to a Linux shell to gain complete access to a compromised device.
</p>

<p>
	<br />
	The malware does not need to open ports, it can’t be stopped by firewalls, and can respond to commands from any IP address on the web, making it the ideal tool for corporate espionage and persistent attacks.
</p>

<p>
	<br />
	<span style="font-size:18px;"><strong>Parsing 'magic' packets</strong></span>
</p>

<p>
	<br />
	BPFdoor is a passive backdoor, meaning that it can listen on one or more ports for incoming packets from one or more hosts, that attackers can use to send commands remotely to the compromised network.
</p>

<p>
	<br />
	The malware uses a Berkeley Packet Filter (the BPF in the backdoor’s name), that works at the network layer interface being able to see all network traffic and send send packets to any destination.
</p>

<p>
	<br />
	Because of its positioning at such a low level, BPF does not abide by any firewall rules.
</p>

<p>
	<br />
	It has versions for Linux and Solaris SPARC systems but it could be ported to BSD as well, BleepingComputer learned from Craig Rowland, the founder of Sandfly Security, a company that offers an agentless solution to protect Linux systems.
</p>

<p>
	<br />
	Security researcher <span style="color:#2980b9;">Kevin Beaumont</span>, who published a <span style="color:#2980b9;">blog post on BPFdoor</span>, told BleepingComputer that the operators use a “magic” password to control the implant’s actions.
</p>

<p>
	<br />
	BPFdoor parses only ICMP, UDP, and TCP packets, checking them for a specific data value, and also a password for the latter two types of packets.<br />
	What makes BPFDoor stand out is that it can can monitor any port for the magic packet, even if those ports are used by other legitimate services, such as webservers, FTP, or SSH.
</p>

<p>
	<br />
	If the TCP and UDP packets have the right “magic” data and a correct password, the backdoor springs into action executing a supported command, such as setting up a bind or reverse shell.
</p>

<p>
	 
</p>

<p style="text-align:center;">
	<img alt="BPFdoor_firewall-redirect-diagram.jpg" class="ipsImage" data-ratio="75.10" height="405" width="720" src="https://www.bleepstatic.com/images/news/u/1100723/Malware/BPFdoor/BPFdoor_firewall-redirect-diagram.jpg" />
</p>

<p style="text-align:center;">
	<span style="font-size:11px;"><em>source: Sandfly Security</em></span>
</p>

<p>
	 
</p>

<p>
	<span style="color:#2980b9;">Beaumont</span> told us that ICMP packets don’t need a password, which allowed him to scan the internet for running BPFdoor implants using the ping function.
</p>

<p style="margin-left:40px;">
	<br />
	<em>“The ping function allows you to specify an IP address and port for it to reply on - so I was able to get victim implants to reply to a completely different IP I controlled” - Kevin Beaumont</em>
</p>

<p>
	<br />
	The researcher was able to find BPFdoor activity on networks of organizations in various geographies, most notably the U.S., South Korea, Hong Kong, Turkey, India, Vietnam, and Myanmar.
</p>

<p>
	<br />
	Surprisingly, he discovered 11 Speedtest servers infected with BPFdoor. The researcher said that it is unclear how these machines were compromised, especially since they run on closed-source software.
</p>

<p>
	<br />
	<span style="font-size:18px;"><strong>Bypassing the local firewall</strong></span>
</p>

<p>
	<br />
	<span style="color:#2980b9;">Rowland </span>notes in a comprehensive <span style="color:#2980b9;">technical report on BPFdoor</span> that the malware employs some clever anti-evasion tactics:
</p>

<p>
	 
</p>

<ul>
	<li>
		 Resides in system memory and deploys anti-forensics action (wipes the process environment, albeit unsuccessfully as it leaves it empty)
	</li>
</ul>

<p>
	 
</p>

<ul>
	<li>
		 Loads a Berkeley Packet Filter (BPF) sniffer allowing it to work in front of any locally running firewalls to see packets
	</li>
</ul>

<p>
	 
</p>

<ul>
	<li>
		 Modifies ‘iptables’ rules when receiving a relevant packet to allow attacker communication through the local firewall
	</li>
</ul>

<p>
	 
</p>

<ul>
	<li>
		 Masquerades the binary under a name similar to a common Linux system daemon
	</li>
</ul>

<p>
	 
</p>

<ul>
	<li>
		 Renames and runs itself as <em><span style="color:#2980b9;">/dev/shm/kdmtmpflush</span></em>
	</li>
</ul>

<p>
	 
</p>

<ul>
	<li>
		 Changes the date of the binary (timestomping) to October 30, 2008, before deleting it
	</li>
</ul>

<p>
	<br />
	Rowland believes an explanation for timestomping, as an anti-forensics technique in this case, could be that the attacker may try to protect the binary in case its deletion fails.
</p>

<p>
	<br />
	The researcher says that the purpose of the fake date could be to hide the malware from a search looking for new files on the system.
</p>

<p>
	<br />
	Changing firewall rules is of particular importance because it allows attackers to communicate with the backdoor via traffic that firewalls can’t flag as suspicious.
</p>

<p>
	<br />
	Rowland explains that when the infected host receives a special BPFdoor packet, the malware “will spawn a new instance and change the local iptables rules to do a redirect from the requesting host to the shell port.”
</p>

<p style="margin-left:40px;">
	<br />
	<em>“For instance, the implant can redirect all traffic from the attacker using TCP port 443 (encrypted web) to the shell. Externally, the traffic will look like TLS/SSL traffic but in fact the attacker is interacting with a remote root shell on the system” - <span style="color:#2980b9;">Craig Rowland, Sandfly Security</span></em>
</p>

<p>
	<br />
	To clarify even more, Rowland says that for a local shell, the malware modifies the ‘iptables’ configuration to redirect all traffic coming from the attacker through a legitimate port to a port range defined in the malware.
</p>

<p>
	<br />
	This way, the attacker can choose a connection over any port because it would be routed to the shell behind the firewall.
</p>

<p>
	 
</p>

<p style="text-align:center;">
	<img alt="BPFdoor_redirect_CraigRowland.jpg" class="ipsImage" data-ratio="50.56" height="360" width="720" src="https://www.bleepstatic.com/images/news/u/1100723/Malware/BPFdoor/BPFdoor_redirect_CraigRowland.jpg" />
</p>

<p style="text-align:center;">
	<span style="font-size:11px;"><em>source: Craig Rowland, <span style="color:#2980b9;">Sandfly Security</span></em></span>
</p>

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

<p>
	<span style="font-size:18px;"><strong>Commands and detection</strong></span>
</p>

<p>
	<br />
	Another <span style="color:#2980b9;">technical analysis on BPFdoor from Tristan Pourcelot </span>of threat intelligence and incident response company <span style="color:#2980b9;">ExaTrack</span>, notes that the malware comes with several hardcoded names that match command strings inside relevant packets:
</p>

<p>
	 
</p>

<ul>
	<li>
		 <em>justtryit</em>, <em>justrobot</em>, and<em> justforfun</em> to establish a bind shell on ports 42391 through 42491
	</li>
	<li>
		 <em>socket</em> or <em>sockettcp</em> to set up a reverse shell to an IP address present in the packet
	</li>
</ul>

<p>
	<br />
	Part of BPFdoor's techniques to evade detection is to rename the binary to appear as a normal Linux daemon using the choices below:
</p>

<p>
	 
</p>

<p style="margin-left:40px;">
	/sbin/udevd -d<br />
	/sbin/mingetty /dev/tty7<br />
	/usr/sbin/console-kit-daemon --no-daemon<br />
	hald-addon-acpi: listening on acpi kernel interface /proc/acpi/event<br />
	dbus-daemon --system<br />
	hald-runner<br />
	pickup -l -t fifo -u<br />
	avahi-daemon: chroot helper<br />
	/sbin/auditd -n<br />
	/usr/lib/systemd/systemd-journald
</p>

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

<p>
	Pourcelot says that the threat actor updated BPFdoor regularly, improving each release with different names for commands, processes, or files.
</p>

<p>
	<br />
	For instance, newer variants of the implant switched from using command keywords to MD5 hashes, likely in an attempt to avoid trivial detection.
</p>

<p>
	<br />
	There are at least 21 <span style="color:#2980b9;">versions of BPFdoor </span>currently detected on the Virus Total scanning platform, the earliest ones submitted in August 2018.
</p>

<p>
	<br />
	While the detection rate for this implant improved, especially after Beaumont, Rowland, and Pourcelot published their findings, the malware went virtually invisible for a long time.
</p>

<p>
	<br />
	One BPFdoor variant for Solaris from 2019 went undetected until at least this May 7. Today, 28 antivirus engines flag it as malicious.
</p>

<p>
	 
</p>

<p style="text-align:center;">
	<img alt="BPFdoorSolarisDetection.jpg" class="ipsImage" data-ratio="75.10" height="540" width="700" src="https://www.bleepstatic.com/images/news/u/1100723/Malware/BPFdoor/BPFdoorSolarisDetection.jpg" />
</p>

<p style="text-align:center;">
	<span style="font-size:11px;"><em>source: <span style="color:#2980b9;">Kevin Beaumont</span>, BleepingComputer</em></span>
</p>

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

<p>
	In some cases, the detections are generic and inaccurately flag the above Solaris variant as Linux malware, although it is not a Linux binary.
</p>

<p>
	<br />
	Tristan Pourcelot says that while BPFdoor does not use novel or complicated techniques it still managed to stay stealthy for an extended period.
</p>

<p>
	<br />
	This could be explained by the fact that malware monitoring technology is not as common in Linux environments as in Windows. Also, “vendors have significantly less visibility,” Beaumont told BleepingComputer.
</p>

<p>
	<br />
	Craig Rowland agrees that this is a big problem. Even if there is monitoring in place, people don’t know what to look for or use the wrong approach to find Linux malware.
</p>

<p>
	<br />
	The researcher told us that some administrators use cryptographic hashes to scan the system for malware or malicious files. This doesn’t work well because the smallest change in the file results in a new hash.
</p>

<p style="margin-left:40px;">
	<br />
	<em>“Plus then EDR [Endpoint Detection and Response] wants to load agents all over and agents break Linux so they are often not a good choice. So people fly naked with Linux often and stuff like this happens” - Craig Rowland, referring particularly to older Linux systems</em>
</p>

<p>
	<br />
	Rowland says that hunting for BPFdoor is easy, at least for the Linux version he analyzed, since its tactics clearly show that they “are just malicious out of the box.”
</p>

<p>
	 
</p>

<p style="text-align:center;">
	<img alt="BPFdoor_SandflyDetection.jpg" class="ipsImage" data-ratio="75.10" height="381" width="720" src="https://www.bleepstatic.com/images/news/u/1100723/Malware/BPFdoor/BPFdoor_SandflyDetection.jpg" />
</p>

<p style="text-align:center;">
	<span style="font-size:11px;"><em>source: Craig Rowland, <span style="color:#2980b9;">Sandfly Security</span></em></span>
</p>

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

<p>
	The source code for an older version of BPFdoor from 2018 has been found by <span style="color:#2980b9;">Florian Roth</span>, the creator of Nextron Systems THOR APT scanner. The code is now publicly <span style="color:#3498db;">available on </span><span style="color:#2980b9;">Pastebin</span>.
</p>

<p>
	<br />
	<span style="font-size:18px;"><strong>Made in China?</strong></span>
</p>

<p>
	<br />
	The researchers BleepingComputer talked to about BPFdoor did not attribute the malware to any threat actor. But in a yearly report on cyberthreats, researchers from PricewaterhouseCoopers (PwC) note that they found the BPFdoor implant during an incident response engagement.
</p>

<p>
	<br />
	PwC attributed the intrusion to a China-based actor they track as Red Menshen (formerly Red Dev 18), who has been using BPFdoor on "telecommunications providers across the Middle East and Asia, as well as entities in the government, education, and logistics sectors."
</p>

<p>
	<br />
	During the investigations, PwC researchers discovered that in the post-exploitation stage of their attacks Red Menshen used custom variants of the Mangzamel backdoor and the Gh0st remote access tool (RAT) along with open-source tools like Mimikatz (to extract credentials) and Metasploit penetration testing suite, for lateral movement on Windows systems.
</p>

<p style="margin-left:40px;">
	<br />
	<em>"We also identified that the threat actor sends commands to BPFDoor victims via Virtual Private Servers (VPSs) hosted at a well-known provider, and that these VPSs, in turn, are administered via compromised routers based in Taiwan, which the threat actor uses as VPN tunnels" - <span style="color:#2980b9;">PwC</span></em>
</p>

<p>
	<br />
	The researchers note that Red Menshen's activity is taking place within a nine-hour time interval, between 01:00 and 10:00 UTC, which may align with local working hours.
</p>

<p>
	 
</p>

<p>
	<span style="font-size:18px;"><strong><a href="https://www.bleepingcomputer.com/news/security/bpfdoor-stealthy-linux-malware-bypasses-firewalls-for-remote-access/" rel="external nofollow">Source</a></strong></span>
</p>
]]></description><guid isPermaLink="false">5824</guid><pubDate>Thu, 12 May 2022 18:44:07 +0000</pubDate></item></channel></rss>
