Feed aggregator
Show HN: I built an email agent for founders who are stuck in email
It all started 4 months ago during my last startup. Even with barely any traction, I was getting about 20 emails a day. Some from cold randoms, some internal, some from prospects. And I just wasted so much time in my inbox.
The current solutions? Superhuman and HEY. Sure they're pretty but the ai is just an after thought. And the tool that was supposed to help me just makes me, my own assistant.
So I went and built Dirac.
We're launching in 8 hours, https://www.producthunt.com/products/dirac-3?launch=dirac-4
Comments URL: https://news.ycombinator.com/item?id=48546808
Points: 1
# Comments: 0
Jax: Commitment Issues
Article URL: https://www.gilesthomas.com/2026/06/jax-commitment-issues
Comments URL: https://news.ycombinator.com/item?id=48546767
Points: 1
# Comments: 0
Tired of chaos, investors retreat from oil market at record pace
Article URL: https://www.reuters.com/business/energy/tired-chaos-investors-retreat-oil-market-record-pace-2026-06-12/
Comments URL: https://news.ycombinator.com/item?id=48546758
Points: 1
# Comments: 1
TerraWatch,GitHub App that scans Terraform PRs and posts exact fix in comment
Article URL: https://terrawatch.dev
Comments URL: https://news.ycombinator.com/item?id=48546754
Points: 1
# Comments: 0
Is it feasible to self host OSS EU productivity suite? [A Mijn Bureau Review]
Article URL: https://techstackups.com/articles/is-it-feasible-to-self-host-an-open-source-eu-sovereign-productivity-suite-in-2026/
Comments URL: https://news.ycombinator.com/item?id=48546726
Points: 1
# Comments: 0
Inside a malicious infrastructure delivering EtherRAT, phishing pages, and malicious software
During our recent threat hunting activities, we found EtherRAT malware being distributed by a website with a strange homepage. This homepage allowed us to discover a vast malicious infrastructure distributing malware, malicious documents, remote desktop software, and phishing pages.
EtherRAT is a RAT developed in Node.js which allows an attacker to gain complete control over the machine and execute arbitrary code returned by the Command and Control (C2) server. The malware uses the Etherium blockchain to obtain the C2 server, hence the “Ether” part of the name. EtherRAT is typically distributed via MSI, PowerShell, or JavaScript scripts.
An open directory that distributes EtherRAT: where it all beganWhile threat hunting, we found an open directory that was distributing MSI installers and PowerShell scripts, which ultimately distributed EtherRAT. In the analyzed cases, the PowerShell scripts and MSI installers were distributed from a “/install” folder. The versions have a progressive number, ranging from v1 to v10.
Open Directory hosting EtherRAT MSIThe returned home page caught our attention and prompted us to further explore the campaign.
The homepage returned by the EtherRAT distribution websiteAnalyzing domains and associated IPs with the EtherRAT distribution, we detected other similar home pages with a hacking-style theme. They appeared to belong to a larger distribution chain, which also distributes phishing, remote control software, and other malware. These websites usually have several folders with malware and phishing related content, and what is displayed depends on the specific infection chain.
Different websites that resolve to the same IP addresses have previously returned pages related to fake companies or default templates. The use of these new pages could therefore be a method to make detection more difficult for automated scanners or researchers. Here are some of the home pages we found:
Some of the malicious websites indexed on GoogleEtherRAT is an interesting RAT, as it has few lines of code and allows the execution of arbitrary code returned by the C2 server. Furthermore, using the Ethereum blockchain to obtain the C2 server makes it more resilient to infrastructure takedowns.
Technical analysis of EtherRATThe detected websites usually distribute an MSI or PowerShell script with the version name, such as v1.msi, v2.ps1, and so on.
MSI LoaderThe MSI file “v9.msi” contains three components:
MSI Filename Description KmPuGimn.cmd BAT launcher cDQMlQAru0.xml First Jscript loader MRaQCipBIZeiZNx.log Encrypted EtherRATWhen the MSI is executed, the “KmPuGimn.cmd” file is started:
conhost --headless cmd /c "KmPuGimn.cmd"This obfuscated BAT file performs different operations:
- Extracts the other files in a random folder in %LOCALAPPDATA%.
- Re-executes itself via:
- %SystemRoot%\System32\conhost.exe –headless %SystemRoot%\System32\cmd.exe /c call “C:\Users\{user}\AppData\Local\{random_path}\KmPuGimn.cmd” nKWa
- Runs the command “where node” to find an existing installation.
- Downloads Node.js if it’s not found
- Uses “curl -sLo” to download Node.js from the official website.
- Extracts to installation directory via “tar -xf”.
- Renames extracted directory to “28Q75h”.
- Loops until both “MRaQCipBIZeiZNx.log” and “cDQMlQAru0.xml” exist, then executes:
- conhost.exe –headless C:\Users\{user}\AppData\Local\{random_path}\{random_path}\node.exe cDQMlQAru0.xml
The executed “cDQMlQAru0.xml” is a loader that decrypts the embedded code with a XOR function and then executes it with “vm.compileFunction”.
decrypted[i] = (encrypted[i] - key[i % key.length] - i) & 0xFF The embedded decrypted codeThe decrypted code:
- Copies node.exe in “C:\Users\{user}\AppData\Local\{random_path}\{random_path}\_MJlLlt5.exe”.
- Adds a registry key for persistence with “conhost.exe –headless”.
- Decrypts “MRaQCipBIZeiZNx.log” and executes it with “_MJlLlt5.exe” stdin.
The decryption algorithm is a custom stream-like decoding routing based on XOR, byte rotations and an accumulator:
for e in range(len(data)): byte = data[e] g = prev prev = byte byte = (byte - g) & 0xff byte = byte ^ n[e % len(n)] ^ ((e >> 8) & 0xff) byte = si[byte] byte = (byte - k[e % len(k)]) & 0xff result[e] = byteThe final stage is to deploy EtherRAT. EtherRAT allows the attacker to:
- Execute arbitrary JavaScript code received by the C2 server. This allows the attacker to execute new commands, perform operations on files and folders, modify the registry, and exfiltrate data.
- Get a new C2 server using the Ethereum blockchain.
- Reobfuscate itself.
- Save the logs to “svchost.log”.
The EtherRAT uses Ethereum’s “eth_call” JSON-RPC method to retrieve the active C2 URL from a smart contract on the Ethereum mainnet.
The blockchain parameters in this case are:
- Contract: 0x88ea8d0bc4146f0a018e989df3fd089ac48f9a58
- Function selector: 0x7d434425
- Argument: 0xf6a772e163e64b07f658946f863b5d457d88f9f0
The contacted URLs to obtain the C2 server endpoint are:
- mainnet[.]gateway[.]tenderly[.]co
- rpc[.]flashbots[.]net/fast
- rpc[.]mevblocker[.]io
- eth-mainnet[.]public[.]blastapi[.]io
- ethereum-rpc[.]publicnode[.]com
- eth[.]drpc[.]org
- eth[.]merkle[.]io
Polling requests use randomized URL patterns based on some parameters defined in the code:
GET /api/<4-byte-hex>/<victim-uuid>/<4-byte-hex>.<ext>?<param>=<build-id> X-Bot-Server: <c2_url>In the analyzed sample, the parameters are:
- Build ID: “6f816d80-0d6c-4384-9cd6-6b79965fc08f”
- ext: randomly selected from “png”, “jpg”, “gif”, “css”, “ico”, “webp”.
- param: randomly selected from “id”, “token”, “key”, “b”, “q”, “s”, “v”.
After startup, the RAT sends its own source code to the C2 server. The C2 responds with a newly obfuscated version of the script, which is written back to disk, making each execution generate a new file hash.
POST /api/[REOBF_PATH]/<victim-uuid> Body: { "code": "<current_script_contents>", "build": "<build_id>" }After the EtherRAT execution, we observed different post-compromised cmd.exe activities to check the environment. For example:
- powershell -NoProfile -NonInteractive -WindowStyle Hidden -Command “(Get-WmiObject Win32_VideoController).Name”
- reg query “HKLM\SOFTWARE\Microsoft\Cryptography” /v MachineGuid
- powershell -NoProfile -NonInteractive -WindowStyle Hidden -Command “(Get-WmiObject Win32_ComputerSystem).Domain”
- powershell -NoProfile -NonInteractive -WindowStyle Hidden -Command “(Get-WmiObject Win32_ComputerSystem).PartOfDomain”
- cmd.exe /d /s /c “net session”
The activities performed by the PowerShell loaders are very similar to the last stage of the JS script of the MSI installer:
- Downloads Node.js if it’s not present.
- Create the necessary directories.
- Decode the EtherRAT with a custom decryption algorithm.
- Execute Node.js with conhost.exe and the decrypted EtherRAT payload.
We detected some variants of the PowerShell loader hosted on these websites; namely that the functions’ names and the decryption functions change in the analyzed PowerShell scripts.
The decryption of EtherRAT payload with the custom decryption algorithm Tracking the malicious infrastructureWhen we analyzed the different websites with the “hacking-theme” pages, we found that in the past many had hosted multiple phishing pages in some specific paths. For example:
- /zht/sharep-redirect.html
- /bl/me.php
- /t/teams
- /teams/Windows/invite.php
It seems that these domains and IPs are actually part of a much larger infrastructure that distributes malware, phishing, malicious documents, and remote software. It is possible that these infrastructures are shared by multiple threat actors who activate different URL endpoints based on the specific campaign.
Interestingly, the majority of the domains related to this malicious infrastructure in the past also returned an HTML page related to a “Bulletproof Infrastructure” service.
We found that these phishing campaigns typically start via emails with documents attached, such as PDF or Excel files. These documents ask the user to click a link to view another document. Below are two examples of the phishing documents attached to the emails:
These phishing pages typically ask the user to enter their email address, then continue the infection chain and distribute phishing or malware pages. Below are some of the phishing pages detected within the malicious infrastructure:
Misconfigurations exposed the phishing kitsWhile tracking malicious websites, we found one with an open directory containing part of the phishing kit used in the campaigns.
Open directory hosting part of phishing kits
The open directory contained several folders with code and pages related to the phishing campaigns.
Phishing kit codeAdditionally, some domains were misconfigured and allowed the download of “cl.zip”, which contained the source code for the “URL Cloaker” pages.
Part of “URL Cloaker” code Indicators of Compromise (IOCs) IPs82[.]165[.]65[.]244: malicious infrastructure
185[.]221[.]216[.]121: malicious infrastructure
43[.]163[.]233[.]166: malicious infrastructure
40[.]160[.]238[.]30: malicious infrastructure
159[.]89[.]227[.]204: malicious infrastructure
57[.]128[.]31[.]168: malicious infrastructure
Domainsivorilla[.]cloud: EtherRAT distribution
mx[.]nrlwz[.]com: EtherRAT distribution
dn[.]eyqwj[.]com: EtherRAT distribution
bi[.]mkrjcsw[.]com: EtherRAT distribution
dorqen[.]casa: EtherRAT distribution
kelvra[.]club: EtherRAT distribution
cambioefectivo[.]com: EtherRAT C2
vabelles[.]com: EtherRAT C2
tranzed[.]org: EtherRAT C2
kibrisarazi[.]com: EtherRAT C2
aravisblog[.]com: EtherRAT C2
publicspeakingtip[.]org: EtherRAT C2
Acknowledgements- SharePoint reference: https://ironscales.com/threat-intelligence/no-macro-xlsx-shared-strings-aitm-redirect-credential-harvest
Stop threats before they can do any harm.
Malwarebytes Browser Guard blocks phishing pages and malicious sites automatically. Free, one click to install. Add it to your browser →
Today's NYT Strands Hints, Answers and Help for June 16 #835
Today's NYT Connections Hints, Answers and Help for June 16, #1101
Today's Wordle Hints, Answer and Help for June 16, #1823
The FDA Just Cleared the First OTC Continuous Glucose Monitor for Children
Cisco Catalyst SD-WAN Manager Arbitrary File Write Vulnerability
A vulnerability in the web UI of Cisco Catalyst SD-WAN Manager, formerly SD-WAN vManage, could allow an authenticated, remote attacker to create a file or overwrite any file on the filesystem of an affected system.
This vulnerability exists because the affected software does not properly validate user-supplied input during a file upload process. An attacker could exploit this vulnerability by sending a crafted HTTP request to an affected API endpoint of the affected system. A successful exploit could allow the attacker to create or overwrite any file on the underlying operating system. This file could later be used to elevate to root. To exploit this vulnerability, the attacker must have valid credentials with at least a lower-privileged, single-task user account.
Cisco has released software updates that address this vulnerability. There are no workarounds that address this vulnerability.
This advisory is available at the following link:
https://sec.cloudapps.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-sdwan-arbfw-c2rZvQ
Influential advisory group tells Post Office that there is a ‘clear case’ that Capture convictions are unsafe
I built a human-approval layer for AI agents and Zapier workflows
Article URL: https://orka.ia.br/
Comments URL: https://news.ycombinator.com/item?id=48545542
Points: 1
# Comments: 0
TransAstra aims to move 100-ton asteroid to stable orbit for processing (3/26)
Article URL: https://spacenews.com/transastra-aims-to-move-100-ton-asteroid-to-stable-orbit-for-processing/
Comments URL: https://news.ycombinator.com/item?id=48545538
Points: 1
# Comments: 0
Compiling Strassen-Like Matrix Multiplication Algorithms to Fast CUDA Kernels
Article URL: https://dl.acm.org/doi/10.1145/3808267
Comments URL: https://news.ycombinator.com/item?id=48545533
Points: 1
# Comments: 0
EU AI: the fables we told ourselves (written by famous French AI researcher)
Article URL: https://pleias.ai/blog/fable-eu
Comments URL: https://news.ycombinator.com/item?id=48545529
Points: 1
# Comments: 1
Today's Frontier AI companies will never exceed the AI capability frontier again
Article URL: https://andrewtrask.substack.com/p/breaking-todays-frontier-ai-companies
Comments URL: https://news.ycombinator.com/item?id=48545514
Points: 2
# Comments: 0
Brad Feld – Does the Rule of 40 Work for Hardware?
Article URL: https://feld.com/archives/2026/06/does-the-rule-of-40-work-for-hardware/
Comments URL: https://news.ycombinator.com/item?id=48545510
Points: 1
# Comments: 0
The Case for Sunshine
Article URL: https://www.econtalk.org/the-case-for-sunshine-with-rowan-jacobsen/
Comments URL: https://news.ycombinator.com/item?id=48545507
Points: 1
# Comments: 0
