RUBYCARP the SSH Brute Botnet Resurfaces With New Tools

0
[ad_1]

The cybersecurity community is again on high alert as the notorious botnet group RUBYCARP, known for its SSH brute force attacks, has resurfaced with new tools and tactics.

The Sysdig Threat Research Team (Sysdig TRT) has been closely monitoring the activities of this Romanian threat actor group, which has been active for over a decade and has recently uncovered significant developments in its operations.

At the heart of RUBYCARP’s resurgence is exploiting a critical vulnerability in Laravel applications, CVE-2021-3129.

This vulnerability has been a focal point for the group’s targeting and exploitation efforts, allowing them to gain unauthorized access to systems and expand their botnet.

In addition to exploiting CVE-2021-3129, RUBYCARP has been using SSH brute force attacks to enter target networks.

Document
Stop Advanced Phishing Attack With AI

Trustifi’s Advanced threat protection prevents the widest spectrum of sophisticated attacks before they reach a user’s mailbox. Stopping 99% of phishing attacks missed by other email security solutions. .

The group’s persistence and evolution of tactics underscore the importance of patching known vulnerabilities and strengthening SSH security measures to thwart such attacks.

The latest findings from Sysdig TRT indicate that RUBYCARP has not only continued its traditional brute force and exploitation activities but also added new techniques to its repertoire.

The group now utilizes a backdoor based on the popular Perl Shellbot, connecting victim servers to an IRC server that acts as command and control, thereby joining the more giant botnet.

RUBYCARP continues to add new exploitation techniques to its arsenal to build its botnets
RUBYCARP continues to add new exploitation techniques to its arsenal to build its botnets

RUBYCARP’s toolset has expanded, with the discovery of 39 Perl file (shellbot) variants, although only eight were previously detected by VirusTotal.

The group’s communication strategies have also evolved. They use public and private IRC networks to manage their botnets and coordinate crypto-mining campaigns.

The group has been actively involved in crypto mining operations, using its pools hosted on the exact domains as their IRC servers.

This strategy allows them to evade detection from IP-based blocklists and utilize standard and random ports for further stealth.

Diversified Cryptocurrency Mining

The group has not limited itself to a single cryptocurrency; instead, it engages in mining operations for Monero, Ethereum, and Ravencoin.

The Ravencoin wallet associated with RUBYCARP has been particularly active, with over $22,800 received in transactions.

user “porno” claimed to have gained 0.00514903 BTC, around USD 360, within 24 hours
user “porno” claimed to have gained 0.00514903 BTC, around USD 360, within 24 hours

Beyond crypto mining, RUBYCARP has been executing sophisticated phishing operations to steal financially valuable assets, such as credit card numbers.

Evidence suggests that the group uses these stolen assets to fund its infrastructure and possibly for resale.

Phishing templates impersonating legitimate European companies, such as the Danish logistics company “Bring,” have been identified in RUBYCARP’s attacks.

Identified a phishing template (letter.html) targeting Danish users and impersonating the Danish logistics company “Bring.”
Identified a phishing template (letter.html) targeting Danish users and impersonating the Danish logistics company “Bring.”

The group targets European entities, including banks and logistics companies, to collect payment information.

The resurgence of RUBYCARP with new tools and techniques is a stark reminder of the persistent threat posed by sophisticated cybercriminal groups.

Defending against such actors requires a proactive approach to vulnerability management, robust security postures, and advanced runtime threat detection capabilities.

As the cybersecurity community continues to grapple with the challenges posed by groups like RUBYCARP, organizations must remain vigilant and prepared to respond to the evolving threat landscape.

For more information on RUBYCARP and to stay updated on the latest cybersecurity threats, follow our dedicated news coverage and expert analysis. Stay safe and informed in the digital age.

Secure your emails in a heartbeat! To find your ideal email security vendor, Take a Free 30-Second Assessment.


[ad_2]
Source link

Moto g04s is Motorola’s new extremely affordable smartphone

0
[ad_1]

Motorola has announced a new smartphone, the Moto g04s. This is the company’s new budget smartphone. As you can see in the provided images, the device has a flat display and a centered display camera hole.

You’ll also notice that its bottom bezel is considerably thicker than the rest of them. All the physical buttons sit on the right-hand side, while the phone has a single camera on the back. There are two cutouts, but the bottom one is reserved for an LED flash. Motorola’s logo also sits on the back.

The Motorola Moto g04s is the company’s new budget offering

The device is fueled by the Unisoc T606 processor. It offers 4GB or 6GB of LPDDR4X RAM, and 64GB of UFS 2.2 flash storage. Do note that the storage is expandable up to 1TB via a microSD card.

A 5,000mAh battery sits inside the phone, while 15W wired charging is supported. The phone has a 6.6-inch HD+ (1612 x 720) IPS display with a 90Hz refresh rate. The maximum brightness it can reach is 537 nits. The Panda glass protects this panel.

Android 14 comes pre-installed on the phone, with My UX skin on top of it. There is an audio jack included on the phone, while Dolby Atmos is supported. A side-facing fingerprint scanner is also included in the package.

The device is water-repellent, and it offers storage expansion

The Motorola Moto g04s is IP52 certified, in other words, it has a water-repellent design. There are also two SIM card slots included here, and the microSD card slot is separate.

A 50-megapixel main camera (f/1.8 aperture) sits on the back, while a 5-megapixel unit (f/2.2 aperture) can be found on the front side of the phone. Bluetooth 5.0 is also supported, and there’s a Type-C port at the bottom.

The Motorola Moto g04s measures 163.49 x 74.53 x 7.99mm, while it weighs 178.8 grams. The phone comes in Concord Black, Satin Blue, Sea Green, and Sunrise Orange color variants.

Motorola’s new budget offering is priced at €119 ($129), and it is now available in Europe. It is coming to Latin America, the Middle East, Africa, and Asia soon, though.


[ad_2]
Source link

Critical Rust Flaw Let Attackers Inject Commands on Windows

0
[ad_1]

A new critical vulnerability has been discovered in two of the Rust standard libraries, which could allow a threat actor to execute shell commands on vulnerable versions.

This vulnerability has been assigned CVE-2024-24576, and its severity has been given as 10.0 (Critical).

In this report, Rust Security Response stated that they have not identified a solution yet but have created a workaround to mitigate this vulnerability.

This vulnerability was credited to RyotaK and Simon Sawicki (Grub4K) for helping them fix it.

Critical Rust Vulnerability

According to the reports shared with Cyber Security News, this vulnerability exists due to insufficient validation of arguments passed to Command::arg and Command::args APIs. 

The documentation of these two APIs states that the arguments passed to the APIs directly to the spawned process, and it will not be evaluated by a shell.

In addition, the implementation of these two APIs is complicated due to the fact that the Windows API passes all of the provided arguments as a single string, leaving the splitting process with the spawned process.

Document
Stop Advanced Phishing Attack With AI

Trustifi’s Advanced threat protection prevents the widest spectrum of sophisticated attacks before they reach a user’s mailbox. Stopping 99% of phishing attacks missed by other email security solutions. .

However, the cmd.exe process has a different splitting logic in Windows as it forces the standard library to perform the escaping for the arguments.

Nevertheless, this escaping sequence was not sufficiently validated, making it easier for threat actors to pass malicious arguments to the spawned process to execute arbitrary shell code. 

As a means of mitigating this vulnerability, Rust Security response team improved the escaping code with strong implementations and has made the Command API to return an InvalidInput error if it cannot safely escape any argument. 

Moreover, this error will be thrown during the process of spawning. For Windows users, the CommandExt::raw_arg method can be used to bypass the standard library’s escaping logic used by the cmd.exe process. 

Affected Versions And Fix

This vulnerability affects all the Rust versions earlier than 1.77.2 on Windows if any code or dependencies execute batch files with untrusted arguments.

Other platforms are not affected by this vulnerability.

To fix this, the Rust Security response team has recommended upgrading Rust to the latest version, 1.77.2, to prevent any unauthorized malicious threat actors from exploiting this vulnerability.

Secure your emails in a heartbeat! To find your ideal email security vendor, Take a Free 30-Second Assessment.


[ad_2]
Source link

New SharePoint Technique Lets Hackers Bypass Security

0
[ad_1]

Two new techniques uncovered in SharePoint enable malicious actors to bypass traditional security measures and exfiltrate sensitive data without triggering standard detection mechanisms.

Illicit file downloads can be disguised as harmless activities, making it difficult for cybersecurity defenses to detect them. To accomplish this, the system’s features are manipulated in various ways.

Security researchers from Varonis Threat Labs discovered two SharePoint techniques.

Open-in-App Method

The first technique dubbed the “Open in App Method,” takes advantage of the SharePoint feature, which allows users to open documents directly in their associated applications.

While this feature is designed for user convenience, it has inadvertently created a loophole for data breaches.

Attackers can use this feature’s underlying code to access and download files, leaving behind only an access event in the file’s audit log.

Document
Stop Advanced Phishing Attack With AI

Trustifi’s Advanced threat protection prevents the widest spectrum of sophisticated attacks before they reach a user’s mailbox. Stopping 99% of phishing attacks missed by other email security solutions. .

This subtle footprint can easily be overlooked, as it does not resemble a typical download event.

The exploitation of this method can be carried out manually or automated through a PowerShell script.

When automated, the script can rapidly exfiltrate many files, significantly amplifying the potential damage.

The script leverages the SharePoint client object model (CSOM) to fetch files from the cloud and save them to a local computer, avoiding creating a download log entry.

SkyDriveSync User-Agent

The second technique involves the manipulation of the User-Agent string for Microsoft SkyDriveSync, now known as OneDrive, Varonis said.

By masquerading as the sync client, attackers can download files or even entire SharePoint sites.

These downloads are mislabeled as file synchronization events rather than actual downloads, thus slipping past security measures that are designed to detect and log file downloads.

This method is particularly insidious because it can be used to exfiltrate data on a massive scale, and the sync disguise makes it even harder for security tools to distinguish between legitimate and malicious activities.

The use of this technique suggests a sophisticated understanding of SharePoint and OneDrive’s synchronization mechanisms, which could be exploited to systematically drain data from an organization without raising alarms.

Microsoft’s Response and Security Patch Backlog

Upon discovery, Varonis researchers promptly reported these vulnerabilities to Microsoft in November 2023. Microsoft has acknowledged the issue and categorized these vulnerabilities as “moderate” security risks.

They have been added to Microsoft’s patch backlog program, indicating that a fix is in the pipeline but may not be immediately available.

The discovery of these techniques underscores the risks associated with SharePoint and OneDrive, especially when permissions are misconfigured or overly permissive.

Organizations relying on these services for file sharing and collaboration must be vigilant and proactive in managing access rights to minimize the risk of unauthorized data access.

To combat these vulnerabilities, organizations are advised to implement additional detection strategies.

Monitoring for unusual patterns of access events, especially those that could indicate the use of the “Open in App Method,” is crucial.

Similarly, keeping an eye on sync activities and verifying that they match expected user behavior can help identify misuse of the SkyDriveSync User-Agent technique.

Furthermore, organizations should prioritize the review and tightening of permissions across their SharePoint and OneDrive environments.

Regular audits and updates to security policies can help prevent threat actors from exploiting such vulnerabilities in the first place.

Secure your emails in a heartbeat! To find your ideal email security vendor, Take a Free 30-Second Assessment.


[ad_2]
Source link

Facebook Messenger major update adds support for HD photos, shared albums, more

0
[ad_1]
Messenger is getting a bunch of important new features this week, including the option to send photos in high-definition, something that WhatsApp only recently introduced.

In addition to being able to send HD photos, Messenger is also allowing users to send larger files up to 100MB in their chats. Shared albums and the ability to add new connections with a QR code are two other new features coming to Messenger this week.

But let’s start with the new option to send photos in high-definition. To fully take advantage of your camera, you can now send an HD photo by selecting an image from your chat composes, then turning the HD toggle on. You can even tap on additional photos to send multiple in HD.

The same simple procedure must be followed if you want to send larger files. Simply tap the + button when you’re in a Messenger chat, then select a file up to 100MB. According to Facebook, a wide range of popular file formats are supported, including Word, PDF and Excel.

Furthermore, the latest Facebook Messenger update adds so-called shared albums. To create a new album in a group chat simply follow the process below:
  • Select multiple photos from your chat composer
  • Tap Create album (you can also long press a photo in the chat and tap Create album)
  • To add to an existing album, tap Add to album


You can even rename the album from the three dot menu. Simply choose the Edit Name option and confirm the album’s new name. Keep in mind that everyone in the chat can view, add, delete and download pictures and videos from the album. The shared album feature will be rolled out over the coming weeks, so be patient if you don’t see it right away.

Finally, Messenger users can connect with other users by scanning their QR code or sharing theirs via a link. Simply start a message thread with a new connection, head to Settings and tap the QR code icon at the top. That way they will be able to scan your code using their device’s camera, or you can share a link using the Share option.


[ad_2]
Source link

A bug affecting the Google Play Store makes a very useful shortcut disappear

0
[ad_1]

There’s a software bug that has infested the Google Play Store and thanks to this issue, a useful feature that delivers a shortcut to users has disappeared. This feature, when available, was the fastest way for you to check to see whether you have any updates for your Android apps. Before the infestation, if you long-pressed on the Google Play Store icon on the homescreen, you’d see shortcuts including one that said “My apps” and “App info.”

Pressing on “App info” opens the page that goes by the same name and allows you to manage notifications coming from the Play Store, manage permissions for the app, clear the storage and cache memory on the app, and see other data such as the number of minutes of screen time that the Play Store managed to tally today, and the version of the app that is installed on your Android device is on the bottom.

The other option you might see when long-pressing the Play Store icon on your homescreen says “My apps,” and this is the important option because tapping on it takes you directly to the “Manage apps & device” page from where you can see how many app updates you have in queue and you can tap once to have these updates completed. This is the fastest way to get this done except for one tiny, little problem.

A bug is keeping many Android users from seeing the “My apps” option when they long-press the Play Store icon. The long-press reveals only the “App info” option. It genuinely does not seem like Google has removed this feature (which many would see as a typical Google move). While the bug has circulated for a few weeks now, my Pixel 6 Pro running Android 14 QPR3 Beta 2.1 still shows “My apps” when I long-press on the Play Store icon on the homescreen.

If you do not have the “My apps” shortcut anymore, you can long-press the Play Store icon from your homescreen, tap on “App info” and Clear storage. This will eliminate some recent data and force you to reset purchase authentication preferences. However, it might exterminate the bug. There is also another possible fix that might work and that is installing the next update for the Play Store. To see if one is available, open the Google Play Store app and tap the Profile icon in the upper right corner of the screen. Tap on Settings > About > Update Play Store and see if this brings back the shortcut.


[ad_2]
Source link

Polls arrive on Discord as a new non-Nitro feature

0
[ad_1]
Video Thumbnail
The lines between social media apps keep getting blurrier, and features that were once niche are becoming mainstream. Remember when short-form video was TikTok’s thing? Or how Snapchat owned disappearing messages? But even in spite of the tidal wave of features, some platforms, like Reddit, Discord, and Telegram, have stubbornly clung to their identities. Discord, in particular, has been measured about adding new bells and whistles, so when it finally unveiled native polls, it felt like a long-overdue move.Discord, just like Reddit, is a playground for online communities. Servers filled with channels are the backbone, like a wilder version of Subreddits. Polling fits this model well – Reddit rolled out polls back in 2020, and Telegram even earlier in January of that year. Even WhatsApp is getting into the community game, adding polls to announcement groups just last year.

Until now, Discord users relied on a workaround for polls: pinning a message and tallying emoji reactions. It was clunky, and results easily disappeared into the depths of a chat history. As you can see above, even Discord’s own official video introducing polls hilariously pokes fun at this makeshift system.

However, now with the introduction of official polls, this method of using emoji reactions can be a thing of the past. Creating a poll will be very simple: Tap that familiar plus icon next to the chat bar, select “Poll,” and done! You can title your poll, add up to 10 options, and even set a duration. Want a multiple-choice format? That’s an option too. No more worrying if seeing the results will skew your vote, as Discord will have a dedicated “Show Results” button.


Right now, there are some limitations to the feature. Slash commands won’t magically create polls, and there’s no anonymous voting. But hey, you can change your vote while the poll’s live, and anyone can create polls. Polls are slowly rolling out to all users in the next couple of days, so if you don’t see the feature show up now, sit tight as it will eventually get to you.

[ad_2]
Source link

Pixel 9 name surfaces on hidden files found inside latest Google app beta

0
[ad_1]
There is no question that the Pixel 9 series is coming this year, although the exact number of phones in the line is not clear. The last we heard, Google might release three Pixel 9 handsets this October, the Pixel 9, Pixel 9 Pro, and the Pixel 9 Pro XL. Similar to how Apple does things, the Pixel 9 Pro will be a smaller “Pro” version while the Pixel 9 Pro XL will be the larger-screened “Pro” model. The Pixel 9 Pro could sport a 6.1-inch display while a 6.8-inch screen should adorn the Pixel 9 Pro XL.
On “X,” AssembleDebug (via AndroidCentral) did what he does best and discovered some code in the beta version of the Google app (15.14.34.29.arm64) related to the Pixel 9 series. These files are actually connected to the Google Assistant setup wizard which users will see when they first turn on their new Pixel 9 series device to set up the phone. There are also rumors that the Pixel line might include a new “Pixie” digital assistant.

Two Pixel 9 files that AssembleDebug discovered in the Google app beta include assistant_robin_suw_pixel9_fragment.xml which appears to be related to the Google Assistant setup wizard (SUW) page. The second file, assistant_robin_suw_pixel9.json, is an animation that is also related to setting up the phone. Note the reference to the Pixel 9 in the name of both files. There has been no indication that Google will release an assistant named Pixie for Pixel models, but come on now. It sounds too good for this not to be a real thing. 

Google has been working to make Assistant a thing of the past and while the Google app tries to get users to switch from Assistant to Gemini, so far I haven’t been too impressed using the latter instead of Assistant. Android users might end up with a brand new digital assistant, not Gemini, replacing Google Assistant.


[ad_2]
Source link

YouTube Music launches the Activity feed

0
[ad_1]

If you’re a person who likes to keep up with all of your favorite music artists, then you most likely search through YouTube Music for any new releases. However, the platform has been working on a way of making that easier. According to a new report, YouTube Music is finally rolling out its new Activity Feed.

Music streaming services are all about keeping you up to date on the people making the music you love. Thus, the platform often gives you notifications when users you follow release new content. However, it never really had a unified way of seeing all of the updates. This is something that YouTube Music has been working on for a bit, and we recently covered what the company planned on doing.

YouTube Music is finally rolling out the Activity feed

The beauty of the Activity feed is that it allows you to view a unified feed of all the new updates you should keep up with. If you are subscribed to an artist on YouTube Music, any new releases from them will live in the feed.

You will see a new icon on the home screen sitting right next to the search icon. If this looks familiar, it’s the same icon as the bell icon on the YouTube app. When you tap it, you will see a feed of the artists you follow. Along with that, you’ll also see a feed of suggested artists. These are artists that the app thinks you’re most likely to want to follow.

It will act just like the notification section in the YouTube app. You’ll see a reverse chronological order feed of artists that you’re subscribed to.

Going to the Library tab, and turning on the Artists and Subscriptions filters will pretty much accomplish the same thing. However, accessing the Activity feed is a lot more straightforward. All you have to do is open the app and tap on the Bell icon.

This is rolling out to the iOS and Android apps currently. So, if you don’t see it just yet, then you may want to wait a bit.


[ad_2]
Source link

Qualcomm announced new power-efficient Wi-Fi & Bluetooth chips

0
[ad_1]

At the Embedded World Exhibition & Conference, Qualcomm showcased two new chips targeting the embedded and IoT ecosystem. These are the Qualcomm QCC730 Wi-Fi chip and the Qualcomm RB3 Gen 2 platform. These two chips reportedly enable on-device AI processing in the respective fields and also differ a high-performance yet power-efficient computing. Let’s discuss them in more detail one by one.

Qualcomm QCC730 Wi-Fi chip

To begin with, the company notes this chip as a “disruptive micro-power Wi-Fi system” purpose-built for IoT applications. As the naming suggests, the chip offers a whopping 88% lower power consumption as compared to its predecessor. The company also notes that the QCC730 Wi-Fi chip will be complemented with an open-source IDE and SDK. It will support cloud connectivity offloading for ease of development. This chip is shown off as an alternative to Bluetooth IoT applications for flexible design and direct cloud connectivity.

Additionally, Qualcomm is also offering two other IoT chips – the QCC711 and QCC740. The first one is a tri-core “ultra-low power” Bluetooth chip and the second one is an all-in-one solution that supports Thread, Zigbee, Wi-Fi, and Bluetooth.

Qualcomm RB3 Gen 2 platform for robotics

Qualcomm noted the RB3 Gen 2 platform as a “comprehensive hardware and software solution designed for IoT and embedded applications.” The RB3 Gen 2 utilizes the QCS6490 chip and offers a 10x increase in on-device AI processing. Additionally, it can manage data from four 8MP+ camera sensors, supports computer vision, and also integrates Wi-Fi 6E. Notably, the RB3 Gen 2 is expected to be used in a wide range of products, including various types of robots, drones, industrial handheld devices, industrial and connected cameras, AI edge boxes, intelligent displays, and more.

You can now pre-order the RB3 Gen 2 and experience it yourself with two integrated development kits and support downloadable software updates. It will help you build projects and proof-of-concepts. The RB3 Gen 2 also supports the recently announced Qualcomm AI Hub, which contains a library of continuously refreshed pre-optimized AI models for superior on-device AI. GSMArena expects that this new platform could become available in June.

With these new chips, various product categories like wireless earphones, drones, and cameras will offer higher battery life and more capable processing. We have previously seen substantial improvements in wireless audio transmission thanks to the company’s S7 Pro chip. Notably, the company will also introduce a new industrial-grade platform to address the functional safety, environmental, and mechanical handling requirements in industrial applications.


[ad_2]
Source link