14.5 C
New York
Monday, March 31, 2025
Home Blog Page 7

UK Reconsidering Tesla Subsidies After Trump Tariffs



Join each day information updates from CleanTechnica on e-mail. Or observe us on Google Information!


US President Donald Trump imposed tariffs on imported vehicles (once more), and one response from the UK is to rethink its coverage on electrical automobile subsidies, particularly since it’s offering a lot cash to Tesla consumers.

“Tesla has benefited from £188m in UK taxpayer subsidies in 9 years,” The Impartial writes.

After imposing a 25% tariff on vehicles exported from the UK to the US, it’s fairly pure for British individuals within the auto trade and politicians to say, “Hey, we’re spending lots of of thousands and thousands of {dollars} to subsidise your automobiles, and now you wish to slap a tax on ours? Let’s rethink how our EV insurance policies work….”

“Chancellor Rachel Reeves stated the federal government is reviewing its electrical automobile transition guidelines, amid requires reciprocal tariffs on Tesla imports,” The Impartial provides. “The Liberal Democrats have advocated for tariffs on Tesla, citing proprietor Elon Musk’s help for the US president.”

“Given Musk’s important backing of Trump, imposing tariffs on Tesla imports could be a becoming response,” a celebration spokesperson added.

“We must be getting ready to reply if wanted together with via Tesla tariffs that hit Trump’s crony Elon Musk within the pocket,” Liberal Democrat deputy chief Daisy Cooper famous.

The European Union has elevated tariffs on electrical autos produced in China. There are absolutely methods the UK authorities (and the EU) might give you methods to punish Tesla and Elon Musk for his or her function in an administration that’s fairly closely anti-Europe and anti-Earth. The US beneath Donald Trump is crushing conventional alliances, whereas solely actually seeming to align with Russia. Indisputably, there’s momentum constructing and there are instances to be made for why US vehicles ought to face some penalties within the US and Europe as effectively. We’ll see how far issues go.

Whether or not you’ve solar energy or not, please full our newest solar energy survey.



Chip in just a few {dollars} a month to assist help impartial cleantech protection that helps to speed up the cleantech revolution!


Have a tip for CleanTechnica? Need to promote? Need to recommend a visitor for our CleanTech Discuss podcast? Contact us right here.


Join our each day publication for 15 new cleantech tales a day. Or join our weekly one if each day is just too frequent.


Commercial



 


CleanTechnica makes use of affiliate hyperlinks. See our coverage right here.

CleanTechnica’s Remark Coverage




Gamaredon Hackers Weaponize LNK Information to Ship Remcos backdoor

0


Cisco Talos has uncovered an ongoing cyber marketing campaign by the Gamaredon risk actor group, focusing on Ukrainian customers with malicious LNK recordsdata to ship the Remcos backdoor.

Lively since at the least November 2024, this marketing campaign employs spear-phishing techniques, leveraging themes associated to the Ukraine battle to lure victims into executing the malicious recordsdata.

The LNK recordsdata, disguised as Workplace paperwork, are distributed inside ZIP archives and carry filenames referencing troop actions and different war-related matters in Russian or Ukrainian.

The assault begins with the execution of a PowerShell downloader embedded in the LNK file.

This downloader contacts geo-fenced servers situated in Russia and Germany to retrieve a second-stage ZIP payload containing the Remcos backdoor.

The downloaded payload employs DLL sideloading methods to execute the backdoor, a way that entails loading malicious DLLs by official functions. This strategy allows attackers to bypass conventional detection mechanisms.

Refined Supply Mechanisms

Gamaredon’s phishing emails seemingly embrace both direct attachments of the ZIP recordsdata or URLs redirecting victims to obtain them.

The marketing campaign’s filenames, comparable to “Coordinates of enemy takeoffs for 8 days” or “Positions of the enemy west and southwest,” counsel a deliberate try to take advantage of delicate geopolitical themes.

Metadata evaluation signifies that solely two machines had been used to create these malicious shortcut recordsdata, in keeping with Gamaredon’s operational patterns noticed in earlier campaigns.

The PowerShell scripts embedded within the LNK recordsdata use obfuscation methods, comparable to leveraging the Get-Command cmdlet, to evade antivirus detection. As soon as executed, these scripts obtain and extract the ZIP payload into the %TEMP% folder.

The payload contains clear binaries that load malicious DLLs, which decrypt and execute the ultimate Remcos backdoor payload.

This backdoor is injected into Explorer.exe and communicates with command-and-control (C2) servers hosted on infrastructure based in Germany and Russia.

Focused Infrastructure and Indicators of Compromise

The marketing campaign’s C2 servers are hosted by Web Service Suppliers comparable to GTHost and HyperHosting.

Notably, Gamaredon restricts entry to those servers primarily based on geographic location, limiting them to Ukrainian victims.

Reverse DNS information for a few of these servers reveal distinctive artifacts which have helped researchers determine extra IP addresses related to this operation.

The Remcos backdoor itself gives attackers with sturdy capabilities for distant management, together with information exfiltration and system manipulation.

Cisco Talos has noticed proof of unpolluted functions like TivoDiag.exe being abused for DLL sideloading throughout this marketing campaign.

Gamaredon’s use of superior methods comparable to DLL sideloading, geo-fenced infrastructure, and thematic phishing underscores its persistence in focusing on Ukraine amidst ongoing geopolitical tensions.

Organizations are suggested to stay vigilant towards such threats by implementing sturdy endpoint safety, e mail safety measures, and community monitoring options.

IOCs for this risk may be present in our GitHub repository right here.    

Discover this Information Fascinating! Comply with us on Google InformationLinkedIn, and X to Get On the spot Updates!

ios – Stockfish NNUE file not loading in ChessKitEngine


I’m utilizing ChessKitEngine to combine Stockfish into my iOS app. I’ve added the nn-1111cefa1111.nnue file to my challenge’s root folder and included it within the targets. The file was downloaded from the official Stockfish web site, and I’ve not renamed it.

Difficulty

Regardless of how I specify the NNUE file (filename, full path, escaped areas, and so on.), the engine all the time fails to load it and crashes.

My Code

import Basis
import ChessKitEngine

remaining class StockfishEngine {
    static let shared = StockfishEngine()
    personal let engine = Engine(sort: .stockfish)
    personal var isReady = false
    personal var pendingCompletionHandlers: [(String?) -> Void] = []

    init() {
        startEngine()
    }

    func startEngine() {
        print("Beginning engine initialization...")
        engine.loggingEnabled = true
        engine.begin {
            self.engine.ship(command: .uci)
            
            // Trying to set the NNUE file
            self.engine.ship(command: .setoption(id: "EvalFile", worth: "nn-1111cefa1111.nnue"))
            
            let threadCount = min(ProcessInfo.processInfo.processorCount - 1, 7)
            self.engine.ship(command: .setoption(id: "Threads", worth: String(threadCount)))
            self.engine.ship(command: .setoption(id: "Talent Stage", worth: "10"))
            
            self.engine.ship(command: .isready)
            
            self.engine.receiveResponse = { response in
                if "(response)".comprises("readyok") {
                    self.isReady = true
                    print("Stockfish Engine Began!")
                    self.processPendingRequests()
                    self.setupMoveResponseHandler()
                }
            }
        }
    }
}

Error Log

Beginning engine initialization...
uci
Stockfish 17 by the Stockfish builders (see AUTHORS file)
minemine
x
  Stockfish 17
  the Stockfish builders (see AUTHORS file)
possibility title Debug Log File sort string default 
possibility title Clear Hash sort button
possibility title Ponder sort test default false
possibility title EvalFile sort string default nn-1111cefa1111.nnue
possibility title EvalFileSmall sort string default nn-37f18f62d772.nnue

isready

setoption title EvalFile worth /Customers/myname/Library/Developer/CoreSimulator/Units/D1F042AC-7361-4EBC-86B7-6FA9050F68A9/knowledge/Containers/Bundle/Software/885F453B-3219-475A-9786-14C7DF2BFBB1/Apppercent20Name.app/nn-1111cefa1111.nnue
setoption title Threads worth 7
setoption title MultiPV worth 1
uci
setoption title EvalFile worth nn-1111cefa1111.nnue
setoption title Threads worth 7
setoption title Talent Stage worth 10
isready
Stockfish Engine Began!
  Utilizing 7 threads
  Stockfish 17
  the Stockfish builders (see AUTHORS file)
possibility title Debug Log File sort string default 
possibility title EvalFile sort string default nn-1111cefa1111.nnue
possibility title EvalFileSmall sort string default nn-37f18f62d772.nnue

  Utilizing 7 threads

setoption title Talent Stage worth 0
ucinewgame
place fen rnbqkbnr/pppppppp/8/8/8/3P4/PPP1PPPP/RNBQKBNR b KQkq - 0 1
go depth 15
rnbqkbnr/pppppppp/8/8/8/3P4/PPP1PPPP/RNBQKBNR b KQkq - 0 1
  Out there processors: 0-7
  Utilizing 7 threads
  ERROR: Community analysis parameters appropriate with the engine have to be out there.
  ERROR: The community file nn-1111cefa1111.nnue was not loaded efficiently.
  ERROR:
The UCI possibility EvalFile would possibly have to specify the total path, together with the listing title, to the community file.
  ERROR: The default internet may be downloaded from: https://assessments.stockfishchess.org/api/nn/nn-1111cefa1111.nnue
  ERROR: The engine can be terminated now.

What I Have Tried

  • Specifying simply the filename: "nn-1111cefa1111.nnue"
  • Utilizing the total path:
    let path = Bundle.essential.path(forResource: "nn-1111cefa1111", ofType: "nnue")
    self.engine.ship(command: .setoption(id: "EvalFile", worth: path ?? ""))
    
  • Escaping areas within the path
  • Verifying the file exists within the app bundle

Nonetheless, nothing appears to work. How can I appropriately load the NNUE file for Stockfish utilizing ChessKitEngine?

150,000 Websites Compromised by JavaScript Injection Selling Chinese language Playing Platforms

0


Mar 27, 2025Ravie LakshmananMalware / Web site Safety

150,000 Websites Compromised by JavaScript Injection Selling Chinese language Playing Platforms

An ongoing marketing campaign that infiltrates reputable web sites with malicious JavaScript injects to advertise Chinese language-language playing platforms has ballooned to compromise roughly 150,000 websites up to now.

“The risk actor has barely revamped their interface however remains to be counting on an iframe injection to show a full-screen overlay within the customer’s browser,” c/facet safety analyst Himanshu Anand stated in a brand new evaluation.

As of writing, there are over 135,800 websites containing the JavaScript payload, per statistics from PublicWWW.

Cybersecurity

As documented by the web site safety firm final month, the marketing campaign includes infecting web sites with malicious JavaScript that is designed to hijack the consumer’s browser window to redirect website guests to pages selling playing platforms.

The redirections have been discovered to happen through JavaScript hosted on 5 completely different domains (e.g., “zuizhongyj[.]com”) that, in flip, serve the principle payload accountable for performing the redirects.

c/facet stated it additionally noticed one other variant of the marketing campaign that entails injecting scripts and iframe parts in HTML impersonating reputable betting web sites equivalent to Bet365 by making use of official logos and branding.

The tip purpose is to serve a fullscreen overlay utilizing CSS that causes the malicious playing touchdown web page to be displayed when visiting one of many contaminated websites in place of the particular internet content material.

“This assault demonstrates how risk actors consistently adapt, rising their attain and utilizing new layers of obfuscation,” Anand stated. “Shopper-side assaults like these are on the rise, with an increasing number of findings each day.”

The disclosure comes as GoDaddy revealed particulars of a long-running malware operation dubbed DollyWay World Domination that has compromised over 20,000 web sites globally since 2016. As of February 2025, over 10,000 distinctive WordPress websites have fallen sufferer to the scheme.

Chinese Gambling Platforms
Chinese Gambling Platforms

“The present iteration […] primarily targets guests of contaminated WordPress websites through injected redirect scripts that make use of a distributed community of Site visitors Route System (TDS) nodes hosted on compromised web sites,” safety researcher Denis Sinegubko stated.

“These scripts redirect website guests to varied rip-off pages by means of site visitors dealer networks related to VexTrio, one of many largest recognized cybercriminal affiliate networks that leverages refined DNS methods, site visitors distribution programs, and area era algorithms to ship malware and scams throughout international networks.”

The assaults begin with injecting a dynamically generated script into the WordPress website, in the end redirecting guests to VexTrio or LosPollos hyperlinks. The exercise can also be stated to have used advert networks like PropellerAds to monetize site visitors from compromised websites.

Cybersecurity

The malicious injections on the server-side are facilitated by means of PHP code inserted into lively plugins, whereas additionally taking steps to disable safety plugins, delete malicious admin customers, and siphon reputable admin credentials to satisfy their targets.

GoDaddy has since revealed that the DollyWay TDS leverages a distributed community of compromised WordPress websites as TDS and command-and-control (C2) nodes, reaching 9-10 million month-to-month web page impressions. Moreover, the VexTrio redirect URLs have been discovered to be obtained from the LosPollos site visitors dealer community.

Round November 2024, DollyWay operators are stated to have deleted a number of of their C2/TDS servers, with the TDS script acquiring the redirect URLs from a Telegram channel named trafficredirect.

“The disruption of DollyWay’s relationship with LosPollos marks a big turning level on this long-running marketing campaign,” Sinegubko famous. “Whereas the operators have demonstrated exceptional adaptability by rapidly transitioning to different site visitors monetization strategies, the speedy infrastructure modifications and partial outages recommend some degree of operational affect.”

Discovered this text attention-grabbing? Comply with us on Twitter and LinkedIn to learn extra unique content material we submit.



Johnson & Johnson MedTech launches Dualto generator that may work with Ottava surgical robotic

0


Johnson & Johnson MedTech launches Dualto generator that may work with Ottava surgical robotic

The Dualto surgical power system. | Supply: Johnson & Johnson MedTech

As with different robotics functions, there may be at all times room for enchancment in energy and usefulness for surgical techniques. Johnson & Johnson MedTech this week introduced that it has launched its FDA-cleared Dualto power system.

Dualto is a surgical system that mixes a number of power modalities into an built-in platform to be used throughout open and minimally invasive surgical procedures. J&J designed it to work with its Polyphonic Fleet software program software for gadget administration.

The firm additionally plans for Dualto for use with its extremely anticipated Ottava surgical robotic. J&J designed Dualto to supply the choice of powering monopolar, bipolar, ultrasonic, and superior bipolar devices. These embody the Harmonic and Enseal units, all powered by a single, consolidated system.

The system’s modular design and versatile structure take up practically half (46%) of the footprint of separate turbines, stated the medtech large.

For extra on surgical robotics, obtain MassDevice‘s free particular report.

Design incorporates advances for surgeons

Dualto is the primary and solely surgical power system to be made obtainable in double configuration, claimed Johnson & Johnson MedTech. This permits two surgeons to work in a fancy process and activate simultaneous power from one unit.

“The Dualto power system represents a major development in human-centric design, delivering a totally linked resolution that simplifies surgical power and enhances efficiencies within the OR,” stated Hani Abouhalka, firm group chair for surgical procedure at J&J.

Johnson & Johnson MedTech has been a trusted associate in surgical procedure for over a century, and we’re leveraging scientific insights to tailor the design of our applied sciences to satisfy the wants of surgeons and scientific groups,” he stated. “Dualto helps a extra versatile and digitally linked OR ecosystem for the way forward for surgical care.”

Extra in regards to the Johnson & Johnson MedTech Dualto system

Dualto makes use of proprietary adaptive tissue know-how to reinforce the efficiency of the Harmonic and Enseal units. Adaptive tissue know-how responds intelligently to altering tissue situations and regulates power supply. It delivers improved temperature administration and offers tone modifications and person alerts for extra exact power supply, defined J&J.

The corporate stated its streamlined working room setup with Dualto might assist reduce stress ranges for surgeons and scientific groups. The system prioritizes usability with an instinctive touchscreen interface with clear visible and auditory cues. It gives real-time suggestions and streamlined workflows with sooner setup and changes by customized settings.

Johnson & Johnson MedTech’s Polyphonic Fleet software program software helps hospitals oversee capital tools. The applying can inform the standing of Dualto for software program upgrades and routine upkeep wants.

The corporate stated it plans to make Dualto and Polyphonic Fleet obtainable to pick out hospital websites in choose markets “quickly.” Ottava stays below improvement and investigational evaluate.

Johnson & Johnson MedTech’s Polyphonic ecosystem will allow new experiences throughout our portfolio of medical units, robotics, and software program options,” stated Shan Jegatheeswaran, vp for digital at J&J. “Dualto combines superior power know-how with Polyphonic Fleet’s ecosystem to supply distant help. We’re excited to empower healthcare groups with capabilities for extra linked OR units.”

J&J plans to showcase the system on the Affiliation of periOperative Registered Nurses (AORN) International Surgical Convention & Expo in Boston subsequent month.

Editor’s be aware: This text was syndicated from The Robotic Report sibling website MassDeviceStudy extra about surgical robotics on the Robotics Summit & Expo, which is co-located with DeviceTalks Boston, on April 30 and Could 1.


SITE AD for the 2025 Robotics Summit registration.
Register now so you do not miss out!