Posts Tagged ‘Mac’

Wednesday, February 20, 2013 @ 03:02 PM gHale

Adobe released a security bulletin today that fixes a vulnerability in its Reader and Acrobat products found just one week ago.

The vulnerability, which attackers are jumping on and taking advantage of, could cause a crash of either and software and potentially allow a bad guy take control of the affected system.

RELATED STORIES
Security Fixes; PDF Viewer in Firefox 19
Developer Site Zero Day Attack Source
Hiding Code into JavaScript
Adobe Mitigation Plan for Zero Day

For PC users, there is a sense of urgency to update as Adobe confirmed attackers are leveraging two of the vulnerabilities (CVE-2013-0640 and CVE-2013-0641) in targeted attacks designed to trick Windows users into opening a malicious PDF file attached in an email.

Mac and Linux users are not immune to this flaw, they just simply are not under attacker’s microscope at this juncture.

The security patches are available for software on Windows, Mac, and Linux. The following is a list of upgrades:
• Users of Adobe Reader XI (11.0.01 and earlier) for Windows and Macintosh should update to Adobe Reader XI (11.0.02).
• For users of Adobe Reader X (10.1.5 and earlier) for Windows and Macintosh, who cannot update to Adobe Reader XI (11.0.02), Adobe has made available the update Adobe Reader X (10.1.6).
• For users of Adobe Reader 9.5.3 and earlier 9.x versions for Windows and Macintosh, who cannot update to Adobe Reader XI (11.0.02), Adobe has made available the update Adobe Reader 9.5.4.
• Users of Adobe Reader 9.5.3 and earlier 9.x versions for Linux should update to Adobe Reader 9.5.4.
• Users of Adobe Acrobat XI (11.0.01 and earlier) for Windows and Macintosh should update to Adobe Acrobat XI (11.0.02).
• Users of Adobe Acrobat X (10.1.5 and earlier) for Windows and Macintosh should update to Adobe Acrobat X (10.1.6).
• Users of Adobe Acrobat 9.5.3 and earlier 9.x versions for Windows and Macintosh should update to Adobe Acrobat 9.5.4.

Windows and OS X users can use the product’s update feature (Help => Check for Updates).

Wednesday, February 20, 2013 @ 01:02 PM gHale

Mozilla released Firefox 19, the latest version of its flagship browser, which includes not only fixes for a number of serious security vulnerabilities but also a built-in PDF viewer.

The native PDF viewer in Firefox could help protect against some of the ongoing attacks that use vulnerabilities in Adobe Reader and other PDF readers as infection vectors.

RELATED STORIES
Firefox: Silent Add-ons Possible
New Opera Release Fixes Holes
Chrome Updated, Fixes Security Holes
Mozilla Closes Critical Holes

Attackers have focused on Reader and Acrobat vulnerabilities for several years now, although the sandbox that Adobe added to Reader X and later versions has helped protect users against exploits. However, a sandbox only goes so far as last week found the first confirmed Reader escape exploit. Adobe patched that vulnerability on Tuesday.
Mozilla officials said the inclusion of the built-in PDF viewer should make life a little easier for Firefox users when they encounter a PDF on a site.

“Firefox for Windows, Mac and Linux introduces a built-in browser PDF viewer that allows you to read PDFs directly within the browser, making reading PDFs easier because you don’t have to download the content or read it in a plugin like Reader. For example, you can use the PDF viewer to check out a menu from your favorite restaurant, view and print concert tickets or read reports without having to interrupt your browsing experience with extra clicks or downloads,” Mozilla said.

In addition to the PDF viewer, Mozilla also fixed several serious security bugs in the browser, including a number of use-after-free flaws and some memory corruption vulnerabilities. But the most serious of the security issues fixed in Firefox 19 is a problem with phishing on HTTPS connections. The bug, discovered by Michal Zalewski of Google, is the result of the way that some proxies display 407 error messages.”

Zalewski reported an issue where the browser displayed the content of a proxy’s 407 response if a user canceled the proxy’s authentication prompt. In this circumstance, the address bar will continue to show the requested site’s address, including HTTPS addresses that appear to be secure. This spoofing of addresses works for phishing attacks by fooling users into entering credentials, for example,” the Mozilla advisory said.

Wednesday, February 6, 2013 @ 11:02 AM gHale

There is a vulnerability out there that allows attackers to recover the plaintext of authentication cookies and other encrypted data as they travel over the Internet and other unsecured networks.

This makes it possible for attackers to completely subvert the protection provided by the secure sockets layer (SSL) and transport layer security (TLS) protocols. Together, SSL, TLS, and a close TLS relative known as Datagram Transport Layer Security are the sole cryptographic means for websites to prove their authenticity and to encrypt data as it travels between end users and Web servers. The “Lucky Thirteen” attacks devised by computer scientists to exploit the weaknesses work against virtually all open-source TLS implementations, and possibly implementations supported by Apple and Cisco Systems as well.

RELATED STORIES
Barracuda Networks Backdoor Accounts
Attack Vector: Faux Apache Modules
Apache CouchDB Fixes Holes
Sybase Fixes Database Holes

The attacks are extremely complex, so average end users are probably more susceptible to attacks that use phishing emails or rely on fraudulently issued digital certificates to defeat the Web encryption protection. Nonetheless, the success of the cryptographers’ exploits, which includes the full plaintext recovery of data protected by the widely used OpenSSL implementation, has clearly gotten the attention of the developers who maintain those programs. Already, the Opera browser and PolarSSL have undergone patching to plug the hole, and developers for OpenSSL, NSS, and CyaSSL should issue updates soon.

“The attacks can only be carried out by a determined attacker located close to the machine under attack and who can generate sufficient sessions for the attacks,” Nadhem J. AlFardan and Kenneth G. Paterson researchers wrote in a bog that accompanied their research. “In this sense, the attacks do not pose a significant danger to ordinary users of TLS in their current form. However, it is a truism that attacks only get better with time, and we cannot anticipate what improvements to our attacks, or entirely new attacks, may yet be discovered.”

Lucky Thirteen uses a technique known as a padding oracle that works against the main cryptographic engine in TLS that performs encryption and ensures the integrity of data. It processes data into 16-byte chunks using a routine known as MEE, which runs data through a MAC (Message Authentication Code) algorithm, then encodes and encrypts it. The routine adds “padding” data to the ciphertext so the data can align in 8- or 16-byte boundaries. The padding later removes when TLS decrypts the ciphertext.

The attacks start by capturing the ciphertext as it travels over the Internet. Using a long-discovered weakness in TLS’s CBC, or cipher block chaining, mode, attackers replace the last several blocks with chosen blocks and observe the amount of time it takes for the server to respond. TLS messages that contain the correct padding will take less time to process. A mechanism in TLS causes the transaction to fail each time the application encounters a TLS message that contains tampered data, requiring attackers to repeatedly send malformed messages in a new session following each previous failure. By sending large numbers of TLS messages and statistically sampling the server response time for each one, the scientists were able to eventually correctly guess the contents of the ciphertext.

To make the attacks more efficient, researchers can incorporate methods unveiled two years ago in a separate TLS attack called BEAST. That attack used JavaScript in the browser to open multiple sessions. By combining it with the padding oracle exploit, attackers required 2 sessions to extract each byte without needing to know one of the last two positions in a block.

The Lucky Thirteen attacks are only the latest exploits to subvert TLS, which along with SSL should safeguard bank transactions, login sessions, and other sensitive activities carried out over unsecured networks.

The attacks apply to all implementations that conform to version 1.1 or 1.2 or version 1.0 or 1.1 of TLS or DTLS respectively. They also apply to implementations that conform to version 3.0 of SSL or version 1.0 of TLS when they ended up tweaked to incorporate countermeasures designed to defeat a previous padding oracle attack discovered several years ago.

Friday, November 2, 2012 @ 09:11 AM gHale

There is a new Java backdoor Trojan called Jacksbot that is starting to make some in roads.

When it first came out, security researchers thought is was low risk because no computers suffered any infections, but that has changed, said officials at Trend Micro.

RELATED STORIES
Simple Works for Malware Writers
LinkedIn Emails lead to BlackHole
XSS Top Web Attack
Spam Leads to Blackhole Attack

In addition, since it is a Java application, Jacksbot can target multiple systems along with Windows, like Mac, Linux and any other OS that supports the Java Runtime Environment.

So far, experts found it on two computers – one in Malaysia and one in Australia –but this is just the beginning.

One of Jacksbot’s capabilities is to steal Minecraft passwords, which might also have something to do with the way it’s spread.

“There is a possibility that this malware presents itself as a Minecraft modification to unsuspecting users as it contains the special command ‘MC for stealing Minecraft passwords from the compromised system,” said Johanne Demetria, a threat response engineer at Trend Micro.

Demetria said Jacksbot is a remote access Trojan (RAT) because it’s capable of taking control of computers, and allow its master to execute various “backdoor commands.”

Although it can run on any platform that supports JRE, it appears the backdoor mainly focuses on Windows. Experts said the developers might be “testing the waters” for a multiplatform malware, but for the time being, judging by its code, it only works properly on Windows.

“Although there are only 2 infections right now, JACKSBOT and its kin may in fact be the next trend in the threat landscape considering the rapidly changing market. Additionally, it is likely that the authors will continue to improve the code to fully support infection for OS X and Linux,” Demetria said.

Monday, October 29, 2012 @ 12:10 PM gHale

A new generation of advanced persistent threats (APTs) forced McAfee to update its Endpoint Security platform.

In the ever changing and dynamic environment of cyber security, the company said the update would better equip systems to block highly sophisticated attack techniques, such as the use of master boot record (MBR) sabotage techniques and the use of Zero Day flaws for intrusion attempts.

RELATED STORIES
Malnets Continue Growth Spurt
New Botnet Goes to Market
Revised Botnet Avoids Detection
Botnet uses Tor as a Hideout

The update would look to not only expand the scope of protections for Endpoint Security, but also the new form factors, said Candace Worley, senior vice president and general manager of Endpoint Security for McAfee.

“We believe that the endpoint has to become more dynamic and context-aware,” Worley said.

“Devices are becoming more diverse, you have everything from a laptop and desktop to a tablet form factor.”

In addition to the MBR protections introduced, McAfee is updating the Enterprise Mobility manager to add support for iOS 6 devices and adding to the whitelisting protections on the McAfee Application Control administrator tool.

Encryption is also a priority in the update. The company said it would be updating the Endpoint Encryption platform to support PC and MacOS X systems. The update will include the use of new encryption algorithms from Intel which allow for faster encryption and decryption of data.

In addition to security enhancements, the company said the new Endpoint Encryption would simplify the process of managing and updating systems required to have encryption. By integrating the tool with the company’s ePolicy Orchestrator Deep Command console, administrators will be able to remotely access and patch end user systems without the need to enter credentials.

“If you have a full-disk encryption product and you power those systems off at night you need a body to type in that password to decrypt it and that is problematic,” Worley said, “This really addresses that case.”

Tuesday, October 9, 2012 @ 12:10 PM gHale

Adobe revoked the compromised code signing certificate they found used to sign malicious applications. Updates signed with a new certificate are now up and ready to go.

The revoked certificate ended up used to sign software code after July 10.

RELATED STORIES
Adobe Certificates Hacked
Build Your Own Android Malware
Profiting off Android Attacks
Malware Continues to Rise

While most organizations will not suffer from the revocation process, some customers might need to take certain action.

Adobe said the Windows platform and three Adobe AIR applications – Acrobat.com desktop services, Adobe Story AIR applications, and Adobe Muse – for Windows and Mac are affected.

Customers who think they are suffering from the issue should check out the security certificate update page created by Adobe after they found out about the two malicious utility apps.

Monday, September 24, 2012 @ 03:09 PM gHale

Apple released updates for versions 10.6 (Snow Leopard), 10.7 (Lion) and 10.8 (Mountain Lion) of its Mac OS X operating system that close a number of critical security holes.

Mac OS X 10.8.2 and 10.7.5, and Security Update 2012-004 for Mac OS X 10.6.8 address a wide range of security vulnerabilities. These include information disclosure and denial-of-service (DoS) problems, bugs in the sandbox that could allow a malicious program to bypass restrictions, memory corruption bugs, and buffer and integer overflows.

RELATED STORIES
Apple Fixes Security in ARD 3.5
Stolen iOS Data Surfaces, Sort Of
Govt Report: Record Exposure Booms
FBI Hacked; 12M IDs Breached

An attacker could exploit quite a few of those holes to cause unexpected application termination or arbitrary code execution, Apple said. Among the changes in the updates are new versions of Apache, the BIND DNS server, International Components for Unicode, the kernel, Mail.app, PHP, Ruby and the QuickTime media player, all of which correct security problems.
In addition to the fixes in Mac OS X 10.7.5, the update also includes Gatekeeper, a security feature from 10.8 Mountain Lion. By default, this feature automatically rejects applications not signed with a valid Apple-issued Developer ID, but this setting can change. Gatekeeper includes three levels of security for running applications downloaded from the Internet: “Mac App Store,” “Mac App Store and identified developers” and “Anywhere.” The first of these only runs applications downloaded from the Mac App Store, while the second option only allows applications from the store and from developers who have signed their program with their Developer ID. The last option allows all applications to run, regardless of whether have a Developer ID or not.
The company also released an update to its Safari web browser, version 6.0.1. This first update to Safari 6 from July addresses multiple information disclosure vulnerabilities, including one which could allow Autofill contact information send over to maliciously crafted web sites. The majority of the holes closed in Safari were memory corruption bugs found in its WebKit browser engine which an attacker could exploit to cause unexpected application termination or arbitrary code execution. For an attack to be successful, a victim must first visit a specially crafted web site.

Monday, September 24, 2012 @ 03:09 PM gHale

Browser-related exploits, like recent ones for Internet Explorer and Java, are increasing along with renewed concerns around social media password security, a new survey found.

On top of that, there seems to be a disparity in mobile devices and corporate bring-your-own-device (BYOD) programs.

RELATED STORIES
Conficker Hits Prison System
Popular Malware for July
New Trojans Covering Tracks
Trojans Learn New Infection Path

There is a continuing trend for attackers to target individuals by directing them to a trusted URL or site injected with malicious code, according to the IBM X-Force 2012 Mid-Year Trend and Risk Report.

Through browser vulnerabilities, attackers are able to install malware on the target system. In addition, the growth of SQL injection, a technique used by attackers to access a database through a website, is keeping pace with the increased usage of cross-site scripting and directory traversal commands, the survey said.

IBM also noted attackers are no longer primarily attracted to the Windows universe. The user base for the Mac operating system continues to grow worldwide, so that system is also becoming a bigger target of advanced persistent threats (APTs) and exploits.

“We’ve seen an increase in the number of sophisticated and targeted attacks, specifically on Macs and exposed social network passwords,” said Clinton McFadden, senior operations manager for IBM X-Force research and development. “As long as these targets remain lucrative, the attacks will keep coming and in response, organizations should take proactive approaches to better protect their enterprises and data.”

At the mid-year point in 2012, IBM sees an upward trend in overall vulnerabilities, with the possibility of an all-time high by year-end. Having said that, the survey shows a decline in true exploits, with only 9.7% of all publically disclosed vulnerabilities subjected to exploits.

That’s mainly due to improvements from the top ten vendors on patching vulnerabilities and a significant decrease in the area of portable document format (PDF) vulnerabilities. IBM said this area of improvement directly relates to the new technology of sandboxing provided by the Adobe Reader X release.

Sandboxing technology works by isolating an application from the rest of the system, so if compromised, the attacker code running within the application is limited in what it can do or access. Sandboxes are proving to be a successful investment from a security perspective, IBM noted. In the X-Force report, there was a significant drop in Adobe PDF vulnerability disclosures during the first half of 2012, which coincides nicely with the adoption of Adobe Reader X, the first version of Acrobat Reader released with sandboxing technology.

In terms of mobile security, the BYOD phenomenon continues to be the main game-changing transformation. Many companies are still in their infancy in adapting policies for allowing employees to connect their personal laptops or smartphones to the company network.

While there are reports of exotic mobile malware, most smartphone users are still most at risk of premium SMS scams, which automatically send text messages to premium phone numbers in a variety of different countries from installed applications.

There are multiple scam infection approaches for this, such as offering users an application that looks legitimate in an app store but only has malicious intent; presenting an application that is a clone of a real application with a different name and some malicious code; or hacking a real application to wrap it with malicious code. The latter is typically in an alternative app store.

Monday, August 13, 2012 @ 05:08 PM gHale

Adobe will release Tuesday an update for Adobe Reader (9.5.1) and Acrobat (10.1.3) and earlier versions for Windows and Mac to fix critical security flaws.

The flaws are “critical,” meaning malicious native-code can execute without a user’s knowledge.

RELATED STORIES
Study: Users Slow on Browser Updates
Police Virus Malware Growing
One Attack Starts at Web Site
Beware of Internet Scammers

The pre-notification security advisory warning, APSB12-16, gives few details, except noting the affected software versions and the severity of the security flaws.
• Adobe Reader X (10.1.3) and earlier 10.x versions for Windows and Mac
• Adobe Reader 9.5.1 and earlier 9.x versions for Windows and Mac
• Adobe Acrobat X (10.1.3) and earlier 10.x versions for Windows and Mac
• Adobe Acrobat 9.5.1 and earlier 9.x versions for Windows and Mac

Out of the six versions of Adobe Reader and Adobe Acrobat, four have a priority rating of 2, signifying “a vulnerability that has historically been at elevated risk,” despite “no known exploits.”

However, both products have versions for Windows and Mac that are at rating 1, noting a vulnerability is “being targeted” or at a “higher risk of being targeted.” As users should install these updates within 72 hours of the security fix release.

Thursday, August 2, 2012 @ 05:08 PM gHale

Even though Windows and Mac remain well separated as platforms, there are a number of applications that run on both operating systems, including things such as Adobe Flash, Reader and Java.

Attackers and malware writers, like any other specialists, are focusing their skills in one discipline in order to maximize their chances for success.

RELATED STORIES
Critical IE Attack Code Available
Microsoft FixIt For XML Hole
Attack: IE Zero Day
RTFs Fall Victim to APTs

Attackers, not wanting to waste any time on small target bases and looking to maximize their profits, are focusing their efforts on vulnerabilities in these applications.

Knowing that, Microsoft researchers analyzed a series of malware samples and exploits and found some attackers are beginning to target the same vulnerability across multiple platforms as a way to make the most out of their efforts.

Microsoft researchers looked at a specific set of vulnerabilities found in applications on Windows and Mac OS X and found some attackers are going after flaws from as far back as 2009 in Office documents, and 2010 in Flash and Java and Reader.

“This observation is limited and based on the samples we identified, acquired and processed, however, this understanding provides us with an opportunity to recognize a trend we can describe as economies of scale in cross-platform vulnerabilities. This method of distribution allows the attacker to maximize their capability on multiple platforms. Thus, regardless of a particular attacker’s motive, the value and demand for these vulnerabilities is likely to persist – we know for a fact that Java vulnerabilities CVE-2011-3544 and CVE-2012-0507 are widely used by cybercriminals’ in exploit kits, such as Blacole/Blackhole,” said Methusela Cebrian Ferrer of the Microsoft Malware Protection Center.

Microsoft’s investigation of the way attackers are using cross-platform vulnerabilities began about a year ago when the company’s researchers came across a backdoor aimed at Mac users. The malware disguised itself as a Google app on the infected machine and then initiated a remote connection to a command-and-control server.

“Once connected, the remote attacker may take advantage of the backdoor file management feature which allows it to upload, download and navigate through files and directory. For more detail, have a look at the Backdoor:MacOS_X/Olyx.A description in our encyclopedia,” Ferrer said.

 
 
Archived Entries