<?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/142/?d=2</link><description><![CDATA[News: Security & Privacy News]]></description><language>en</language><item><title>&#x2018;Trojan Source&#x2019; Bug Threatens the Security of All Code</title><link>https://nsaneforums.com/news/security-privacy-news/%E2%80%98trojan-source%E2%80%99-bug-threatens-the-security-of-all-code-r3221/</link><description><![CDATA[<div>
	<p>
		Virtually all compilers — programs that transform human-readable source code into computer-executable machine code — are vulnerable to an insidious attack in which an adversary can introduce targeted vulnerabilities into any software without being detected, new research released today warns. The vulnerability disclosure was coordinated with multiple organizations, some of whom are now releasing updates to address the security weakness.
	</p>

	<p>
		 
	</p>

	<p>
		Researchers with the University of Cambridge discovered a bug that affects most computer code compilers and many software development environments. At issue is a component of the digital text encoding standard <a href="https://home.unicode.org/" rel="external nofollow" target="_blank">Unicode</a>, which allows computers to exchange information regardless of the language used. Unicode currently defines more than 143,000 characters across 154 different language scripts (in addition to many non-script character sets, such as emojis).
	</p>

	<p>
		 
	</p>

	<p>
		Specifically, the weakness involves Unicode’s bi-directional or “<a href="https://www.w3.org/International/articles/inline-bidi-markup/uba-basics" rel="external nofollow" target="_blank">Bidi” algorithm</a>, which handles displaying text that includes mixed scripts with different display orders, such as Arabic — which is read right to left — and English (left to right).
	</p>

	<p>
		 
	</p>

	<p>
		But computer systems need to have a deterministic way of resolving conflicting directionality in text. Enter the “Bidi override,” which can be used to make left-to-right text read right-to-left, and vice versa.
	</p>

	<p>
		 
	</p>

	<p>
		“In some scenarios, the default ordering set by the Bidi Algorithm may not be sufficient,” the Cambridge researchers wrote. “For these cases, Bidi override control characters enable switching the display ordering of groups of characters.”
	</p>

	<p>
		 
	</p>

	<p>
		Bidi overrides enable even single-script characters to be displayed in an order different from their logical encoding. As the researchers point out, this fact has previously been exploited <a href="https://krebsonsecurity.com/2011/09/right-to-left-override-aids-email-attacks/" rel="external nofollow" target="_blank">to disguise the file extensions of malware disseminated via email</a>.
	</p>

	<p>
		 
	</p>

	<p>
		Here’s the problem: Most programming languages let you put these Bidi overrides in comments and strings. This is bad because most programming languages allow comments within which all text — including <a href="https://en.wikipedia.org/wiki/Control_character" rel="external nofollow" target="_blank">control characters</a> — is ignored by compilers and interpreters. Also, it’s
	</p>

	<p>
		bad because most programming languages allow <a href="https://www.ibm.com/docs/en/zos/2.3.0?topic=literals-string" rel="external nofollow" target="_blank">string literals</a> that may contain arbitrary characters, including control characters.
	</p>

	<p>
		 
	</p>

	<p>
		“So you can use them in source code that appears innocuous to a human reviewer [that] can actually do something nasty,” said Ross Anderson, a professor of computer security at Cambridge and co-author of the research. “That’s bad news for projects like Linux and Webkit that accept contributions from random people, subject them to manual review, then incorporate them into critical code. This vulnerability is, as far as I know, the first one to affect almost everything.”
	</p>

	<p>
		 
	</p>

	<p>
		The research paper, which dubbed the vulnerability “<a href="https://www.trojansource.codes/" rel="external nofollow" target="_blank">Trojan Source</a>,” notes that while both comments and strings will have syntax-specific semantics indicating their start and end, these bounds are not respected by Bidi overrides. From the paper:
	</p>

	<p>
		 
	</p>

	<p style="margin-left: 40px;">
		“Therefore, by placing Bidi override characters exclusively within comments and strings, we can smuggle them into source code in a manner that most compilers will accept. Our key insight is that we can reorder source code characters in such a way that the resulting display order also represents syntactically valid source code.”
	</p>

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

	<p style="margin-left: 40px;">
		“Bringing all this together, we arrive at a novel supply-chain attack on source code. By injecting Unicode Bidi override characters into comments and strings, an adversary can produce syntactically-valid source code in most modern languages for which the display order of characters presents logic that diverges from the real logic. In effect, we anagram program A into program B.”
	</p>

	<p>
		 
	</p>

	<p>
		Anderson said such an attack could be challenging for a human code reviewer to detect, as the rendered source code looks perfectly acceptable.
	</p>

	<p>
		 
	</p>

	<p>
		“If the change in logic is subtle enough to go undetected in subsequent testing, an adversary could introduce targeted vulnerabilities without being detected,” he said.
	</p>

	<p>
		 
	</p>

	<p>
		Equally concerning is that Bidi override characters persist through the copy-and-paste functions on most modern browsers, editors, and operating systems.
	</p>

	<p>
		 
	</p>

	<p>
		“Any developer who copies code from an untrusted source into a protected code base may inadvertently introduce an invisible vulnerability,” Anderson told KrebsOnSecurity. “Such code copying is a significant source of real-world security exploits.”
	</p>

	<p>
		 
	</p>

	<p>
		<img alt="xkcd-moderninfrastructure.png" class="ipsImage" data-ratio="116.88" height="540" width="428" src="https://krebsonsecurity.com/wp-content/uploads/2021/10/xkcd-moderninfrastructure.png">
	</p>

	<div id="attachment_57381">
		<p id="caption-attachment-57381">
			Image: XKCD.com/2347/
		</p>
	</div>

	<p>
		 
	</p>

	<p>
		<a href="https://isi.jhu.edu/~mgreen/" rel="external nofollow" target="_blank">Matthew Green</a>, an associate professor at the Johns Hopkins Information Security Institute, said the Cambridge research clearly shows that most compilers can be tricked with Unicode into processing code in a different way than a reader would expect it to be processed.
	</p>

	<p>
		 
	</p>

	<p>
		“Before reading this paper, the idea that Unicode could be exploited in some way wouldn’t have surprised me,” Green told KrebsOnSecurity. “What does surprise me is how many compilers will happily parse Unicode without any defenses, and how effective their right-to-left encoding technique is at sneaking code into codebases. That’s a really clever trick I didn’t even know was possible. Yikes.”
	</p>

	<p>
		 
	</p>

	<p>
		Green said the good news is that the researchers conducted a widespread vulnerability scan, but were unable to find evidence that anyone was exploiting this. Yet.
	</p>

	<p>
		 
	</p>

	<p>
		“The bad news is that there were no defenses to it, and now that people know about it they might start exploiting it,” Green said. “Hopefully compiler and code editor developers will patch this quickly! But since some people don’t update their development tools regularly there will be some risk for a while at least.”
	</p>

	<p>
		 
	</p>

	<p>
		Nicholas Weaver, a lecturer at the computer science department at University of California, Berkeley, said the Cambridge research presents “a very simple, elegant set of attacks that could make supply chain attacks much, much worse.”
	</p>

	<p>
		 
	</p>

	<p>
		“It is already hard for humans to tell ‘this is OK’ from ‘this is evil’ in source code,” Weaver said. “With this attack, you can use the shift in directionality to change how things render with comments and strings so that, for example ‘This is okay” is how it renders, but ‘This is’ okay is how it exists in the code. This fortunately has a very easy signature to scan for, so compilers can [detect] it if they encounter it in the future.”
	</p>

	<p>
		 
	</p>

	<p>
		The latter half of the Cambridge paper is a fascinating case study on the complexities of orchestrating vulnerability disclosure with so many affected programming languages and software firms. The researchers said they offered a 99-day embargo period following their initial disclosure to allow affected products to be repaired with software updates.
	</p>

	<p>
		 
	</p>

	<p>
		“We met a variety of responses ranging from patching commitments and bug bounties to quick dismissal and references to legal policies,” the researchers wrote. “Of the nineteen software suppliers with whom we engaged, seven used an outsourced platform for receiving vulnerability disclosures, six had dedicated web portals for vulnerability disclosures, four accepted disclosures via PGP-encrypted email, and two accepted disclosures only via non-PGP email. They all confirmed receipt of our disclosure, and ultimately nine of them committed to releasing a patch.”
	</p>

	<p>
		 
	</p>

	<p>
		Eleven of the recipients had bug bounty programs offering payment for vulnerability disclosures. But of these, only five paid bounties, with an average payment of $2,246 and a range of $4,475, the researchers reported.
	</p>

	<p>
		 
	</p>

	<p>
		<img alt="codereview.jpg" class="ipsImage" data-ratio="66.00" height="330" width="500" src="https://krebsonsecurity.com/wp-content/uploads/2020/05/codereview.jpg">
	</p>

	<p>
		 
	</p>

	<p>
		Anderson said so far about half of the organizations maintaining the affected computer programming languages contacted have promised patches. Others are dragging their feet.
	</p>

	<p>
		 
	</p>

	<p>
		“We’ll monitor their deployment over the next few days,” Anderson said. “We also expect action from Github, Gitlab and Atlassian, so their tools should detect attacks on code in languages that still lack bidi character filtering.”
	</p>

	<p>
		 
	</p>

	<p>
		As for what needs to be done about Trojan Source, the researchers urge governments and firms that rely on critical software to identify their suppliers’ posture, exert pressure on them to implement adequate defenses, and ensure that any gaps are covered by controls elsewhere in their toolchain.
	</p>

	<p>
		 
	</p>

	<p>
		“The fact that the Trojan Source vulnerability affects almost all computer languages makes it a rare opportunity for a system-wide and ecologically valid cross-platform and cross-vendor comparison of responses,” the paper concludes. “As powerful supply-chain attacks can be launched easily using these techniques, it is essential for organizations that participate in a software supply chain to implement defenses.”
	</p>

	<p>
		 
	</p>

	<p>
		Weaver called the research “really good work at stopping something before it becomes a problem.”
	</p>

	<p>
		 
	</p>

	<p>
		“The coordinated disclosure lessons are an excellent study in what it takes to fix these problems,” he said. “The vulnerability is real but also highlights the even larger vulnerability of the shifting stand of dependencies and packages that our modern code relies on.”
	</p>

	<p>
		 
	</p>

	<p>
		Rust has released <a href="https://blog.rust-lang.org/2021/11/01/cve-2021-42574.html" rel="external nofollow" target="_blank">a security advisory</a> for this security weakness, which is being tracked as CVE-2021-42574 and CVE-2021-42694. Additional security advisories from other affected languages will be added as updates here.
	</p>

	<p>
		 
	</p>

	<p>
		The Trojan Source research paper is available <a href="https://www.trojansource.codes/trojan-source.pdf" rel="external nofollow" target="_blank">here</a> (PDF).
	</p>
</div>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://krebsonsecurity.com/2021/11/trojan-source-bug-threatens-the-security-of-all-code/" rel="external nofollow">‘Trojan Source’ Bug Threatens the Security of All Code</a>
</p>
]]></description><guid isPermaLink="false">3221</guid><pubDate>Mon, 01 Nov 2021 05:41:04 +0000</pubDate></item><item><title>Apple&#x2019;s app tracking policy reportedly cost social media platforms nearly $10 billion</title><link>https://nsaneforums.com/news/security-privacy-news/apple%E2%80%99s-app-tracking-policy-reportedly-cost-social-media-platforms-nearly-10-billion-r3218/</link><description><![CDATA[<div>
	<div>
		<p>
			<strong>Snapchat, Facebook, Twitter, and YouTube all took a hit</strong>
		</p>
		 
	</div>
</div>

<div>
	<div>
		<div>
			<p id="hoTDKd">
				An investigation by <a href="https://www.ft.com/content/4c19e387-ee1a-41d8-8dd2-bc6c302ee58e" rel="external nofollow">The Financial Times</a> found that Snapchat, Facebook, Twitter, and YouTube lost around $9.85 billion in revenue following Apple’s changes to its privacy practices. Last year, <a href="https://www.theverge.com/2020/12/16/22179721/apple-defends-upcoming-privacy-changes-standing-up-for-users-facebook-data" rel="external nofollow">Apple announced the App Tracking Transparency (ATT) policy</a> that requires apps to ask permission to track users’ data. The <a href="https://www.theverge.com/2021/4/27/22405474/apple-app-tracking-transparency-ios-14-5-privacy-update-facebook-data" rel="external nofollow">policy went into effect in April</a>, barring apps from tracking users if they opt out.
			</p>

			<p>
				 
			</p>

			<p id="MoOi1y">
				<a href="https://www.theverge.com/2020/12/16/22178068/facebook-apple-newspaper-ads-ios-privacy-changes" rel="external nofollow">Facebook notably criticized the move with a full-page newspaper ad</a>, and thanks to the FT’s report, now we know why company leaders were so frustrated. According to the report, Facebook lost the most money “in absolute terms” when compared to other social platforms due to its massive size. Meanwhile, Snap “fared the worst as a percentage of its business” because its advertising is mainly tied to smartphones, which makes sense for a product that doesn’t have a desktop version.
			</p>

			<p>
				 
			</p>

			<p>
				“Some of the platforms that were most impacted — but especially Facebook — have to rebuild their machinery from scratch as a result of ATT,” adtech consultant Eric Seufert told FT. “My belief is that it takes at least one year to build new infrastructure. New tools and frameworks need to be developed from scratch and tested extensively before being deployed to a high number of users.”
			</p>

			<p>
				 
			</p>

			<p id="1ahNYi">
				Apple’s new policy will force social platforms and other apps to get more creative with their advertising. Whether this means focusing on Android devices or investing in Apple’s advertising business — <a href="https://www.theverge.com/2021/9/2/22654121/apple-personalized-ads-ios-15-prompt-app-tracking" rel="external nofollow">which nearly broke its own rules</a> by quietly collecting user data in the same way third-party apps did — they’ll have to figure out another source of revenue that doesn’t involve tracking people on their iPhones.
			</p>
		</div>
	</div>
</div>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.theverge.com/2021/10/31/22756135/apple-app-tracking-transparency-policy-snapchat-facebook-twitter-youtube-lose-10-billion" rel="external nofollow">Apple’s app tracking policy reportedly cost social media platforms nearly $10 billion</a>
</p>
]]></description><guid isPermaLink="false">3218</guid><pubDate>Mon, 01 Nov 2021 00:33:17 +0000</pubDate></item><item><title>Iran-Affiliated Hacker Group Leaks Data From Israeli LGBTQ Group</title><link>https://nsaneforums.com/news/security-privacy-news/iran-affiliated-hacker-group-leaks-data-from-israeli-lgbtq-group-r3210/</link><description><![CDATA[<p>
	The Iran-affiliated hacker group Black Shadow, which announced on Friday that it had hacked into the servers of an Israeli web hosting company, Cyberserve, on Saturday leaked the personal data of members of the Atraf LGBT dating site, one of the company’s clients. The hacker group claims it has only released 1% of the personal user data that it has obtained.
</p>

<p>
	 
</p>

<p>
	The cyberattack by Black Shadow also hit the websites of the Israeli public transportation companies Kavim and Dan, the Pegasus tourism company and other sites such as a children’s museum, a private medical service and a blog of Kan public radio. The sites were off-line on Saturday.
</p>

<p>
	 
</p>

<p>
	The hackers reportedly have demanded a ransom in order to halt the data leaks; it is not known if Cyberserve intends to pay.
</p>

<p>
	 
</p>

<p>
	The attack comes days after a crippling cyberattack on Iran’s gas distribution system that Iran blames on Israel.
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://themedialine.org/headlines/iran-affiliated-hacker-group-leaks-data-from-israeli-lgbtq-group/" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">3210</guid><pubDate>Sun, 31 Oct 2021 13:36:18 +0000</pubDate></item><item><title>Police Arrest Suspected Ransomware Hackers Behind 1,800 Attacks Worldwide</title><link>https://nsaneforums.com/news/security-privacy-news/police-arrest-suspected-ransomware-hackers-behind-1800-attacks-worldwide-r3204/</link><description><![CDATA[<p>
	12 people have been detained as part of an international law enforcement operation for orchestrating ransomware attacks on critical infrastructure and large organizations that hit over 1,800 victims across 71 countries since 2019, marking the latest action against cybercrime groups.
</p>

<p>
	 
</p>

<p>
	The arrests were made earlier this week on October 26 in Ukraine and Switzerland, resulting in the seizure of cash worth $52,000, five luxury vehicles, and a number of electronic devices that the agencies said are being examined to uncover new forensic evidence of their malicious activities and pursue new investigative leads.
</p>

<p>
	 
</p>

<p>
	The suspects have been primarily linked to LockerGoga, MegaCortex, and Dharma ransomware, in addition to being in charge of laundering the ransom payments by funneling the ill-gotten Bitcoin proceeds through mixing services and cashing them out.
</p>

<p>
	 
</p>

<p>
	"The targeted suspects all had different roles in these professional, highly organised criminal organisations," Europol said in a press release. "Some of these criminals were dealing with the penetration effort, using multiple mechanisms to compromise IT networks, including brute force attacks, SQL injections, stolen credentials and phishing emails with malicious attachments."
</p>

<p>
	 
</p>

<p style="text-align:center;">
	<img alt="AVvXsEh-U40iKdJeoXUqiKXhk570r-UsKQlFP8sJ" class="ipsImage" data-ratio="75.10" height="540" width="720" src="https://thehackernews.com/new-images/img/a/AVvXsEh-U40iKdJeoXUqiKXhk570r-UsKQlFP8sJhW0KylvjXDUA397i_4GVSdj1XG7SS4kF35kEHTTRd6y_oN5vvD3aAfVPMRePmWpOinslJ-uARq3WxP_vnvqFXDOnivMsQYDMeTUEwlNjgndocxHjIUG7yvt5-SoegYOCpAJjXCMLsMD9Ktt-dwQO5ufD" />
</p>

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

<p>
	Following a successful break-in, the suspects are said to have focused on lateral movement within the compromised networks by deploying malware such as TrickBot or post-exploitation frameworks like Cobalt Strike or PowerShell Empire with the goal of staying undetected for extended periods of time and gaining entrenched access, leveraging the opportunity to probe for more weaknesses in the IT networks before installing ransomware.
</p>

<p>
	 
</p>

<p>
	The arrested individuals are also believed to have carried out the ransomware attack on Norwegian aluminum processor Norsk Hydro in March 2019, the country's National Criminal Investigation Service said in a separate statement.
</p>

<p>
	 
</p>

<p>
	The joint task force involved authorities from France, Germany, the Netherlands, Norway, Switzerland, Ukraine, the U.K., and the U.S., along with Europol and Eurojust, under the European Multidisciplinary Platform Against Criminal Threats (EMPACT).
</p>

<p>
	 
</p>

<p>
	The development also arrives weeks after representatives from the U.S., the European Union, and 30 other countries pledged to mitigate the risk of ransomware and harden the financial system from exploitation with the goal of disrupting the ecosystem, calling it an "escalating global security threat with serious economic and security consequences."
</p>

<p>
	 
</p>

<p>
	<strong><a href="http://ransomware" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">3204</guid><pubDate>Sat, 30 Oct 2021 21:19:16 +0000</pubDate></item><item><title>Hive ransomware now encrypts Linux and FreeBSD systems</title><link>https://nsaneforums.com/news/security-privacy-news/hive-ransomware-now-encrypts-linux-and-freebsd-systems-r3190/</link><description><![CDATA[<p>
	The Hive ransomware gang now also encrypts Linux and FreeBSD using new malware variants specifically developed to target these platforms.
</p>

<p>
	 
</p>

<p>
	However, as Slovak internet security firm ESET discovered, Hive's new encryptors are still in development and still lack functionality.
</p>

<p>
	 
</p>

<p>
	The Linux variant also proved to be quite buggy during ESET's analysis, with the encryption completely failing when the malware was executed with an explicit path.
</p>

<p>
	 
</p>

<p>
	It also comes with support for a single command line parameter (-no-wipe). In contrast, Hive's Windows ransomware comes with up to 5 execution options, including killing processes and skipping disk cleaning, uninteresting files, and older files.
</p>

<p>
	 
</p>

<p>
	The ransomware's Linux version also fails to trigger the encryption if executed without root privileges because it attempts to drop the ransom note on compromised devices' root file systems.
</p>

<p>
	 
</p>

<p>
	"Just like the Windows version, these variants are written in Golang, but the strings, package names and function names have been obfuscated, likely with gobfuscate," ESET Research Labs said.
</p>

<p>
	 
</p>

<p style="text-align:center;">
	<img alt="Hive_ransom_note.png" class="ipsImage" data-ratio="75.10" height="540" width="655" src="https://www.bleepstatic.com/images/news/u/1109292/2021/Hive_ransom_note.png" />
</p>

<p style="text-align:center;">
	<span style="font-size:12px;"><em>Hive ransom note (ESET Research Labs)</em></span>
</p>

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

<p>
	<span style="font-size:20px;"><strong>Ransomware now interested in Linux servers</strong></span>
</p>

<p>
	<br />
	Hive, a ransomware group active since at least June 2021, has already hit over 30 organizations, counting only victims who refused to pay the ransom.
</p>

<p>
	 
</p>

<p>
	They're just one of many ransomware gangs that have begun targeting Linux servers after their enterprise targets have slowly migrated to virtual machines for easier device management and more efficient use of resources.
</p>

<p>
	 
</p>

<p>
	By targeting virtual machines, ransomware operators can also encrypt multiple servers at once with a single command.
</p>

<p>
	 
</p>

<p>
	In June, researchers spotted a new REvil ransomware Linux encryptor designed to target VMware ESXi virtual machines, a popular enterprise virtual machine platform.
</p>

<p>
	 
</p>

<p>
	Emsisoft CTO Fabian Wosar told BleepingComputer that other ransomware groups, such as Babuk, RansomExx/Defray, Mespinoza, GoGoogle, DarkSide, and Hellokitty have also created their own Linux encryptors.
</p>

<p>
	 
</p>

<p>
	"The reason why most ransomware groups implemented a Linux-based version of their ransomware is to target ESXi specifically," Wosar said.
</p>

<p>
	HelloKitty and BlackMatter ransomware Linux encryptors were later discovered in the wild by security researchers in July and August, confirming Wosar's statement.
</p>

<p>
	 
</p>

<p>
	One month later, it was discovered that some of these Linux malware strains are also buggy and could damage victims' files during encryption.
</p>

<p>
	In the past, the Snatch and PureLocker ransomware operations have also used Linux variants on their attacks.
</p>

<p>
	 
</p>

<p>
	<span style="font-size:16px;"><strong><a href="https://www.bleepingcomputer.com/news/security/hive-ransomware-now-encrypts-linux-and-freebsd-systems/" rel="external nofollow">Source</a></strong></span>
</p>
]]></description><guid isPermaLink="false">3190</guid><pubDate>Fri, 29 Oct 2021 21:32:08 +0000</pubDate></item><item><title>Chrome fixes zero-day flaws under hacker attack &#x2014; update now</title><link>https://nsaneforums.com/news/security-privacy-news/chrome-fixes-zero-day-flaws-under-hacker-attack-%E2%80%94-update-now-r3187/</link><description><![CDATA[<p>
	<span style="font-size:28px;">Out-of-date browsers can be hacked by malicious websites, web apps</span>
</p>

<p>
	 
</p>

<p>
	Google yesterday (Oct. 28) pushed out an update for Chrome on the desktop that fixes eight security vulnerabilities, including two serious "zero-day" flaws that are already under attack by hackers unnamed.
</p>

<p>
	 
</p>

<p>
	The update takes Chrome to version 95.0.4638.69 for Windows, Mac and Linux. Windows and Mac users can usually just relaunch the browser to install the update, while Linux users may have to wait until their distribution bundles the update into its regular update package.
</p>

<p>
	 
</p>

<p>
	Otherwise, you can force a Chrome update by clicking the three vertical dots at the top right of the browser window, then mousing down and clicking Help. Click "About Google Chrome" in the fly-out menu that appears, and a new tab will either tell you that Chrome is up-to-date or will download the update.
</p>

<p>
	 
</p>

<p>
	<span style="font-size:20px;"><strong>How these Chrome flaws can be exploited</strong></span>
</p>

<p>
	<br />
	The first of the two zero-day flaws patched involves "insufficient validation of untrusted input in Intents," a protocol whereby Chrome finds the best web app to handle a particular purpose (catalogued as vulnerability CVE-2021-38000). The other allows "inappropriate implementation in V8," Chrome's JavaScript engine (catalogued as vulnerability CVE-2021-38003).
</p>

<p>
	 
</p>

<p>
	We're going to guess that the first permits a web app to do naughty things, while the second permits a website to do the same. Google isn't saying anything further.
</p>

<p>
	 
</p>

<p>
	Because the reporters of these flaws all work for Google, they likely won't be getting any bug-bounty money. But external researchers will be for some of the other flaws patched, including Wei Yuan of MoyunSec VLab, who will net $10,000 for his discovery of a "use-after-free" bug in Chrome's sign-in protocol. 
</p>

<p>
	 
</p>

<p>
	Use-after-free means that the memory space wasn't properly reallocated after the protocol finished using it, potentially allowing a malicious program to literally invade the space.
</p>

<p>
	 
</p>

<p>
	The other four described flaws also have to do with use-after-free issues, insufficient validation, V8 or some combination of those. Google isn't saying anything about the eighth vulnerability being patched.
</p>

<p>
	 
</p>

<p>
	<span style="font-size:20px;"><strong>Zero-days as far as the eye can see</strong></span>
</p>

<p>
	<br />
	Some other browsers that share the Chromium open-source underpinnings with Chrome have also updated to the new version, including Brave and Microsoft Edge. (Like Chrome, you can just relaunch those to update them.) Others, such as Opera and Vivaldi, are not quite there yet.
</p>

<p>
	 
</p>

<p>
	Google has patched more than a dozen zero-days flaws already in this exceptionally busy year. We're not sure if that's a good thing, indicating a greater share of flaws may be being found, or a bad thing that there may be more zero-days in general.
</p>

<p>
	 
</p>

<p>
	Here's a list of recent Chrome desktop updates.
</p>

<p>
	 
</p>

<ul>
	<li>
		Oct. 28: 95.0.4638.69
	</li>
	<li>
		Oct. 19: 95.0.4638.54
	</li>
	<li>
		Oct. 7: 94.0.4606.81
	</li>
	<li>
		Sept. 30: 94.0.4606.71
	</li>
	<li>
		Sept. 24: 94.0.4606.61
	</li>
	<li>
		Sept. 21: 94.0.4606.54
	</li>
	<li>
		Sept. 13: 93.0.4577.82
	</li>
	<li>
		Aug. 31: 93.0.4577.63
	</li>
	<li>
		Aug. 16: 92.0.4515.159
	</li>
	<li>
		Aug. 2: 92.0.4515.131
	</li>
	<li>
		July 20: 92.0.4515.107
	</li>
	<li>
		July 15: 91.0.4472.164
	</li>
</ul>

<p>
	 
</p>

<p>
	<span style="font-size:20px;"><strong><a href="https://www.tomsguide.com/news/chrome-95-update-1" rel="external nofollow">Source</a></strong></span>
</p>
]]></description><guid isPermaLink="false">3187</guid><pubDate>Fri, 29 Oct 2021 21:17:15 +0000</pubDate></item><item><title>Microsoft Wants to Help You Get a Job in Cybersecurity</title><link>https://nsaneforums.com/news/security-privacy-news/microsoft-wants-to-help-you-get-a-job-in-cybersecurity-r3181/</link><description><![CDATA[<p>
	<span style="font-size:24px;">Microsoft aims to address a 'skills crisis' with a Cybersecurity Scholarship Program.</span>
</p>

<p>
	 
</p>

<p>
	Microsoft has announced a campaign to bring 250,000 more people into the US cybersecurity industry by 2025 by offering colleges and students alike the support they need to enter the field.
</p>

<p>
	 
</p>

<p>
	"The country’s cybersecurity challenges in part reflect a serious workforce shortage," Microsoft President Brad Smith says in a blog post. "Until we redress the cybersecurity workforce shortage, we will fall short in strengthening the country’s cybersecurity protection."
</p>

<p>
	 
</p>

<p>
	Smith cites data from LinkedIn and Cyber Seek (a US government-run website devoted to this very issue) that shows one-third of America's cybersecurity-related jobs remain unfilled due to a lack of qualified applicants, even though some of those positions offer six-figure salaries.
</p>

<p>
	 
</p>

<p>
	"Currently there are 464,200 open jobs in the United States that require cybersecurity skills," Smith says. "They account for 6% of all open jobs in the country." The problem—according to Microsoft—is that cybersecurity education isn't preparing enough people for those roles.
</p>

<p>
	 
</p>

<p>
	Microsoft wants to change that. Smith says the company will offer free curriculum to the roughly 4,000 colleges throughout the US, provide cybersecurity training to faculty at 150 community colleges, and support 25,000 students via the new Microsoft Cybersecurity Scholarship Program.
</p>

<p>
	 
</p>

<p>
	Smith says that scholarship recipients will also receive "mentorship from Microsoft employees and student supports, as well as free LinkedIn Premium accounts to help close the networking gap and connect them to jobs," along with "access to GitHub education benefits, including student developer packs and access to local GitHub sponsored events" via this program.
</p>

<p>
	 
</p>

<p>
	"We want to give people across the country the opportunity to see more clearly something we see directly at Microsoft every day," Smith says. "If we’re going to protect the nation’s future, we need to strengthen cybersecurity protection. And we need a larger and more diverse cybersecurity workforce to succeed. Great jobs are waiting to be filled. Now we need to recruit the talent and provide the skills that people need."
</p>

<p>
	 
</p>

<p>
	Those efforts will take time, however, with Smith saying that Microsoft plans to support those 25,000 students over the next four years. It's also worth noting that many people can't enter the cybersecurity field directly—which is part of the reason why these jobs are vacant.
</p>

<p>
	 
</p>

<p>
	Cyber Seek itself notes in its career pathway that entry-level cybersecurity positions follow what it calls a "feeder role" such as IT support, software development, and networking. Many positions also seek applicants with certifications as well as a bachelor's or master's degree. Some of those certifications (and the trainings associated with them) cost thousands of dollars a pop.
</p>

<p>
	 
</p>

<p>
	This problem is so prevalent that Copado Head of Security Kyle Tobener's TikTok videos about entry-level cybersecurity job postings requiring years of experience—as well as relatively advanced certifications or degrees and top secret clearance—can receive over 10,000 likes.
</p>

<p>
	 
</p>

<p>
	Microsoft is addressing one part of the industry's hiring problem, a lack of qualified applicants, via this campaign. But the other part—companies demanding bachelor's degrees, expensive certifications, and years of experience for entry-level jobs—will also need to be rectified.
</p>

<p>
	 
</p>

<p>
	<strong><span style="font-size:16px;"><a href="https://www.pcmag.com/news/microsoft-wants-to-help-you-get-a-job-in-cybersecurity" rel="external nofollow">Source</a></span></strong>
</p>
]]></description><guid isPermaLink="false">3181</guid><pubDate>Fri, 29 Oct 2021 14:40:51 +0000</pubDate></item><item><title>These Companies Are Most at Risk for Ransomware Attacks</title><link>https://nsaneforums.com/news/security-privacy-news/these-companies-are-most-at-risk-for-ransomware-attacks-r3180/</link><description><![CDATA[<p>
	<span style="font-size:22px;">Thousands of ransomware attacks happen every day, and businesses have lost billions.</span>
</p>

<p>
	 
</p>

<p>
	The internet and the online services we rely on are under attack. In the past month alone, hackers have targeted Office 365 accounts, launched phishing attacks on YouTube creators, and and breached Twitch's data bases. But online entities aren't the only ones at risk from nefarious actors—ransomware has made everyone a target.
</p>

<p>
	 
</p>

<p>
	According to NordLocker, there are now thousands of ransomware attacks per day, which has cost businesses an estimated $20 billion overall. And since the most successful attacks are never publicly disclosed, these figures could be on the low end. Recent attacks include Sinclair Broadcast Group, Colonial Pipeline, and multiple municipal water systems.
</p>

<p>
	 
</p>

<p>
	By analyzing 1,200 ransomware cases since 2020, NordLocker found that internet companies and online services are hardly the top targets. Instead, the data shows that construction companies have been hit the hardest with 93 affected companies from the industry. This is closely followed by 86 manufacturing companies.
</p>

<p>
	 
</p>

<p style="text-align:center;">
	<img alt="0374gXGQL53xqgQDCRCgctT-2.fit_lim.size_8" class="ipsImage" data-ratio="61.25" height="375" width="720" src="https://i.pcmag.com/imagery/articles/0374gXGQL53xqgQDCRCgctT-2.fit_lim.size_845x.png" />
</p>

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

<p>
	It turns out that technology and IT businesses are just the 6th most targeted industry, with 62 companies hit by a ransomware attack—which seems surprising. Despite our reliance on these types of companies, hitting financial institutions and healthcare providers seems like the preferred ransomware targets.
</p>

<p>
	 
</p>

<p>
	Nordlocker also found that the Conti ransomware group was responsible for 450 attacks, making it the most dangerous attacker over the past year. REvil was responsible for 210 attacks, Dopple Paymer was linked to 200 attacks, and PYSA was responsible for 188 attacks.
</p>

<p>
	 
</p>

<p>
	Ransomware is typically spread through malicious emails or fake websites to gain access to valuable files and systems, so it's important to invest in ransomware protection and avoid phishing scams. If you do find yourself falling victim to such an attack, though, we do not recommend paying the ransom.
</p>

<p>
	 
</p>

<p>
	<strong><span style="font-size:18px;"><a href="https://www.pcmag.com/news/these-companies-are-most-at-risk-for-ransomware-attacks" rel="external nofollow">Source</a></span></strong>
</p>
]]></description><guid isPermaLink="false">3180</guid><pubDate>Fri, 29 Oct 2021 14:36:18 +0000</pubDate></item><item><title>Russian TrickBot Gang Hacker Extradited to U.S. Charged with Cybercrime</title><link>https://nsaneforums.com/news/security-privacy-news/russian-trickbot-gang-hacker-extradited-to-us-charged-with-cybercrime-r3177/</link><description><![CDATA[<p>
	A Russian national, who was arrested in South Korea last month and extradited to the U.S. on October 20, appeared in a federal court in the state of Ohio on Thursday to face charges for his alleged role as a member of the infamous TrickBot group.
</p>

<p>
	 
</p>

<p>
	Court documents showed that Vladimir Dunaev, 38, along with other members of the transnational, cybercriminal organization, stole money and confidential information from unsuspecting victims, including individuals, financial institutions, school districts, utility companies, government entities, and private businesses.
</p>

<p>
	 
</p>

<p>
	Starting its roots as a banking trojan in 2016, TrickBot has evolved into a modular, multi-stage Windows-based crimeware solution capable of pilfering valuable personal and financial information, and even dropping ransomware and post-exploitation toolkits on compromised devices. The malware is also notorious for its resilience, having survived at least two takedowns spearheaded by Microsoft and the U.S. Cyber Command a year ago.
</p>

<p>
	 
</p>

<p>
	However, on the legal front, the U.S. government earlier this year charged a 55-year-old Latvian woman, named Alla Witte, who the prosecutors said worked as a programmer "overseeing the creation of code related to the monitoring and tracking of authorized users of the Trickbot malware."
</p>

<p>
	Dunaev is the second Trickbot defendant to be arrested in 2021.
</p>

<p>
	 
</p>

<p>
	Dunaev, specifically, is said to have worked as a developer for the group, in charge of creating, deploying, and managing the Trickbot malware beginning in November 2015, while also overseeing the malware's execution, as well as designing Firefox web browser modifications and helping to hide the malware from detection by security software.
</p>

<p>
	 
</p>

<p style="text-align:center;">
	<img alt="AVvXsEi_SNV5PxUNe1nNemX_EZp6CG60PJ3k3b_R" class="ipsImage" data-ratio="52.78" height="375" width="720" src="https://thehackernews.com/new-images/img/a/AVvXsEi_SNV5PxUNe1nNemX_EZp6CG60PJ3k3b_R1j1hgjWNoBfZ9OpRA96xAfja4AwkNNYR6GA8WwdymDF7pPeJ0lBaff48uO5NNhb2IYsArQ-EI1NN6qJf3QOCJcQnekxfgixtKLmxUNwbDJPdPlGICEJkb9SdQeGbqRJjIXXH2LaLDns-vuv-KktD2HTJ" />
</p>

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

<p>
	In early September, South Korean media outlets reported the arrest of Dunaev (then identified only as "Mr. A") at the Incheon International Airport when attempting to depart for Russia after being stranded in the country for over a year due to COVID-19. The suspect, who arrived in February 2020, also had his passport expired in the interim period, forcing him to stay in a hotel while awaiting for a replacement.
</p>

<p>
	 
</p>

<p>
	But once the passport was re-issued, the defendant tried to leave for his native home in Russia, leading to his arrest pursuant to an extradition request from the U.S. Dunaev has been charged with conspiracy to commit computer fraud and aggravated identity theft, conspiracy to commit wire and bank fraud, conspiracy to commit money laundering, and multiple counts of wire fraud, bank fraud, and aggravated identity theft.
</p>

<p>
	 
</p>

<p>
	If found guilty on all counts, the defendant faces a total prison term of 60 years.
</p>

<p>
	 
</p>

<p>
	"Trickbot attacked businesses and victims across the globe and infected millions of computers for theft and ransom, including networks of schools, banks, municipal governments, and companies in the health care, energy, and agriculture sectors," said Deputy Attorney General Lisa O. Monaco in a statement.
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://thehackernews.com/2021/10/russian-trickbot-gang-hacker-extradited.html" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">3177</guid><pubDate>Fri, 29 Oct 2021 14:07:21 +0000</pubDate></item><item><title>This New Android Malware Can Gain Root Access to Your Smartphones</title><link>https://nsaneforums.com/news/security-privacy-news/this-new-android-malware-can-gain-root-access-to-your-smartphones-r3176/</link><description><![CDATA[<p>
	An unidentified threat actor has been linked to a new Android malware strain that features the ability to root smartphones and take complete control over infected smartphones while simultaneously taking steps to evade detection.
</p>

<p>
	 
</p>

<p>
	The malware has been named "AbstractEmu" owing to its use of code abstraction and anti-emulation checks to avoid running while under analysis. Notably, the global mobile campaign is engineered to target users and infect as many devices as possible indiscriminately.
</p>

<p>
	 
</p>

<p>
	Lookout Threat Labs said it found a total of 19 Android applications that posed as utility apps and system tools like password managers, money managers, app launchers, and data saving apps, seven of which contained the rooting functionality. Only one of the rogue apps, called Lite Launcher, made its way to the official Google Play Store, attracting a total of 10,000 downloads before it was purged.
</p>

<p>
	 
</p>

<p>
	The apps are said to have been prominently distributed via third-party stores such as the Amazon Appstore and the Samsung Galaxy Store, as well as other lesser-known marketplaces like Aptoide and APKPure.
</p>

<p>
	 
</p>

<p style="text-align:center;">
	<img alt="AVvXsEh-pmYFJiHsfaLvAV3mbMDZmpQpBhjUq179" class="ipsImage" data-ratio="41.25" height="293" width="720" src="https://thehackernews.com/new-images/img/a/AVvXsEh-pmYFJiHsfaLvAV3mbMDZmpQpBhjUq179EWr7PhopEEW18ZqusCJjniA20sJU5V7AQru6PbVLGWgPGzVFkyGEUe8f3Gt9fJAGpzqpMFluHozfpz2ZC9rpRFFagwznluR1dnnwVEWOj4y-ZkIpz84qD7nKs7ye3xifDJdDyHc-A8BudQ7bwGFju06x=s728-e1000" />
</p>

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

<p>
	"While rare, rooting malware is very dangerous. By using the rooting process to gain privileged access to the Android operating system, the threat actor can silently grant themselves dangerous permissions or install additional malware — steps that would normally require user interaction," Lookout researchers said. "Elevated privileges also give the malware access to other apps' sensitive data, something not possible under normal circumstances."
</p>

<p>
	 
</p>

<p>
	Once installed, the attack chain is designed to one of five exploits for older Android security flaws that would allow it to gain root permissions and take over the device, extract sensitive data, and transmit to a remote attack-controlled server —
</p>

<p>
	 
</p>

<ul>
	<li>
		<span style="color:#2980b9;">CVE-2015-3636</span> (PongPongRoot)
	</li>
</ul>

<p>
	 
</p>

<ul>
	<li>
		<span style="color:#2980b9;">CVE-2015-1805</span> (iovyroot)
	</li>
</ul>

<p>
	 
</p>

<ul>
	<li>
		<span style="color:#2980b9;">CVE-2019-2215</span> (Qu1ckr00t)
	</li>
</ul>

<p>
	 
</p>

<ul>
	<li>
		<span style="color:#2980b9;">CVE-2020-0041</span>, and
	</li>
</ul>

<p>
	 
</p>

<ul>
	<li>
		<span style="color:#2980b9;">CVE-2020-0069</span>
	</li>
</ul>

<p>
	<br />
	Lookout attributed the mass distributed rooting malware campaign to a "well-resourced group with financial motivation," with telemetry data revealing that Android device users in the U.S. were the most impacted. The ultimate objective of the infiltrations remains unclear as yet.
</p>

<p>
	 
</p>

<p>
	"Rooting Android or jailbreaking iOS devices are still the most invasive ways to fully compromise a mobile device," the researchers said, adding "mobile devices are perfect tools for cyber criminals to exploit, as they have countless functionalities and hold an immense amount of sensitive data."
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://thehackernews.com/2021/10/this-new-android-malware-can-gain-root.html" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">3176</guid><pubDate>Fri, 29 Oct 2021 14:04:20 +0000</pubDate></item><item><title>AV-Comparatives welcome UK guidelines on auto-renewal by antivirus vendors</title><link>https://nsaneforums.com/news/security-privacy-news/av-comparatives-welcome-uk-guidelines-on-auto-renewal-by-antivirus-vendors-r3162/</link><description><![CDATA[<p>
	The UK Government’s Competition and Markets Authority (CMA) recently published guidelines for antivirus software vendors with regard to auto-renewal of subscriptions. These Compliance Principles advise security software vendors who sell to UK consumers how to avoid falling foul of British consumer protection laws. Austrian AV test lab AV-Comparatives supports the principles behind the CMA guidelines. 
</p>

<p>
	<br />
	The principle of auto-renewal is quite simple. Antivirus software is almost always sold as a service, that is to say, it is not a one-off purchase, but requires regular subscription payments to ensure that the program continues to receive updates. Auto-renewal of the subscription means that when the customer first purchases the software, the vendor retains the customer’s payment details; then, when the initial subscription period (typically one year) expires, the vendor will take payment for the next period, and extend the service provision, without any action being required of the customer. 
</p>

<p>
	 
</p>

<p>
	Auto-renewal is likely to be of benefit to the software vendor, as it means a continued source of income for them, without any additional effort or expense on their part. For customers who are satisfied with the service, auto-renewal brings convenience, and the peace of mind that their computers will remain protected. However, the CMA article notes that some antivirus vendors have been investigated to determine whether their autorenewal policies comply with UK consumer protection laws.  
</p>

<p>
	 
</p>

<p>
	UK laws do not prohibit the use of auto-renewal with antivirus subscriptions. However, the CMA stipulates conditions that vendors should adhere to when offering automatic renewal. In essence, these ensure that consumers are fully informed of the auto-renewal process, what it will cost them (relative to buying a new subscription), and how to cancel it. The full list of CMA’s Compliance Principles is shown below: 
</p>

<p>
	 
</p>

<ol>
	<li>
		“Make sure your customers are able to make a fully informed choice about auto-renewal” 
	</li>
	<li>
		“Make sure that any price claims you make are accurate and do not mislead your customers” 
	</li>
	<li>
		“Confirm to the customer the key points of the auto-renewing contract” 
	</li>
	<li>
		“Make sure that your customers can easily turn off auto-renewal” 
	</li>
	<li>
		“Remind your customers about auto-renewal in good time before it happens” 
	</li>
	<li>
		“Once off, auto-renewal stays off” 
	</li>
	<li>
		“Give your customers the chance to change their mind” 
	</li>
	<li>
		“Make it easy for your customers to obtain a refund if they want one” 
	</li>
	<li>
		Provide appropriate safeguards for customers who are no longer using the product following auto-renewal” 
	</li>
</ol>

<p>
	 
</p>

<p>
	AV-Comparatives reports that it is aware of numerous complaints from customers regarding subscription auto-renewal. Last year, the Austrian antivirus testing lab investigated the auto-renewal policies of various consumer security-software vendors. Their findings were published in the testing lab’s  Consumer Summary Report 2020.  
</p>

<p>
	 
</p>

<p>
	The report noted that in the most extreme case, the auto-renewal price was over three times the cost of the first year’s subscription. This is not in itself illegal or improper. However, it appears that some customers feel they were not suitably informed about the auto-renewal procedure, how to cancel it, or what the renewal price would be.  
</p>

<p>
	 
</p>

<p>
	Another important factor with auto-renewal is whether it is compulsory or optional at the time of purchase. If it is optional, the customer can complete the purchase without activating auto-renewal at all. If it is compulsory, the customer has to proactively contact the vendor to prevent the subscription renewing. AV-Comparatives found that over half of the products it investigated had compulsory auto-renewal, and that 7 out of 8 users it surveyed were not happy to have mandatory auto-renewal when purchasing security software. AV-Comparatives encourages AV vendors to let customers decide at the time of purchase whether they want auto-renewal or not. 
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://www.av-comparatives.org/av-comparatives-welcome-uk-guidelines-on-auto-renewal-by-antivirus-vendors/" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">3162</guid><pubDate>Thu, 28 Oct 2021 17:17:11 +0000</pubDate></item><item><title>Critical flaw in GoCD provides platform for supply chain attacks</title><link>https://nsaneforums.com/news/security-privacy-news/critical-flaw-in-gocd-provides-platform-for-supply-chain-attacks-r3161/</link><description><![CDATA[<p>
	<span style="font-size:20px;">Vulnerability in software used by Fortune 500 firms raises fears of SolarWinds-like impact</span>
</p>

<p>
	 
</p>

<p>
	A critical vulnerability in popular CI/CD tool GoCD could allow unauthenticated attackers to extract encrypted secrets and poison software build processes – potentially paving the way to supply chain attacks.
</p>

<p>
	 
</p>

<p>
	The maintainers of the open source, Java-built platform have addressed the arbitrary file read flaw along with several other bugs discovered by Swiss security firm SonarSource.
</p>

<p>
	 
</p>

<p>
	Miscreants who abuse the vulnerability could take over GoCD servers and execute arbitrary code, as well as impersonate GoCD agents and seize control of software delivery pipelines.
</p>

<p>
	 
</p>

<p>
	<span style="font-size:20px;">SolarWinds-style threat</span>
</p>

<p>
	<br />
	“Attackers could leak API keys to external services such as Docker Hub and GitHub, steal private source code, get access to production environments, and overwrite files that are being produced as part of the build processes,” said SonarSource security researcher Simon Scannell in a blog post.
</p>

<p>
	 
</p>

<p>
	The flaw, he added, could serve as a springboard for attacks of a similar nature to the SolarWinds hack, “where attackers gained access to the software delivery pipeline and added a backdoor to critical software, leading to one of the most impactful supply-chain attacks thus far”.
</p>

<p>
	 
</p>

<p>
	The lack of public data on how widely GoCD is used makes it hard to gauge the impact of a hypothetical supply chain attack, Scannell tells The Daily Swig, “but we know that it is used by Fortune 500 companies”.
</p>

<p>
	 
</p>

<p>
	He adds: “An attacker who has compromised a CI/CD pipeline can push malicious code into anything the pipeline produces – for example Docker images, JAR files, executables, libraries, etc.
</p>

<p>
	 
</p>

<p>
	“The malicious code would then impact anyone who uses and trusts the produced software.”
</p>

<p>
	 
</p>

<p>
	<span style="font-size:20px;">Broken authentication</span>
</p>

<p>
	<br />
	The researchers unearthed the vulnerability after discovering a breaking change made in August 2018 that removed support for OAuth and made endpoints exposed by add-ons responsible for enforcing authentication. “Prior to this commit, these endpoints were accessible to authenticated users only,” said Scannell.
</p>

<p>
	 
</p>

<p>
	The issue was ushered into existence by the introduction in 2020 of Business Continuity, an add-on designed to mitigate the impact of a GoCD server failure or that of its database node.
</p>

<p>
	 
</p>

<p>
	This add-on has been removed from the latest version, but Scannell says he is unsure how the wider breaking change “will be addressed in the long-term”.
</p>

<p>
	 
</p>

<p>
	<span style="font-size:20px;">Timeline and patches</span>
</p>

<p>
	<br />
	All GoCD instances running versions between v20.6.0 and v21.2.0 are affected by the flaw.
</p>

<p>
	 
</p>

<p>
	GoCD’s security team were alerted to the vulnerabilities on October 18 through the tool’s vulnerability disclosure program on HackerOne. The issues were subsequently addressed in version v21.3.0, which landed on Tuesday (October 26).
</p>

<p>
	 
</p>

<p>
	“If no update can be run immediately, we recommend setting up firewall rules to prevent any HTTP requests to the /add-on/** and/or /add-on/business-continuity/** endpoints,” said Scannell.
</p>

<p>
	 
</p>

<p>
	The researcher also warned that SonarSource had found “hundreds of instances exposed to the internet” in violation of best practices.
</p>

<p>
	 
</p>

<p>
	“We would like to thank the GoCD security team who have been exceptionally responsive in the disclosure process,” added Scannell.
</p>

<p>
	 
</p>

<p>
	SonarSource says a forthcoming, follow-up blog post will detail a cross-site scripting (XSS) vulnerability and remote code execution (RCE) bug chain in GoCD.
</p>

<p>
	 
</p>

<p>
	<span style="font-size:20px;"><strong><a href="https://portswigger.net/daily-swig/critical-flaw-in-gocd-provides-platform-for-supply-chain-attacks" rel="external nofollow">Source</a></strong></span>
</p>
]]></description><guid isPermaLink="false">3161</guid><pubDate>Thu, 28 Oct 2021 17:12:04 +0000</pubDate></item><item><title>Israeli Researcher Cracked Over 3500 Wi-Fi Networks in Tel Aviv City</title><link>https://nsaneforums.com/news/security-privacy-news/israeli-researcher-cracked-over-3500-wi-fi-networks-in-tel-aviv-city-r3155/</link><description><![CDATA[<p>
	Over 70% of Wi-Fi networks from a sample size of 5,000 were hacked with "relative ease" in the Israeli city of Tel Aviv, highlighting how unsecure Wi-Fi passwords can become a gateway for serious threats to individuals, small businesses, and enterprises alike.
</p>

<p>
	 
</p>

<p>
	CyberArk security researcher Ido Hoorvitch, who used a Wi-Fi sniffing equipment costing about $50 to collect 5,000 network hashes for the study, said "the process of sniffing Wi-Fis and the subsequent cracking procedures was a very accessible undertaking in terms of equipment, costs and execution."
</p>

<p>
	 
</p>

<p>
	The new Wi-Fi attack builds on previous findings by Jens "atom" Steube in 2018 that involves capturing what's called the PMKIDs associated with a client (aka SSID) in order to attempt a brute-force attack using password recovery tools like hashcat.
</p>

<p>
	 
</p>

<p style="text-align:center;">
	<img alt="AVvXsEj7UtrTpkOE7KUyKdcXscoowuskVOwALTa4" class="ipsImage" data-ratio="60.00" height="427" width="720" src="https://thehackernews.com/new-images/img/a/AVvXsEj7UtrTpkOE7KUyKdcXscoowuskVOwALTa4rSb1aAkzAl35ZgMsQqYIcnyeVhtDmE_EsCeXRaayEuMeit56sPzZ7I1hYEEcFZ2rA6mbULwqmiZjMn6zyeo_fKO3yqC5XlFrKqQEXvRQjUZOy3nW6r8pntNOy0DrTbKeU1hcr5b_tT_UxlVF1i7byjEA" /><img alt="AVvXsEj7UtrTpkOE7KUyKdcXscoowuskVOwALTa4" class="ipsImage" data-ratio="60.00" height="427" width="720" src="https://thehackernews.com/new-images/img/a/AVvXsEj7UtrTpkOE7KUyKdcXscoowuskVOwALTa4rSb1aAkzAl35ZgMsQqYIcnyeVhtDmE_EsCeXRaayEuMeit56sPzZ7I1hYEEcFZ2rA6mbULwqmiZjMn6zyeo_fKO3yqC5XlFrKqQEXvRQjUZOy3nW6r8pntNOy0DrTbKeU1hcr5b_tT_UxlVF1i7byjEA" />
</p>

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

<p>
	 
</p>

<p>
	PMKID is a unique key identifier used by the access point (AP) to keep track of the pre-shared key — i.e., pairwise master key aka PMK — being used for the client. PMKID is a derivative of AP'S MAC address, client's MAC address, PMK and PMK Name.
</p>

<p>
	 
</p>

<p>
	"Atom's technique is clientless, making the need to capture a user's login in real time and the need for users to connect to the network at all obsolete," Hoorvitch said in the report. "Furthermore, it only requires the attacker to capture a single frame and eliminate wrong passwords and malformed frames that are disturbing the cracking process."
</p>

<p>
	 
</p>

<p>
	The collected hashes were then subjected to a "mask attack" to determine if cell phone numbers were used as Wi-Fi passwords, a practice common in Israel, uncovering 2,200 passwords in the process. In a subsequent dictionary attack using "RockYou.txt" as a password source, the researcher was able to crack an additional 900 hashes, with the number of breached passwords decreasing as the password length increased.
</p>

<p>
	 
</p>

<p>
	A successful compromise of the Wi-Fi network could enable a threat actor to mount man-in-the-middle (MiTM) attacks to gain access to sensitive information, not to mention pivot laterally across the network to breach other critical systems that are connected to the same network.
</p>

<p>
	 
</p>

<p>
	"The lesson here? The longer the password, the better," Hoorvitch said. "A strong password should include at least one lower case character, one upper case character, one symbol, one digit. It should be at least 10 characters long."
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://thehackernews.com/2021/10/israeli-researcher-cracked-over-3500-wi.html" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">3155</guid><pubDate>Thu, 28 Oct 2021 14:23:31 +0000</pubDate></item><item><title>PANIC STATIONS Microsoft warns BILLIONS of passwords have been hacked &#x2013; check yours now</title><link>https://nsaneforums.com/news/security-privacy-news/panic-stations-microsoft-warns-billions-of-passwords-have-been-hacked-%E2%80%93-check-yours-now-r3152/</link><description><![CDATA[<p>
	They involve hackers gathering a list of usernames and passwords leaked online and plugging them in to various websites.
</p>

<p>
	 
</p>

<p>
	Cyber crooks hope to eventually stumble across a working combination that gives them access to someone's email or social media accounts.
</p>

<p>
	From there, they can attempt to break into more sensitive accounts such as your bank or iCloud.
</p>

<p>
	 
</p>

<p>
	The attacks were identified by Microsoft's Detection and Response Team (DART), which is dedicated to identifying the latest cyber attack methods.
</p>

<p>
	"This threat is a moving target with techniques and tools always changing," researchers wrote on Tuesday.
</p>

<p>
	 
</p>

<p>
	"They are different from brute-force attacks, which involve attackers ... attempting to attack a small number of user accounts."
</p>

<p>
	 
</p>

<p>
	The researchers identified two commonly used kinds of password sprays.
</p>

<p>
	 
</p>

<p>
	One involves matching known usernames to commonly used passwords, such as "password" or "123456".
</p>

<p>
	 
</p>

<p>
	The hope is that they will eventually “guess” the correct combination for as many users as possible.
</p>

<p>
	 
</p>

<p>
	The second technique highlighted by Microsoft involves usernames and passwords that have been leaked online by crooks in the past.
</p>

<p>
	 
</p>

<p>
	The 2012 LinkedIn hack, for instance, saw the usernames and passwords of 6.5million users stolen by cyber crooks and sold online.
</p>

<p>
	 
</p>

<p>
	Google estimates that over 4billion username and password combinations have leaked in recent years.
</p>

<p>
	 
</p>

<p>
	Hackers can plug these combinations into other websites in the hope that you've reused them across multiple online accounts.
</p>

<p>
	 
</p>

<p>
	Microsoft said: "Once attackers have gained the credentials to an account, they can access any sensitive resources that users can access and have the malicious activity appear as normal.
</p>

<p>
	 
</p>

<p>
	"This creates a repeating cycle attack pattern, where one compromised account can lead to access to resources where additional credentials can be harvested, and thus even further resource access."
</p>

<p>
	 
</p>

<p>
	<span style="font-size:18px;"><strong>How to check if your passwords are safe</strong></span>
</p>

<p>
	<br />
	The free Password Checkup software can be loaded onto Google Chrome and lets you know if your account details have been compromised in a cyber attack or data breach.
</p>

<p>
	 
</p>

<p>
	Once installed, the Chrome extension runs in the background of your browser and checks any login details you used.
</p>

<p>
	 
</p>

<p>
	If your password or username matches a Google database of more than 4billion compromised credentials, the software will flag them.
</p>

<p>
	 
</p>

<p>
	An alert that pops up on your screen reads: "Password Checkup detected that your password for [website] is no longer safe due to a data breach. You should change your password now."
</p>

<p>
	 
</p>

<p>
	If a new data breach occurs, the tool will let you if any of your passwords were compromised the next time you login to Chrome.
</p>

<p>
	 
</p>

<p>
	It gives you any exposed accounts in a small list that you can click through to change your passwords.
</p>

<p>
	 
</p>

<p>
	All information is encrypted, and Google says it has no way of seeing your data.
</p>

<p>
	 
</p>

<p>
	"We built Password Checkup so that no one, including Google, can learn your account details," Google said.
</p>

<p>
	 
</p>

<p>
	"Password Checkup was built with privacy in mind. It never reports any identifying information about your accounts, passwords or device."
</p>

<p>
	You can download Password Checkup from the Chrome webstore by clicking here.
</p>

<p>
	 
</p>

<p>
	Alternatively, popular web-tool Have I Been Pwned also lets you check if you've ever been hacked.
</p>

<p>
	 
</p>

<p style="text-align:center;">
	<img alt="NINTCHDBPICT000674940193-1.jpg?w=670" class="ipsImage" data-ratio="74.78" height="501" width="670" src="https://www.thesun.co.uk/wp-content/uploads/2021/10/NINTCHDBPICT000674940193-1.jpg?w=670" />
</p>

<p style="text-align:center;">
	<span style="font-size:12px;"><em>Hackers are using leaked username and password combinations to break into online accountsCredit: Getty</em></span>
</p>

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

<p>
	<span style="font-size:18px;"><strong><a href="https://www.the-sun.com/tech/3950378/microsoft-billions-passwords-hacked-check-now/" rel="external nofollow">Source</a></strong></span>
</p>
]]></description><guid isPermaLink="false">3152</guid><pubDate>Thu, 28 Oct 2021 13:19:04 +0000</pubDate></item><item><title>Australia drafts Online Privacy Bill to bolster data security</title><link>https://nsaneforums.com/news/security-privacy-news/australia-drafts-online-privacy-bill-to-bolster-data-security-r3122/</link><description><![CDATA[<p>
	Australia's Attorney-General has submitted the first draft of a new Online Privacy Bill that contains striking reforms over existing privacy laws. 
</p>

<p>
	 
</p>

<p>
	The goal of the new bill is to modernize the legislative context that underpins online data protection and security and make new laws tight enough to enforce data handling practices by Internet entities. 
</p>

<h2>
	Four main pillars of reform
</h2>

<p>
	The first draft of the Online Privacy Bill includes the following four main objectives: 
</p>

<p>
	 
</p>

<ol>
	<li>
		Development of an OP Code that will determine which entities are subject to the legislation and precisely how they are expected to apply its provisions.
	</li>
	<li>
		Enforce the Privacy Act, and more specifically ‘Section 13G’, which prohibits online entities from breaching the privacy rights of their users.
	</li>
	<li>
		Enable law enforcement bodies, the state, and foreign privacy regulators to request information and/or documents from online platforms.
	</li>
	<li>
		Enforce all of the above on extra-territorial entities that are not incorporated in Australia but carry business in the country.
	</li>
</ol>

<p>
	 
</p>

<p>
	The OP code will be applicable to organizations that provide social media services, data brokerage, and any online platform that has had over 2,500,000 unique visitors from Australia in the past year. 
</p>

<p>
	 
</p>

<p>
	These entities must ensure that their privacy policy is clearly communicated to ots users, that consent for data collection from the users is sought and acquired, and that children under the age of 16 enjoy elevated protections on that front. 
</p>

<p>
	 
</p>

<p>
	The enforcement of the Privacy Act increases the penalty for privacy violations from AU$2.2 million to AU$10,000,000 ($7.5 million). 
</p>

<p>
	 
</p>

<p>
	Alternatively, the violating entity will pay three times the value of the benefit obtained from confirmed data privacy violations, or 10% of their annual turnover from the previous year. 
</p>

<h2>
	A year in review
</h2>

<p>
	The <a href="https://consultations.ag.gov.au/rights-and-protections/privacy-act-review-discussion-paper/user_uploads/privacy-act-review---discussion-paper.pdf" rel="external nofollow" target="_blank">discussion paper</a> contains several other changes in its 200+ pages, like broadening the definition of personal information to include technical data like unique identifiers and removing the employee records exemption. 
</p>

<p>
	 
</p>

<p>
	All reform proposals need to be be submitted to the Attorney General <a href="https://consultations.ag.gov.au/rights-and-protections/privacy-act-review-discussion-paper/" rel="external nofollow" target="_blank">by January 10, 2022</a>, so there's over a year left for stakeholders to express their opinion on the matter. 
</p>

<p>
	 
</p>

<p>
	From the first draft, though, it is clear that Australia plans on bolstering the protection of users' data online. However, there is plenty of time for online entities to lobby for fewer protections, weakening the proposed privacy changes.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.bleepingcomputer.com/news/security/australia-drafts-online-privacy-bill-to-bolster-data-security/" rel="external nofollow">Australia drafts Online Privacy Bill to bolster data security</a>
</p>
]]></description><guid isPermaLink="false">3122</guid><pubDate>Tue, 26 Oct 2021 21:39:29 +0000</pubDate></item><item><title>Mozilla blocks malicious add-ons installed by 455K Firefox users</title><link>https://nsaneforums.com/news/security-privacy-news/mozilla-blocks-malicious-add-ons-installed-by-455k-firefox-users-r3113/</link><description><![CDATA[<p>
	Mozilla blocked malicious Firefox add-ons installed by roughly 455,000 users after discovering in early June that they were abusing the <a href="https://developer.mozilla.org/docs/Mozilla/Add-ons/WebExtensions/API/proxy" rel="external nofollow" target="_blank">proxy API</a> to block Firefox updates.
</p>

<p>
	 
</p>

<p>
	The add-ons (named Bypass and Bypass XM) were using the API to intercept and redirect web requests to block users from downloading updates, updating remotely configured content, and accessing updated blocklists.
</p>

<p>
	 
</p>

<p>
	"To prevent additional users from being impacted by new add-on submissions misusing the proxy API, we paused on approvals for add-ons that used the proxy API until fixes were available for all users," Mozilla's  Rachel Tublitz and Stuart Colville said.
</p>

<p>
	 
</p>

<p>
	"Starting with Firefox 91.1, Firefox now includes changes to fall back to direct connections when Firefox makes an important request (such as those for updates) via a proxy configuration that fails.
</p>

<p>
	 
</p>

<p>
	"Ensuring these requests are completed successfully helps us deliver the latest important updates and protections to our users."
</p>

<p>
	 
</p>

<p>
	To block similar malicious add-ons to abuse the same API, Mozilla has added a system add-on (hidden, impossible to disable, and updateable restartlessly) dubbed <a href="https://ftp.mozilla.org/pub/system-addons/proxy-failover/" rel="external nofollow" target="_blank">Proxy Failover</a>.
</p>

<p>
	 
</p>

<p>
	This new add-on prevents attempts to interfere with update mechanisms in current and older Firefox versions.
</p>

<div>
	<figure>
		<p>
			 
		</p>

		<p>
			<img alt="Bypass_blocked.png" class="ipsImage" data-ratio="33.58" height="227" width="676" src="https://www.bleepstatic.com/images/news/u/1109292/2021/Bypass_blocked.png">
		</p>

		<figcaption>
			Malicious Bypass add-onn blocked from installing (BleepingComputer)
		</figcaption>
	</figure>
</div>

<p>
	While Mozilla didn't share if the two add-ons were doing anything else malicious in the background, BleepingComputer found after analyzing them that they likely were using a reverse proxy to bypass paywalled sites.
</p>

<p>
	 
</p>

<p>
	However, the add-ons also had Mozilla's domain in the paywall list which inadvertently also blocked browser updates.
</p>

<p>
	 
</p>

<p>
	A Mozilla spokesperson wasn't able to provide more details when contacted by BleepingComputer earlier today.
</p>

<h2>
	How to make sure you're not affected
</h2>

<p>
	Mozilla advises users to update their web browsers to at least the latest release version (Firefox 93), which can make sure that they're protected from add-ons abusing the proxy API.
</p>

<p>
	 
</p>

<p>
	"It is always a good idea to keep Firefox up to date, and if you’re using Windows to make sure Microsoft Defender is running. Together, Firefox 93 and Defender will make sure you’re protected from this issue," Tublitz and Colville <a href="https://blog.mozilla.org/security/2021/10/25/securing-the-proxy-api-for-firefox-add-ons/" rel="external nofollow" target="_blank">added</a>.
</p>

<p>
	 
</p>

<p>
	Microsoft Defender is <a href="https://www.virustotal.com/gui/file/df743f9de2cdefa5b2f949ea8fe30f31bf944d460d38a266d55f00e72ca98a79/detection" rel="external nofollow" target="_blank">the only anti-malware solution detecting the add-ons as malicious</a>, tagging them as <a href="https://www.microsoft.com/en-us/wdsi/threats/malware-encyclopedia-description?Name=BrowserModifier:JS/BypassPaywall.A&amp;threatId=303550" rel="external nofollow" target="_blank">BrowserModifier:JS/BypassPaywall.A</a>.
</p>

<p>
	 
</p>

<p>
	If you're not running Firefox 93 and have not disabled browser updates, you could be impacted by this issue. To make sure, try to update Firefox to the latest versions since it bundles an updated blocklist designed to disable these malicious add-ons automatically.
</p>

<p>
	 
</p>

<p>
	If you still can't update Firefox, you also have the option to find the add-ons that block you from upgrading to a newer version and <a href="https://support.mozilla.org/kb/disable-or-remove-add-ons" rel="external nofollow" target="_blank">remove them</a> by going through these steps:
</p>

<p>
	 
</p>

<p style="margin-left: 40px;">
	1. Visit the <a href="https://support.mozilla.org/kb/use-troubleshooting-information-page-fix-firefox#w_accessing-the-troubleshooting-information-page" rel="external nofollow">Troubleshooting Information page</a>.
</p>

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

<p style="margin-left: 40px;">
	2. In the Add-ons section, search for one of the following entries:
</p>

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

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

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

<p style="margin-left: 40px;">
	ID: {7c3a8b88-4dc9-4487-b7f9-736b5f38b957}
</p>

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

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

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

<p style="margin-left: 40px;">
	ID: {d61552ef-e2a6-4fb5-bf67-8990f0014957}
</p>

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

<p style="margin-left: 40px;">
	NOTE: Make sure the IDs match exactly as there might be other, unrelated add-ons using those or similar names. If none of those IDs are shown in the list, you are not affected.
</p>

<p>
	 
</p>

<p>
	If you want to ensure that there are no traces left, you can also <a href="https://support.mozilla.org/kb/refresh-firefox-reset-add-ons-and-settings" rel="external nofollow" target="_blank">refresh Firefox</a> to reset all add-ons and settings or start from scratch by <a href="https://www.mozilla.org/firefox/all" rel="external nofollow" target="_blank">downloading and installing a new copy of Firefox</a>.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.bleepingcomputer.com/news/security/mozilla-blocks-malicious-add-ons-installed-by-455k-firefox-users/" rel="external nofollow">Mozilla blocks malicious add-ons installed by 455K Firefox users</a>
</p>
]]></description><guid isPermaLink="false">3113</guid><pubDate>Mon, 25 Oct 2021 21:53:13 +0000</pubDate></item><item><title>The Russian hacker group behind the SolarWinds attack is at it again, Microsoft says</title><link>https://nsaneforums.com/news/security-privacy-news/the-russian-hacker-group-behind-the-solarwinds-attack-is-at-it-again-microsoft-says-r3106/</link><description><![CDATA[<p>
	Last year a hacker group used a bit of malicious code it hid in a software update by the company SolarWinds to launch an immense cyberattack against U.S. government agencies and corporations.
</p>

<p>
	 
</p>

<p>
	The group behind the attack, Nobelium, is reportedly being directed by the Russian intelligence service. And they're at it again.
</p>

<p>
	 
</p>

<p>
	According to Microsoft, one of the victims of the SolarWinds hack, the group is targeting technology companies that resell and provide cloud services for customers.
</p>

<p>
	 
</p>

<p>
	"Nobelium has been attempting to replicate the approach it has used in past attacks by targeting organizations integral to the global IT supply chain," Tom Burt, Microsoft's Corporate Vice President of Customer Security &amp; Trust, said in a blog post on the company's website.
</p>

<p>
	 
</p>

<p>
	"We believe Nobelium ultimately hopes to piggyback on any direct access that resellers may have to their customers' IT systems and more easily impersonate an organization's trusted technology partner to gain access to their downstream customers," he added.
</p>

<p>
	 
</p>

<p>
	The hacker group hasn't tried to ferret out vulnerabilities in software, Burt said, but rather has been using techniques like phishing and password spray to gain entry to the targeted networks.
</p>

<p>
	 
</p>

<p>
	A senior Biden administration official declined to comment on who it believed was responsible for the latest attacks. But in responding to the latest news from Microsoft, they pointed out that the hacking attempts were both unsophisticated and largely unsuccessful, unlike the SolarWinds campaign, which involved a complex intrusion using a software update which impacted an indiscriminate number of victims.
</p>

<p>
	 
</p>

<p>
	In this case, this latest spying campaign by the Russian SVR appears to be classic espionage, and out of the 141 companies Microsoft notified, only about 14 concluded there might have been a successful compromise, with limited impact.
</p>

<p>
	 
</p>

<p>
	The targets — cloud service providers — are particularly popular recently as bad actors focus on the all-important supply chain to try and gain access to the more attractive targets: their clients, including government agencies.
</p>

<p>
	 
</p>

<p>
	"Broadly speaking, the federal government is aggressively using our authorities to protect the Nation from cyber threats, including helping the private sector defend itself through increased intelligence sharing, innovative partnerships to deploy cybersecurity technologies, bilateral and multilateral diplomacy, and measures we do not speak about publicly for national security reasons," said the senior administration official.
</p>

<p>
	 
</p>

<p>
	<em>Jenna McLaughlin contributed to this report.</em>
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://www.npr.org/2021/10/25/1048982477/russian-hacker-solarwinds-attack-microsoft" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">3106</guid><pubDate>Mon, 25 Oct 2021 19:18:28 +0000</pubDate></item><item><title>New Attack Let Attacker Collect and Spoof Browser's Digital Fingerprints</title><link>https://nsaneforums.com/news/security-privacy-news/new-attack-let-attacker-collect-and-spoof-browsers-digital-fingerprints-r3103/</link><description><![CDATA[<p>
	A "potentially devastating and hard-to-detect threat" could be abused by attackers to collect users' browser fingerprinting information with the goal of spoofing the victims without their knowledge, thus effectively compromising their privacy.
</p>

<p>
	 
</p>

<p>
	Academics from Texas A&amp;M University dubbed the attack system "Gummy Browsers," likening it to a nearly 20-year-old "Gummy Fingers" technique that can impersonate a user's fingerprint biometrics.
</p>

<p>
	 
</p>

<p>
	"The idea is that the attacker 𝐴 first makes the user 𝑈 connect to his website (or to a well-known site the attacker controls) and transparently collects the information from 𝑈 that is used for fingerprinting purposes (just like any fingerprinting website 𝑊 collects this information)," the researchers outlined. "Then, 𝐴 orchestrates a browser on his own machine to replicate and transmit the same fingerprinting information when connecting to 𝑊, fooling 𝑊 to think that 𝑈 is the one requesting the service rather than 𝐴."
</p>

<p>
	 
</p>

<p>
	Browser fingerprinting, also called machine fingerprinting, refers to a tracking technique that's used to uniquely identify internet users by gathering attributes about the software and hardware of a remote computing system — such as the choice of browser, timezone, default language, screen resolution, add-ons, installed fonts, and even preferences — as well as behavioral characteristics that emerge when interacting with the web browser of the device.
</p>

<p>
	 
</p>

<p>
	Thus in the event the website populates targeted ads based on only the users' browser fingerprints, it could result in a scenario where the remote adversary can profile any target of interest by manipulating their own fingerprints to match that of the victim for extended periods of time, all the while the user and the website remain oblivious to the attack.
</p>

<p>
	 
</p>

<p>
	Put differently, by exploiting the fact that the server treats the attacker's browser as the victim's browser, not only would the former receive same or similar ads like that of the impersonated victim, it also allows the malicious actor to infer sensitive information about the user (e.g., gender, age group, health condition, interests, salary level, etc.) and build a personal behavioral profile.
</p>

<p>
	 
</p>

<p>
	In experimental tests, the researchers found that the attack system achieved average false-positive rates of greater than 0.95, indicating that most of the spoofed fingerprints were misrecognized as legitimate ones, thereby successfully tricking the digital fingerprinting algorithms. A consequence of such an attack is a breach of ad privacy and a bypass of defensive mechanisms put in place to authenticate users and detect fraud.
</p>

<p>
	 
</p>

<p>
	"The impact of Gummy Browsers can be devastating and lasting on the online security and privacy of the users, especially given that browser-fingerprinting is starting to get widely adopted in the real world," the researchers concluded. "In light of this attack, our work raises the question of whether browser fingerprinting is safe to deploy on a large scale."
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://thehackernews.com/2021/10/new-attack-let-attacker-collect-and.html" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">3103</guid><pubDate>Mon, 25 Oct 2021 15:55:07 +0000</pubDate></item><item><title>The 10 Websites That Track You the Most</title><link>https://nsaneforums.com/news/security-privacy-news/the-10-websites-that-track-you-the-most-r3098/</link><description><![CDATA[<p>
	You're likely aware that companies watch your online activity with varying levels of intrusiveness. As you move from website to website, trackers on those sites report on your digital movements to advertisers and other interested parties. They can even track your actual IRL moves and who you're with, based on your phone's networks and location.
</p>

<p>
	 
</p>

<p>
	Surfshark, maker of the popular VPN (we gave it a rating of 4, which is excellent) did some digging in a report called Who's Tracking You? to find which websites do the most tracking. Using a site list comprising the most popular websites according to SimilarWeb and AllYouCanRead, Surfshark found that the Big Tech companies with the most trackers are Google with 18, Microsoft with 17, and Amazon with 11.
</p>

<p>
	 
</p>

<p>
	Of other popular sites it included, the worst offender is click-bait bro-site theChive, with 143 trackers alone. Others in the top five include news outlets Salon and NY Daily News, and HGTV. Surfshark posits the possibility that such sites don't like to carry too many advertisements—so this may be how they make up for that lack of revenue.
</p>

<p>
	 
</p>

<p>
	Just as interesting are the sites not doing much tracking. That top five includes Wikipedia and TikTok, which are tied for first place with only three trackers found on each. Porn site XVideos is fourth (tied with Instagram), and Netflix is fifth. You can see the full top 10 at the top and bottom of the list here, or click over to Who's Tracking You? for an interactive list you can reorder by the type of sites you visit. It reveals that lifestyle sites led by theChive, LADbible, and Refinery29 had the most trackers on average. And in general, music and science sites had the least number of trackers.
</p>

<p>
	 
</p>

<p style="text-align:center;">
	<img alt="07reqQWPNnVlgvGG3dINsSw-2.fit_lim.size_8" class="ipsImage" data-ratio="75.10" height="540" width="330" src="https://i.pcmag.com/imagery/articles/07reqQWPNnVlgvGG3dINsSw-2.fit_lim.size_845x.png" />
</p>

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

<p>
	If you're worried about your privacy after reading this, Surfshark suggests you install a VPN (of course) to foil trackers. That’s not 100% effective, so the company also has an infographic in the report that covers different kinds of trackers, such as cookies, tracking pixels, and fingerprinting, and how to go deeper in blocking trackers. We suggest you also read How to Hide Your Browser Fingerprint, How to Control and Delete Cookies on Your Browser, and How to Get Google to Quit Tracking Your Location.
</p>

<p>
	 
</p>

<p style="text-align:center;">
	&lt; Watch the video at the <a href="https://www.pcmag.com/news/the-10-websites-that-track-you-the-most" rel="external nofollow">source page</a>. &gt;
</p>

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

<p>
	<span style="font-size:16px;"><strong><a href="https://www.pcmag.com/news/the-10-websites-that-track-you-the-most" rel="external nofollow">Source</a></strong></span>
</p>
]]></description><guid isPermaLink="false">3098</guid><pubDate>Mon, 25 Oct 2021 13:53:47 +0000</pubDate></item><item><title>Microsoft Warns of Continued Supply-Chain Attacks by the Nobelium Hacker Group</title><link>https://nsaneforums.com/news/security-privacy-news/microsoft-warns-of-continued-supply-chain-attacks-by-the-nobelium-hacker-group-r3093/</link><description><![CDATA[<p>
	Nobelium, the threat actor behind the SolarWinds compromise in December 2020, has been behind a new wave of attacks that compromised 14 downstream customers of multiple cloud service providers (CSP), managed service providers (MSP), and other IT services organizations, illustrating the adversary's continuing interest in targeting the supply chain via the "compromise-one-to-compromise-many" approach.
</p>

<p>
	 
</p>

<p>
	Microsoft, which disclosed details of the campaign on Monday, said it notified more than 140 resellers and technology service providers since May. Between July 1 and October 19, 2021, Nobelium is said to have singled out 609 customers, who were collectively attacked a grand total of 22,868 times.
</p>

<p>
	 
</p>

<p>
	"This recent activity is another indicator that Russia is trying to gain long-term, systematic access to a variety of points in the technology supply chain and establish a mechanism for surveilling – now or in the future – targets of interest to the Russian government," said Tom Burt, Microsoft's corporate vice president of customer security and trust.
</p>

<p>
	 
</p>

<p>
	The newly disclosed attacks do not exploit any specific security weaknesses in software but rather leverage a diverse range of techniques such as password spraying, token theft, API abuse, and spear-phishing to siphon credentials associated with privileged accounts of service providers, enabling the attackers to move laterally in cloud environments and mount further intrusions.
</p>

<p>
	 
</p>

<p>
	The goal, according to Microsoft, appears that "Nobelium ultimately hopes to piggyback on any direct access that resellers may have to their customers' IT systems and more easily impersonate an organization's trusted technology partner to gain access to their downstream customers."
</p>

<p>
	 
</p>

<p>
	If anything, the attacks are yet another manifestation of Nobelium's oft-repeated tactics, which has been found abusing trust relationships enjoyed by service providers to burrow into multiple victims of interest for intelligence gain. As mitigations, the company is recommending companies to enable multi-factor authentication (MFA) and audit delegated administrative privileges (DAP) to prevent any potential misuse of elevated permissions.
</p>

<p>
	 
</p>

<p>
	The development also arrives less than a month after the tech giant revealed a new passive and highly targeted backdoor dubbed "FoggyWeb" deployed by the hacking group to deliver additional payloads and steal sensitive information from Active Directory Federation Services (AD FS) servers.
</p>

<p>
	 
</p>

<p>
	<span style="font-size:16px;"><strong><a href="https://thehackernews.com/2021/10/microsoft-warns-of-continued-supply.html" rel="external nofollow">Source</a></strong></span>
</p>
]]></description><guid isPermaLink="false">3093</guid><pubDate>Mon, 25 Oct 2021 12:54:21 +0000</pubDate></item><item><title>FTC: ISPs collect and monetize far more user data than you&#x2019;d think</title><link>https://nsaneforums.com/news/security-privacy-news/ftc-isps-collect-and-monetize-far-more-user-data-than-you%E2%80%99d-think-r3071/</link><description><![CDATA[<p>
	The Federal Trade Commission (FTC) found that the six largest internet service providers (ISPs) in the U.S. collect and share customers' personal data without providing them with info on how it's used or meaningful ways to control this process.
</p>

<p>
	 
</p>

<p>
	"Many internet service providers (ISPs) collect and share far more data about their customers than many consumers may expect—including access to all of their Internet traffic and real-time location data—while failing to offer consumers meaningful choices about how this data can be used," the FTC said.
</p>

<p>
	 
</p>

<p>
	This was found as part of a study, started in 2019, into the privacy practices of U.S. broadband companies and related entities and how they collect, retain, use, and disclose info about consumers and their devices.
</p>

<p>
	 
</p>

<p>
	The six broadband providers included in FTC's report are AT&amp;T Mobility, Cellco Partnership (aka Verizon Wireless), Charter Communications Operating, Comcast (aka Xfinity), T-Mobile U.S., and Google Fiber.
</p>

<p>
	 
</p>

<p>
	The FTC also included in the study three advertising entities affiliated with these companies: AT&amp;T's Appnexus rebranded as Xandr, Verizon's Verizon Online, and Oath Americas rebranded as Verizon Media.
</p>

<p>
	 
</p>

<p>
	Together, the six companies currently control roughly 98 percent of the nation's mobile Internet market, according to the FTC.
</p>

<p>
	 
</p>

<p>
	The FTC also noted that these tech giants have expanded beyond fixed residential internet and mobile internet services into other areas.
</p>

<p>
	By including voice, content, smart devices, advertising, and analytics services, they could further increase the volume of customer data they can collect and share with third parties.
</p>

<p>
	 
</p>

<p>
	<span style="font-size:20px;"><strong>Troubling data collection, protection, and sharing practices</strong></span>
</p>

<p>
	<br />
	"The report identified several troubling data collection practices among several of the ISPs, including that they combine data across product lines; combine personal, app usage, and web browsing data to target ads; place consumers into sensitive categories such as by race and sexual orientation; and share real-time location data with third-parties," the FTC said.
</p>

<p>
	 
</p>

<p>
	As the FTC further discovered, the ISPs amass huge pools of sensitive consumer data and use it in ways their customers do not expect and could cause them harm, primarily when classifying them by demographic characteristics, including race, ethnicity, gender, or sexuality.
</p>

<p>
	 
</p>

<p>
	Although many ISPs claim to offer consumers choices, the choices they provide are often a sham, at times nudging them toward even more data sharing.
</p>

<p>
	 
</p>

<p>
	"Even though several of the ISPs promise not to sell consumers personal data, they allow it to be used, transferred, and monetized by others and hide disclosures about such practices in fine print of their privacy policies," the FTC added.
</p>

<p>
	 
</p>

<p>
	"For example, several news outlets noted that subscribers' real-time location data shared with third-party customers was being accessed by car salesmen, property managers, bail bondsmen, bounty hunters, and others without reasonable protections or consumers' knowledge and consent, according to the report."
</p>

<p>
	 
</p>

<p>
	Furthermore, because of their problematic privacy practices and protections, they can be at least as privacy-intrusive as large advertising platforms, given that they have direct access to their consumers' entire unencrypted internet traffic.
</p>

<p>
	 
</p>

<p>
	Even when connecting to sites that encrypt their traffic or using VPNs, ISPs can still collect the domains their customers connect to and analyze their browsing behavior.
</p>

<p>
	 
</p>

<p>
	<span style="font-size:20px;"><strong>Former FCC Chair Ajit Pai blamed for current state of things</strong></span>
</p>

<p>
	<br />
	U.S. Senator Ron Wyden said in a statement following FTC's report that Ajit Pai, the former head of the FCC, is likely the one who made it possible for tech firms to disregard their users' privacy by harvesting and using their data for business purposes.
</p>

<p>
	 
</p>

<p>
	"If Congress needed any more proof that America desperately needs a consumer privacy law, the Federal Trade Commission's report about internet service providers' rampant abuse of their customers' private, personal browsing information should be enough to get Washington to act," Wyden said.
</p>

<p>
	 
</p>

<p>
	"Whether it's advertisers, tech companies or Big Cable, corporate America is showing absolute contempt for the idea that consumers can control personal details about their lives. Democrats have introduced multiple comprehensive privacy bills that would crack down on this flagrant abuse.
</p>

<p>
	"Finally, it's worth remembering that former Federal Communications Commission Chair Ajit Pai opened the floodgates to ISPs' unchecked use of browsing data when he repealed the Obama-era broadband privacy and net neutrality regulations.
</p>

<p>
	 
</p>

<p>
	"The FCC needs every tool available to stop cable companies from gouging consumers and selling their data."
</p>

<p>
	 
</p>

<p>
	<span style="font-size:20px;"><strong><a href="https://www.bleepingcomputer.com/news/security/ftc-isps-collect-and-monetize-far-more-user-data-than-you-d-think/" rel="external nofollow">Source</a></strong></span>
</p>
]]></description><guid isPermaLink="false">3071</guid><pubDate>Sat, 23 Oct 2021 17:14:07 +0000</pubDate></item><item><title>Secure email group Proton wins Swiss appeal over surveillance rules</title><link>https://nsaneforums.com/news/security-privacy-news/secure-email-group-proton-wins-swiss-appeal-over-surveillance-rules-r3057/</link><description><![CDATA[<p>
	ZURICH, Oct 22 (Reuters) - Geneva-based Proton AG, the company behind ProtonMail and ProtonVPN, has won an appeal regarding its treatment under Swiss law governing telecommunications surveillance, a Swiss court said on Friday.
</p>

<p>
	 
</p>

<p>
	Proton calls itself the world's largest secure email provider, using end-to-end encryption and state-of-the-art security features.
</p>

<p>
	 
</p>

<p>
	The Swiss Federal Administrative Court upheld its appeal against the Swiss Post and Telecommunications Surveillance Service (PTSS) over its status and obligations to monitor traffic.
</p>

<p>
	 
</p>

<p>
	The court confirmed that email services cannot be considered telecommunications providers in Switzerland, and thus are not subject to the data retention requirements imposed on them.
</p>

<p>
	 
</p>

<p>
	Proton founder and Chief Executive Andy Yen said Friday's ruling was an "important first step" in its campaign to advance privacy and freedom.
</p>

<p>
	 
</p>

<p>
	"We expect there to be further attempts to force tech companies to undermine privacy in both Switzerland and abroad, and we are committed to continuing to challenge this through both our encryption technology and through the courts," he said.
</p>

<p>
	 
</p>

<p>
	PTSS had decided in September 2020 that Proton and ProtonVPN could no longer benefit from limited surveillance obligations, but had to store data necessary for surveillance and be available to answer its questions around the clock.
</p>

<p>
	 
</p>

<p>
	The court overturned that ruling and sent the case back for a fresh decision.
</p>

<p>
	 
</p>

<p>
	The verdict followed a Swiss Supreme Court ruling in April that providers of chat, instant messaging, Internet video or telephone services, or email services such as Threema, WhatsApp, iMessage, Zoom, Teams, Chime or Skype were not telecom service providers but rather "over-the-top" (OTT) service providers.
</p>

<p>
	 
</p>

<p>
	"Together, these two rulings are a victory for privacy in Switzerland and a victory for Swiss tech startups as they exempt them from onerous telco regulations and handing over certain user information in response to Swiss legal orders," Proton said in a statement.
</p>

<p>
	 
</p>

<p>
	Still, Proton has faced criticism after a police report revealed that it provided the IP address of a user in a French investigation that led to the arrest of climate activists.
</p>

<p>
	 
</p>

<p>
	PTSS, which coordinates approaches to companies from Swiss police, prosecutors or intelligence services seeking information on users, did not respond immediately to a call seeking comment.
</p>

<p>
	 
</p>

<p>
	Additional reporting by Silke Koltrowitz; Editing by Clarence Fernandez and Chizu Nomiyama
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://www.reuters.com/technology/proton-wins-swiss-court-appeal-over-surveillance-rules-2021-10-22/" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">3057</guid><pubDate>Fri, 22 Oct 2021 13:37:34 +0000</pubDate></item><item><title>EXCLUSIVE Governments turn tables on ransomware gang REvil by pushing it offline</title><link>https://nsaneforums.com/news/security-privacy-news/exclusive-governments-turn-tables-on-ransomware-gang-revil-by-pushing-it-offline-r3056/</link><description><![CDATA[<p>
	Oct 21 (Reuters) - The ransomware group REvil was itself hacked and forced offline this week by a multi-country operation, according to three private sector cyber experts working with the United States and one former official.
</p>

<p>
	 
</p>

<p>
	Former partners and associates of the Russian-led criminal gang were responsible for a <strong>May cyberattack</strong> on the Colonial Pipeline that led to widespread gas shortages on the U.S. East Coast. REvil's direct victims include top meatpacker JBS (<strong>JBSS3.SA</strong>). The crime group's "Happy Blog” website, which had been used to leak victim data and extort companies, is no longer available.
</p>

<p>
	 
</p>

<p>
	Officials said the Colonial attack used encryption software called DarkSide, which was developed by REvil associates.
</p>

<p>
	 
</p>

<p>
	VMWare (<strong>VMW.N</strong>) head of cybersecurity strategy Tom Kellermann said law enforcement and intelligence personnel stopped the group from victimizing additional companies.
</p>

<p>
	 
</p>

<p>
	"The FBI, in conjunction with Cyber Command, the Secret Service and like-minded countries, have truly engaged in significant disruptive actions against these groups,” said Kellermann, an adviser to the U.S. Secret Service on cybercrime investigations. “REvil was top of the list.”
</p>

<p>
	 
</p>

<p>
	A leadership figure known as "0_neday," who had helped restart the group's operations after an earlier shutdown, said REvil's servers had been hacked by an unnamed party.
</p>

<p>
	 
</p>

<p>
	"The server was compromised, and they were looking for me," 0_neday wrote on a cybercrime forum last weekend and first spotted by security firm Recorded Future. "Good luck, everyone; I'm off."
</p>

<p>
	 
</p>

<p>
	U.S. government attempts to stop REvil, one of the worst of dozens of ransomware gangs that work with hackers to penetrate and paralyze companies around the world, accelerated after the group compromised U.S. software management company <strong>Kaseya in July</strong>.
</p>

<p>
	 
</p>

<p>
	That breach opened access to hundreds of Kaseya's customers all at once, leading to numerous emergency cyber incident response calls.
</p>

<p>
	 
</p>

<p>
	DECRYPTION KEY
</p>

<p>
	 
</p>

<p>
	Following the attack on Kaseya, the FBI obtained a universal decryption key that allowed those infected via Kaseya to recover their files without paying a ransom.
</p>

<p>
	 
</p>

<p>
	But law enforcement officials initially withheld the key for weeks as it quietly pursued REvil's staff, <strong>the</strong> <strong>FBI later acknowledged</strong>.
</p>

<p>
	 
</p>

<p>
	According to three people familiar with the matter, law enforcement and intelligence cyber specialists were able to hack REvil's computer network infrastructure, obtaining control of at least some of their servers.
</p>

<p>
	 
</p>

<p>
	After websites that the hacker group used to conduct business went offline in July, the main spokesman for the group, who calls himself "Unknown," vanished from the internet.
</p>

<p>
	 
</p>

<p>
	When gang member 0_neday and others restored those websites from a backup last month, he unknowingly restarted some internal systems that were already controlled by law enforcement.
</p>

<p>
	 
</p>

<p>
	“The REvil ransomware gang restored the infrastructure from the backups under the assumption that they had not been compromised,” said Oleg Skulkin, deputy head of the forensics lab at the Russian-led security company Group-IB. “Ironically, the gang's own favorite tactic of compromising the backups was turned against them.”
</p>

<p>
	 
</p>

<p>
	Reliable backups are one of the most important defenses against ransomware attacks, but they must be kept unconnected from the main networks or they too can be encrypted by extortionists such as REvil.
</p>

<p>
	 
</p>

<p>
	A spokesperson for the White House National Security Council declined to comment on the operation specifically.
</p>

<p>
	 
</p>

<p>
	"Broadly speaking, we are undertaking a whole of government ransomware effort, including disruption of ransomware infrastructure and actors, working with the private sector to modernize our defenses, and building an international coalition to hold countries who harbor ransom actors accountable," the person said.
</p>

<p>
	 
</p>

<p>
	The FBI declined to comment.
</p>

<p>
	 
</p>

<p>
	One person familiar with the events said that a foreign partner of the U.S. government carried out the hacking operation that penetrated REvil's computer architecture. A former U.S. official, who spoke on condition of anonymity, said the operation is still active.
</p>

<p>
	 
</p>

<p>
	The success stems from a determination by U.S. Deputy Attorney General Lisa Monaco that ransomware attacks on critical infrastructure should be treated as a national security issue akin to terrorism, Kellermann said.
</p>

<p>
	 
</p>

<p>
	In June, Principal Associate Deputy Attorney General John Carlin <strong>told Reuters</strong> the Justice Department was elevating investigations of ransomware attacks to a similar priority.
</p>

<p>
	 
</p>

<p>
	Such actions gave the Justice Department and other agencies a legal basis to get help from U.S. intelligence agencies and the Department of Defense, Kellermann said.
</p>

<p>
	 
</p>

<p>
	"Before, you couldn't hack into these forums, and the military didn't want to have anything to do with it. Since then, the gloves have come off."
</p>

<p>
	 
</p>

<p>
	Reporting by Joseph Menn and Christopher Bing; Editing by Chris Sanders and Grant McCool
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://www.reuters.com/technology/exclusive-governments-turn-tables-ransomware-gang-revil-by-pushing-it-offline-2021-10-21/" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">3056</guid><pubDate>Fri, 22 Oct 2021 13:33:10 +0000</pubDate></item><item><title>Researchers Discover Microsoft-Signed FiveSys Rootkit in the Wild</title><link>https://nsaneforums.com/news/security-privacy-news/researchers-discover-microsoft-signed-fivesys-rootkit-in-the-wild-r3055/</link><description><![CDATA[<p>
	A newly identified rootkit has been found with a valid digital signature issued by Microsoft that's used to proxy traffic to internet addresses of interest to the attackers for over a year targeting online gamers in China.
</p>

<p>
	 
</p>

<p>
	Bucharest-headquartered cybersecurity technology company Bitdefender named the malware "FiveSys," calling out its possible credential theft and in-game-purchase hijacking motives. The Windows maker has since revoked the signature following responsible disclosure.
</p>

<p>
	 
</p>

<p>
	"Digital signatures are a way of establishing trust," Bitdefender researchers said in a white paper, adding "a valid digital signature helps the attacker navigate around the operating system's restrictions on loading third-party modules into the kernel. Once loaded, the rootkit allows its creators to gain virtually unlimited privileges."
</p>

<p>
	 
</p>

<p>
	Rootkits are both evasive and stealthy as they offer threat actors an entrenched foothold onto victims' systems and conceal their malicious actions from the operating system (OS) as well as from anti-malware solutions, enabling the adversaries to maintain extended persistence even after OS reinstallation or replacement of the hard drive.
</p>

<p>
	 
</p>

<p style="text-align:center;">
	<img alt="digital-rootkit.jpg" class="ipsImage" data-ratio="65.42" height="465" width="720" src="https://thehackernews.com/images/-B2eBZEG6mJw/YXKuG7vZi3I/AAAAAAAAEIU/r7Rkjg3Ckr8xIPt2pbAGIR_VXMqhRX3LACLcBGAsYHQ/s728-e1000/digital-rootkit.jpg" />
</p>

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

<p>
	In the case of FiveSys, the malware's main objective is to redirect and route internet traffic for both HTTP and HTTPS connections to malicious domains under the attacker's control via a custom proxy server. The rootkit operators also employ the practice of blocking the loading of drivers from competing groups using a signature blocklist of stolen certificates to prevent them from taking control of the machine.
</p>

<p>
	 
</p>

<p>
	"To make potential takedown attempts more difficult, the rootkit comes with a built-in list of 300 domains on the '.xyz' [top-level domain]," the researchers noted. "They seem to be generated randomly and stored in an encrypted form inside the binary."
</p>

<p>
	 
</p>

<p>
	The development marks the second time wherein malicious drivers with valid digital signatures issued by Microsoft through the Windows Hardware Quality Labs (WHQL) signing process have slipped through the cracks. In late June 2021, German cybersecurity company G Data disclosed details of another rootkit dubbed "Netfilter" (and tracked by Microsoft as "Retliften"), which, like FiveSys, also aimed at gamers in China.
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://thehackernews.com/2021/10/researchers-discover-microsoft-signed.html" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">3055</guid><pubDate>Fri, 22 Oct 2021 13:25:09 +0000</pubDate></item><item><title>Bug in Popular WinRAR Software Could Let Attackers Hack Your Computer</title><link>https://nsaneforums.com/news/security-privacy-news/bug-in-popular-winrar-software-could-let-attackers-hack-your-computer-r3036/</link><description><![CDATA[<p>
	A new security weakness has been disclosed in the WinRAR trialware file archiver utility for Windows that could be abused by a remote attacker to execute arbitrary code on targeted systems, underscoring how vulnerabilities in such software could beсome a gateway for a roster of attacks.
</p>

<p>
	 
</p>

<p>
	Tracked as CVE-2021-35052, the bug impacts the trial version of the software running version 5.70. "This vulnerability allows an attacker to intercept and modify requests sent to the user of the application," Positive Technologies' Igor Sak-Sakovskiy said in a technical write-up. "This can be used to achieve remote code execution (RCE) on a victim's computer."
</p>

<p>
	 
</p>

<p>
	Sak-Sakovskiy noted that investigation into WinRAR began after observing a JavaScript error rendered by MSHTML (aka Trident), a proprietary browser engine for the now-discontinued Internet Explorer and which is used in Office to render web content inside Word, Excel, and PowerPoint documents, leading to the discovery that the error window is displayed once every three times when the application is launched post the expiry of the trial.
</p>

<p>
	 
</p>

<p style="text-align:center;">
	<img alt="AVvXsEjuKCycS2Mu05RzTqJkSsQS5CmvfEV6vmHd" class="ipsImage" data-ratio="31.25" height="222" width="720" src="https://thehackernews.com/new-images/img/a/AVvXsEjuKCycS2Mu05RzTqJkSsQS5CmvfEV6vmHdiOvJMhhckX6P9EMPA51eg-GnuVfapKDwjcuRL6cEQFT31jBER-xlDSEVTGVzIzCkdRj-fqHmaMeVsrKgugGHencJtSvFwDKgkD32T4LiWxMzFZoCic9CWBhV5RILuIUYIjRSyJz9O7y9HqKnyXvbqQSk" />
</p>

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

<p>
	By intercepting the response code sent when WinRAR alerts the user about the end of the free trial period via "notifier.rarlab[.]com" and modifying it to a "301 Moved Permanently" redirect message, Positive Technologies found that it could be abused to cache the redirection to an attacker-controlled malicious domain for all subsequent requests.
</p>

<p>
	 
</p>

<p>
	On top of that, an attacker already having access to the same network domain can stage ARP spoofing attacks to remotely launch applications, retrieve local host information, and even run arbitrary code.
</p>

<p>
	 
</p>

<p>
	"One of the biggest challenges an organization faces is the management of third-party software. Once installed, third-party software has access to read, write, and modify data on devices which access corporate networks," Sak-Sakovskiy noted.
</p>

<p>
	 
</p>

<p>
	"It's impossible to audit every application that could be installed by a user and so policy is critical to managing the risk associated with external applications and balancing this risk against the business need for a variety of applications. Improper management can have wide reaching consequences."
</p>

<p>
	 
</p>

<p>
	<span style="font-size:16px;"><strong><a href="https://thehackernews.com/2021/10/bug-in-free-winrar-software-could-let.html" rel="external nofollow">Source</a></strong></span>
</p>
]]></description><guid isPermaLink="false">3036</guid><pubDate>Thu, 21 Oct 2021 15:24:43 +0000</pubDate></item></channel></rss>
