Cox Modem Vulnerabilities Risked Modems To Hacking

0
[ad_1]

A researcher discovered numerous security flaws in Cox modems that allowed device hacking to remote attackers. Exploiting the vulnerabilities could let an adversary take control of a target Cox modem, execute commands, and meddle with the device settings.

Cox Modem Vulnerabilities Allowed Remote Attacks

According to a recent post from the researcher Sam Curry, numerous vulnerabilities impacted the security of Cox modems, allowing remote modem hacking.

As explained, the series of vulnerabilities together led to an authorization bypass issue in the backend API that allowed an adversary to take over target Cox modems. Abusing the exposed APIs could let the adversary access customers’ personal information, such as names, phone numbers, email addresses, and account numbers. Moreover, the APIs also exposed WiFi passwords and hardware MAC addresses of connected devices. That means using this particular vulnerability risked all connected devices.

Since the vulnerability existed in these modems for years, it made millions of devices vulnerable to security threats.

Describing further, the researcher explained that the vulnerabilities resulted in around 700 exposed APIs, some of which could even allow admin access, letting an attacker execute unauthorized commands, modify device settings, and gain ISP-level permissions.

Patch Deployed

Considering that Cox ranks among the top US broadband, telephone cable, and phone carrier services, the proportionately huge number of vulnerable devices indicates the extent of damage in case of malicious exploits.

Thankfully, following the researcher’s report, Cox patched the vulnerabilities within 24 hours, preventing any active attacks. The firm also assured that it had detected no exploitation attempts in the past.

However, an interesting aspect of the researcher’s report is the active hacking attack on his own modem. The unknown adversary kept the researcher’s device compromised for quite some time, remaining undetected all the while. Though the researcher tried to trace the unknown adversary, he could spot the vulnerabilities and get them patched, remaining unsuccessful in tracking the attacker(s) on his own device.

Anyhow, now that Cox has deployed the patches, users must ensure that their devices are updated with the latest patches to address the modem vulnerabilities.

Let us know your thoughts in the comments.


[ad_2]
Source link

Galaxy Z Fold 6 to recycle camera hardware from the Fold 5

0
[ad_1]

It seems like the Galaxy Z Fold 6 will recycle the Galaxy Z Fold 5’s camera hardware. This information comes from Ice Universe, as he claims that the Galaxy Z Fold 6 will have the exact same cameras as its predecessor.

The Galaxy Z Fold 6 will recycle camera hardware, a well-known tipster claims

In his X post, he was very clear when stating that all of the phone’s cameras will be the same. He mentioned rear cameras, a front camera, camera specifications in general, UPC, and aperture value. There will be no change whatsoever.

If that ends up being the case, Samsung really is risking annoying its consumers. If we take into account the Galaxy Z Fold 4, the company has been pushing this camera hardware for far too long.

There are other foldable smartphones in the market that have much better camera hardware at this point. They also offer better camera performance as a result of that, and improved image processing too, of course.

Samsung could end up improving its camera algorithms and whatnot, but there’s only so much the company can do with this camera hardware. Many people have been expecting an improvement in that regard.

The source said that AI will be the main selling point for Samsung’s new foldable

The tipster was asked “what’s the selling point” of the phone then, considering that not much will change, aside from the aspect ratio. He said that Samsung will focus heavily on AI, and will push it as the main selling point.

Let’s hope that the company will change things up with the Galaxy Z Fold 7 next year. The competition is going forward in a number of ways, and it just feels like Samsung is lagging behind.

The company could, of course, bounce back really fast, as it does have the knowledge and resources to do that. It remains to be seen if things will change next year.


[ad_2]
Source link

Apple is now the home of one of the most popular book clubs

0
[ad_1]
Apple’s e-book reading app has just become the official audiobook home of one of the most popular book clubs, Reese’s Book Club. Founded by iconic American actress and producer Resse Witherspoon, the book club puts women at the center of stories each month.

The partnership between Apple Books and Reese Witherspoon involves a dedicated page for users to follow to be notified about new monthly picks, which will be featured on Apple’s app.

This dedicated page also allows users to browse books from previous months that were spotlighting women, as well as get access to themed editorial collections curated exclusively by Apple and Reese’s Book Club editors.

But wait, there’s more! Apple announced that its Books app will offer exclusive pricing promotions. On top of that, Hello Sunshine authors, another company founded by Reese Witherspoon that aims to empower women, will curate audiobook recommendations, thus helping readers to choose from more stories that will be revealed only on Apple Books.

Starting this week, Apple Books users can find Reese’s Book Club in the app and learn more about the latest selection, including the newly announced pick for June, which is “The Unwedding,” by number 1 New York Times bestselling author Ally Condie.

This is not the first time that Apple and Reese Witherspoon teamed up for a project. Reese’s Hello Sunshine has already produced the Apple TV+ original series The Last Thing He Told Me, which was renewed for season two, and the Critics Choice Award-winning series “The Morning Show,” among other things.

[ad_2]
Source link

Poc Exploit Released For Veeam Authentication Bypass Vulnerability

0
[ad_1]

A proof-of-concept (PoC) exploit has been released for a critical authentication bypass vulnerability in Veeam Backup Enterprise Manager.

The vulnerability, identified as CVE-2024-29849, has a CVSS score of 9.8, indicating its high severity.

This article delves into the details of the vulnerability, the exploit, and the potential implications for organizations using Veeam’s software. 

On May 21, 2024, Veeam published an advisory regarding CVE-2024-29849, a critical authentication bypass vulnerability in Veeam Backup Enterprise Manager.

This flaw allows an unauthenticated attacker to log in to the Veeam Backup Enterprise Manager web interface as any user, effectively bypassing all authentication mechanisms.

The vulnerability resides in the Veeam.Backup.Enterprise.RestAPIService.exe, a REST API server component of the Veeam Backup Enterprise Manager software.

This service listens on TCP port 9398 and serves as an API version of the main web application, which operates on TCP port 9443. 

Analyze any MaliciousURL, Files & Emails & Configuration With ANY RUN Start your Analysis

Technical Analysis of the Exploit

The PoC exploit, developed by Sina Kheirkhah of the Summoning Team, leverages the vulnerability by manipulating the Veeam.Backup.Enterprise.RestAPIService.CEnterpriseRestSessionManagerControllerStub.LogInAfterAuthentication method.

This method is executed when an authentication request is received, and the exploit targets specific checks and conditions within this method to bypass authentication.

The exploit involves crafting a malicious SAML assertion and sending it to the vulnerable Veeam service.

The SAML assertion is designed to trick the service into validating the token and granting access to the attacker.

The exploit script, written in Python, automates this process and includes a callback server to handle the malicious SAML assertion.

Diagram illustrating the authentication bypass exploit process.
Diagram illustrating the authentication bypass exploit process.

Proof of Concept (PoC) Code

The PoC code for the exploit has been made publicly available, allowing security researchers and potentially malicious actors to understand and replicate the attack.

Below is a snippet of the PoC code:

from http.server import HTTPServer, SimpleHTTPRequestHandler

import ssl

import warnings

import base64

import requests

from urllib.parse import urlparse

from threading import Thread

import os

warnings.filterwarnings("ignore", category=DeprecationWarning)

requests.packages.urllib3.disable_warnings()

class CustomHandler(SimpleHTTPRequestHandler):

    def do_POST(self):

        xml_response=""'<saml2:Assertion xmlns:saml2="urn:oasis:names:tc:SAML:2.0:assertion">

                            <saml2:Issuer>https://192.168.253.1/STSService</saml2:Issuer>

                            <saml2:Status>

                                <saml2:StatusCode Value="http://docs.oasis-open.org/ws-sx/ws-trust/200512/status/valid"/>

                            </saml2:Status>

                          </saml2:Assertion>'''

        self.send_response(200)

        self.send_header("Content-type", "text/xml")

        self.end_headers()

        self.wfile.write(xml_response.encode("utf-8"))

        print("(+) SAML Auth request received, serving malicious RequestSecurityTokenResponseType")

def start_callback_server(ip, port):

    httpd = HTTPServer((ip, port), CustomHandler)

    ssl_context = ssl.SSLContext(ssl.PROTOCOL_TLS_SERVER)

    ssl_context.load_cert_chain("server.pem", keyfile="key.pem")

    httpd.socket = ssl_context.wrap_socket(httpd.socket, server_side=True)

    print(f"(*) Callback server listening on https://{ip}:{port}")

    httpd.serve_forever()

# Additional code for exploit execution...
Figure 2Snippet of the PoC exploit code.
Figure 2Snippet of the PoC exploit code.

Implications and Mitigation

The release of this PoC exploit underscores the critical nature of CVE-2024-29849.

Organizations using Veeam Backup Enterprise Manager are at significant risk if they do not apply the necessary patches and mitigations.

An attacker exploiting this vulnerability could gain unauthorized access to sensitive data and systems, leading to potential data breaches and other security incidents.

Veeam has recommended immediate updates to their software’s latest version, including patches to address this vulnerability.

Additionally, organizations should review their security configurations and consider implementing additional layers of security, such as multi-factor authentication (MFA) and network segmentation, to mitigate the risk of exploitation. 

The discovery and public release of the PoC exploit for CVE-2024-29849 highlight the ongoing challenges in securing enterprise software.

It reminds organizations to stay vigilant, keep their systems updated, and adopt robust security practices to protect against emerging threats.

Looking for Full Data Breach Protection? Try Cynet's All-in-One Cybersecurity Platform for MSPs: Try Free Demo


[ad_2]
Source link

iPhone 16 battery leak shows larger capacity & metal casing

0
[ad_1]

Many people complained about the overheating issue of the iPhone 15 series. Apple promised to solve the overheating problem through software updates. However, the issue still persists for many users. The problem could be due to a hardware design of the previous model.

iPhone 16 battery leak shows metal casing & bigger capacity

Now a leak from tipster Majin Bu on X has revealed the battery on the iPhone 16. The image suggests that Apple doesn’t want to make the same mistake with the iPhone 16 series. According to the leak, the battery of the iPhone 16 will equip a metal case outside the soft plastic pouch. The metal casing should help dissipate the heat from the battery. It should be especially helpful when the phone is charging, as this is the scenario where the battery cell heats up the most.

The battery has a similar shape, but the engraving on the metal casing shows “3597mAh”. For context, the iPhone 15 has a smaller 3349 mAh battery.

The leaked images of the iPhone 16 battery show a frosted finish on the case. Apple has also redesigned the connectors. Apple reportedly opted for a glossy surface for the metal casing at first but later on decided to go for a frosted finish.

The use of a hard case for the batteries was first leaked in November by tipster @KosutamiSan. He also claimed that the iPhone 16 series will switch to a graphene thermal system, as it offers excellent thermal conductivity (better than copper).

The latest leak is about the base iPhone 16. However, the tipster @KosutamiSan already shared leaked images of the iPhone 16 Pro battery back in April this year. According to the leak, the battery for the iPhone 16 Pro also has a frosted metal casing and a capacity of 3355mAh. This is around a 2.4% increase as compared to the iPhone 15 Pro.

iPhone 16 could use a different battery technology or it could be heavier

iPhones were becoming heavier and Apple had to find a solution to it. They replaced the stainless steel middle frame of the Pro models with titanium to reduce the weight. As a result, the iPhone 15 Pro became significantly lighter (187g) as compared to its predecessor (206g).

While the iPhone 15 (171g) weighs very similar to its predecessor, the extra metal inside the iPhone 16 may significantly increase the weight. A higher battery capacity will also contribute to the increased weight.

Nonetheless, we can only observe the exterior of the battery pack. Apple might be using a different battery technology with higher energy density, as seen in some book-style foldables.

This is plausible since the metal casing increases the battery’s thickness, which could require a redesign of the internal components or result in a thicker phone.


[ad_2]
Source link

Best of Computex 2024: MSI X870 Motherboards

0
[ad_1]

MSI’s new motherboards are stronger and easier to assemble than ever before

At Computex this week in Taiwan, MSI introduced the X870 motherboards, which perfectly compliment the new AMD Ryzen 9000 lineup of processors. It also includes PCIe Gen 5.0 and M.2 slots, which makes for a great experience in both graphics and storage.

While we don’t yet have pricing or availability for the MSI X870 motherboards, we do know that these will be some of the best motherboards launching this year hence why the MSI X870 Motherboards have earned a Best of Computex 2024 award from Android Headlines.

MSI includes cutting-edge technologies in the new X870 motherboards

As you’d expect from a brand new lineup of motherboards, MSI is supporting the most cutting-edge technologies, including USB 4 connectivity, which will offer speeds of up to 40GB per second. It’s been outfitted with the MAG X870 TOMAHAWK WiFi and PRO X870-P WiFi with cutting-edge 5G LAN, WiFi 7, and Bluetooth 5.4. Basically, it is the latest and greatest tech that will be available in 2024.

When these motherboards become available – likely later this year – it’s definitely going to be the one you want to put in your rig. MSI is also focusing on the ease of assembly with these new motherboards. GPUs getting larger and heavier can be a strain on the motherboard. So MSI is also offering three additional anchor points and using a thicker material for the PCIe slots, which should solve that problem. These are 121% stronger than previous-gen solutions. And the slots are able to withstand twice the weight of the graphics card than before.

Continuing with the ease of assembly theme, MSI has also made it even easier to install an M.2 SSD into your rig with the X870. Just a simple push locks the M.2 SSD into place, and removing it is as simple as a slight pull to the left. It really can’t get any easier than that.

MSI uses cutting-edge technologies and makes installation and upgrades a piece of cake with the X870 motherboards. That’s why we have awarded these new motherboards the Best of Computex 2024 award.


[ad_2]
Source link

Google Messages changes the way drafts behave with new update (or is it a bug?)

0
[ad_1]

Google apps are constantly getting updates and little tweaks. The latest one for Google Messages changes the way message drafts behave.

Previously, when you entered text in the compose field but didn’t send it, it would be reflected on the main conversation list. And the thread would be moved up the page, while your text would appear in italics.

Now, with the latest update to Google Messages (version 20240521_00_RC01), also with the beta version (20240531_00_RC00) that preview no longer appears. The thread will still move up the list, but apart from that, you don’t see any indication you have a drafted message in there. It even looks a bit confusing because the last message from the contact shows up with an updated date, instead of showing “Draft” to your message.


It seems like this could be a bug instead of a feature. It doesn’t make the experience better, it can actually generate quite a lot of confusion. Hopefully that will be fixed and is not by design, but it is not clear at the moment if it’s a bug.

Recent features that were removed from Google Messages like reminders or message organization (Personal + Business) indicate this could be another feature removal… but it personally doesn’t make much sense. I’m inclined to say this is indeed a bug, but info on it is scarce at the moment. We have to wait and see what happens!


[ad_2]
Source link

Critical Auth Bypass Flaw Affected Progress Telerik Report Server

0
[ad_1]

Progress patched a critical authentication bypass flaw impacting its Telerik Report Server. The vulnerability appeared after Progress tried to address another vulnerability but an authorization bypass became possible. Users must ensure updating to the latest release to receive the fix.

PoC Shared For Progress Telerik Report Server Flaw

According to a recent post from the security researcher Sina Kheirkhah, Kheirkhah, together with another researcher Soroush Dalili, developed an exploit for a patched vulnerability in Progress Telerik Report Server.

As explained, the vulnerability, now identified as CVE-2024-4358, is basically an authentication bypass in a previously reported flaw CVE-2024-1800.

Regarding CVE-2024-1800, this vulnerability made it to the news when Progress disclosed it as a remote code execution vulnerability. According to the ZDI’s advisory, the issue appeared because of insecure deserialization, and exploiting this vulnerability required authentication.

This flaw received initially received a CVSS score of 8.8, and it affected Telerik Report Server versions prior to 2024 Q1 (10.0.24.130). Progress deployed a patch for it with Report Server 2024 Q1 (10.0.24.305), asking users to upgrade to this or later versions.

However, the two researchers devised a way to bypass this authentication restriction, eventually raising its CVSS to 9.9, and receiving a new identification, CVE-2024-4358.

Specifically, they observed a flaw in the implementation of Register method. Because of a lack of validation for the current installation setup, an unauthenticated adversary could exploit the flaw, receiving “System Administrator” privileges.

Once an adversary gains admin privileges, exploiting the deserialization issue to achieve full RCE becomes trivial.

The researcher has explained the technical details about the vulnerabilities, alongside sharing the PoC exploit, in his post.

Progress Patched The Vulnerability

Following the responsible disclosure from the researchers, Progress patched the vulnerability and shared a detailed advisory to help the users patch their systems.

As elaborated, the vulnerability affected the Report Server version 2024 Q1 (10.0.24.305), which the vendors patch with the release of Report Server 2024 Q2 (10.1.24.514). To avoid potential exploits, users must ensure updating to this, or later Report Server versions.

Nonetheless, where applying an immediate update isn’t possible, Progress recommends implementing URL rewrite technique as temporary mitigation.

In addition, they also advised users to look for any new local accounts in the Report Server users’ list via {host}/Users/Index to ensure no malicious accounts exist.

Let us know your thoughts in the comments.


[ad_2]
Source link

Support page reveals details about Android’s Instant Hotspot feature

0
[ad_1]

Google announced a new tool called the Instant Hotspot for Android devices in a Feature Drop last month. The feature lets you instantly connect to another device’s internet connection with just a single click. This becomes possible thanks to the new cross-device services feature that will come to Android soon.

Google has now shared more information about the Android Instant Hotspot feature through the official support page.

How to enable the Instant Hotspot feature in Android?

Instant Hotspot requires the host device (that is sharing the network) and all the devices that will join the network (clients) to be signed into the same Google account. In addition to that, Android’s new cross-device services should also be enabled. The feature is currently not active on any Android device.

After signing into the same Google account and enabling cross-device services you will need to go to Settings > Google > All services > Devices & sharing > Cross-device services on all of the devices. Under the “What your devices can do” heading you will need to select Internet sharing. You’ll also make sure that Internet sharing and Instant hotspots are both enabled here.

Finally, if one of the devices isn’t connected to the internet, and is within the range of another with an internet connection, it will show a pop-up notification. By tapping on the notification you will be able to instantly connect the client to one a host device.

While there is an initial setup process for all your devices, the feature enables seamless connectivity once it’s set up. At present you need to reach the host device and activate the hotspot each time you want to use it.

However, not every device is treated equally

This feature is only available for Android 11 and later versions. In addition to that, Samsung users do not get to experience this feature. “If you have a Samsung device, you can use the Auto Hotspot feature instead,” notes the support page.

Android Go devices won’t support this feature either. For those unfamiliar, it is a lightweight version of the Android operating system designed for low-end and budget smartphones with limited hardware resources.


[ad_2]
Source link

Best of Computex 2024: GPD Duo

0
[ad_1]

Two identical displays in a 13-inch laptop form factor.

GPD is a company often mentioned in relation to small laptops. Many of you heard of it thus far, and the company did make an appearance at Computex this year. As part of the show, the company teased its upcoming device. The device in question is GPD DUO, and due to its potential, we’ve decided to send one of our awards GPD’s way. The company did share an image of the device, and some of its details, despite the fact it was not fully revealed during the show. More details are expected to come very soon, though.

The GPD DUO offers two displays in a compact form factor

So, what’s so special about the GPD DUO? Well… its displays. Yes, you read it right, plural. The GPD DUO will come with two displays, which you will be able to utilize in several ways. You’ll be able to stack them one above the other, or one next to the other. If you don’t want to use the second panel at any given time, you simply flip it over all the way and forget it’s there. You can basically use your laptop while you’re playing something else on the second screen for someone, on the other side. If you need more screen real estate, that’s not a problem, simply stack them one on top of the other.

The Microsoft Surface Pen stylus is compatible with this laptop

That’s not all, though. There’s one more use case… a tablet use case. You can close the lid on the GPD DUO, and still have one display available on the outside, in case you’d like to use it in a tablet form. Yes, this is a touchscreen, and it supports a 10-point touch input. On top of that, it’s compatible with the Surface Pen stylus and supports 4,096 levels of pressure sensitivity with that stylus (the MPP protocol). This laptop can be used for design purposes this way, without a problem.

Two 13.3-inch Samsung-made OLED displays are used

The size could be the key here. The GPD DUO features two 13.3-inch OLED displays. When folded, it’s the size of an A4 sheet of paper, says GPD. It’s, of course, a lot thicker, but its height and width are very manageable. The fact it can unfold into a dual-screen setup could come in handy for many people. A 13-inch laptop size is still preferred by many, but you’re getting the best of both worlds here. Not only are you getting a manageable laptop in terms of size, but two displays on it too. GPD is using Samsung’s AMOLED panels here, by the way.

There’s a lot of potential in this laptop and its form factor, and GPD has plenty of experience in the field. We’re all waiting for more information about the GPD DUO.


[ad_2]
Source link