Ghost – Earlybirds Invest https://earlybirdsinvest.com Latest Crypto News Sun, 07 Sep 2025 17:07:16 +0000 en-US hourly 1 https://wordpress.org/?v=6.9.7 https://i0.wp.com/earlybirdsinvest.com/wp-content/uploads/2024/12/cropped-New-Project-2024-12-17T235703.455.png?fit=32%2C32&ssl=1 Ghost – Earlybirds Invest https://earlybirdsinvest.com 32 32 240146708 Stripe's Tempo Blockchain Is a 'Referendum on the Ghost of Libra,' Says Libra Co-Creator https://earlybirdsinvest.com/stripes-tempo-blockchain-is-a-referendum-on-the-ghost-of-libra-says-libra-co-creator/ https://earlybirdsinvest.com/stripes-tempo-blockchain-is-a-referendum-on-the-ghost-of-libra-says-libra-co-creator/#respond Sun, 07 Sep 2025 17:07:15 +0000 https://earlybirdsinvest.com/stripes-tempo-blockchain-is-a-referendum-on-the-ghost-of-libra-says-libra-co-creator/

Christian Catalini, co-creator of Facebook’s Libra project, warned on Friday that Stripe’s Tempo and Circle’s Arc could succeed commercially but at the cost of crypto’s decentralization ideal.

Launched in 2019, Libra was Meta’s bold bid to create a global digital currency backed by a basket of stable assets. The project promised to make payments as seamless as messaging, but it triggered immediate backlash from regulators concerned about financial sovereignty, systemic risk, and user privacy. By 2022, Libra — renamed Diem in a bid to reset its image — was shuttered and its assets sold off.

Catalini, who served as Libra’s chief economist, used his Sept. 5 thread on X to revisit the project’s early compromises and explain why they matter now. He said the original open design, developed with Harvard economist Scott Kominers, was reduced to a short appendix after months of regulatory negotiations.

The first major retreat, he wrote, was abandoning non-custodial wallets. Regulators insisted on a “clear perimeter,” meaning a responsible intermediary they could contact — and penalize — if problems arose.

For supervisors used to intermediated finance, a world where users truly held their own money was unmanageable. “For them, killing self-custody wasn’t a choice, it was an obvious necessity,” he recalled.

Catalini noted the irony: today, open networks are developing compliance tools native to blockchain that could have addressed these concerns more effectively than traditional frameworks. But back then, Libra was forced to strip away decentralization, a change he described as an early signal of where corporate-led projects were heading.

His broader lesson was stark: “As long as there is a single throat to choke — or a committee of them — you can’t truly rewire the system. Worse, any network with an architect is living on borrowed time.”

Arc and Tempo in the Spotlight

Catalini placed Stripe’s Tempo and Circle’s Arc in that context. Both are new blockchains designed explicitly for payments, promoted as stablecoin-first infrastructure for enterprises and fintechs.

Circle launched Arc on Aug. 12, presenting it as a Layer-1 network purpose-built for stablecoin finance. Unlike public chains that rely on volatile gas tokens, Arc uses USDC for fees, offering predictable, dollar-denominated costs.

It integrates a built-in foreign exchange engine, promises sub-second finality, and includes opt-in privacy features. Circle said Arc will support cross-border payments, onchain credit systems, tokenized capital markets and programmable, automated payments.

Just weeks later, Stripe and Paradigm unveiled Tempo on Sept. 4, describing it as a payments-first blockchain capable of handling over 100,000 transactions per second.

The network is EVM-compatible, features a dedicated payments lane with support for memos and access lists, and allows users to pay both transactions and gas in any stablecoin. Stripe said early design partners include Visa, Deutsche Bank, Revolut, Nubank, Shopify, OpenAI, Anthropic and DoorDash.

Both projects were marketed as steps toward mainstreaming stablecoin payments. But for Catalini, they raised a deeper concern.

A Revolution or a Failed Coup?

Catalini argued that corporate-led chains like Arc and Tempo risk simply rebuilding the old financial system with new players in charge. Instead of displacing card networks and banks, he warned, they could elevate fintech giants to the same position of dominance. “The throne will have new occupants, but it will be the same throne,” he wrote.

He also predicted such networks would fracture geopolitically, with Western and Eastern blocs unlikely to share a single corporate-led infrastructure. The result, he said, would be competing financial empires rather than the borderless system crypto’s early advocates envisioned.

Ultimately, Catalini described Stripe’s Tempo as a “referendum on the ghost of Libra.” If it thrives, he suggested, it may prove Libra failed because of timing, not design — and show that the dream of open, permissionless money has been overtaken by more pragmatic, centralized solutions.

]]>
https://earlybirdsinvest.com/stripes-tempo-blockchain-is-a-referendum-on-the-ghost-of-libra-says-libra-co-creator/feed/ 0 57256
The 1.x Files: GHOST in the Stack Machine https://earlybirdsinvest.com/the-1-x-files-ghost-in-the-stack-machine/ https://earlybirdsinvest.com/the-1-x-files-ghost-in-the-stack-machine/#respond Tue, 22 Jul 2025 19:55:00 +0000 https://earlybirdsinvest.com/the-1-x-files-ghost-in-the-stack-machine/

Ethereum can be simple enough to understand from a bird’s-eye view: Decentralized applications powered by the same sort of crypto-economic guarantees that underpin Bitcoin. But once you’ve zoomed in to, say, a street-level view, things get complicated rapidly.

Even assuming one has a strong grasp on proof-of-work, it’s not immediately clear how that translates to a blockchain doing more than keeping track of everyone’s unspent transaction outputs. Bitcoin uses computational work to decentralize money. Ethereum uses computational work to decentralize abstract computation. Wut? That abstraction is called the Ethereum Virtual Machine, and it’s the centerpiece of the Ethereum protocol, because “inside” the EVM is the special domain of smart contracts, and it’s the smart contracts that are ultimately to blame for all those ridiculous #defi tweets.

Upgrading the EVM is one of the major milestones of the Stateless Ethereum Tech Tree, and before we can dig in to the interesting work there, I think it’s prudent to first tackle the obvious question: “WTF is the EVM?”. In the first of this two-part series, we’ll get back to basics and try to understand the EVM from the ground up, so that later we can really engage with current discussion about things like Code Merklization and UNGAS— even stuff from the exciting world of Eth2 like Execution Environments!

WTF is the EVM?

When first year Algebra students get taught about that familiar function f(x), an analogy of “the function machine” is often used. The concept of deterministic input/output, it seems, is a lot easier for kids to think about as a literal physical machine chugging along. I like this analogy because it cuts both ways: The EVM, which in a way actually is a literal machine chugging along, can be thought about as a function which accepts as inputs some state and outputs a new one based on some arbitrary set of rules.

Setting aside the specifics of those rules for now, say that the only valid state transitions are the ones that come from valid transactions (that follow the rules). The abstract machine that will determine a new state (S’) given an old valid state (S) and a new set of valid transactions (T) is the Ethereum state transition function:
Y(S, T)= S’

The first thing that’s very important to understand about this function is that, as an abstraction, it’s sort of a mathematical placeholder: arguably not a real thing, and definitely not the EVM. The Ethereum state transition function is written all fancy in Greek in the yellow paper because thinking about the EVM as a black box function really helps with imagining the whole blockchain system (of which the EVM is just one part). The two-way connection between functions and machines is determinism: Given any valid input, both should produce one and only one output.

But the EVM, as I said before, is in some sense a literal machine chugging along out there in the world. The EVM’s physical instantiation can’t be described in the same way that one might point to a cloud or an ocean wave, but it does exist inside thousands of connected computers running Ethereum clients. And at any given time, there is one and only one canonical Ethereum state, and that’s what we care about. All of the other components inside an Ethereum client are there just to keep consensus over which state is the right one.

The term ‘canonical’ is used because ‘valid’ isn’t quite appropriate; a state transition computed correctly is ‘valid’, but it still might not end up “on chain” as part of the canon. Deciding which states are canonical and which states are not is the sole responsibility of miners doing proof-of-work on the chain. Anyone using Ethereum mainnet has, either literally or just figuratively, “bought in” to one particular state history, namely the one with the most computational work put behind it, as determined by Ethereum’s Greedy Heaviest Observed Subtree (GHOST) protocol. Along with each new block on the network comes a new set of transactions, a state transition, and a freshly determined output state ready to be passed forward into the next canonical block, determined by miners. And so on and so forth; that is how the Ethereum blockchain do.

We’ve so far ‘black-boxed’ the EVM as the state transition function (machine) that takes previous valid blocks and a handful of fresh transactions (as input), does some computation on it, and spits out a new valid state (as output). The other pieces of the Ethereum protocol (such as miners choosing canonical blocks) are necessary context, but now it’s time for some inside-the-box thinking. What about those specific rules we set aside earlier? How does the EVM compute a new state? How can a single machine compute everything from simple balance transfers to elliptic curve algebra?

The Steampunk Stack Machine

The best I can do to introduce the notion of a stack machine is this cartoon image of Babbage’s Analytical Engine (credit: Sydney Padua), which was designed in 1837 but never built:

The Analytical Engine

With most people carrying around fantastically powerful electric computers in their pockets these days, it’s easy to forget that computers don’t necessarily need to be electronic, nor all that powerful. Babbage’s Analytical Engine is a very (hypothetically) real example of a Turing-complete (!) computer that if it had been built, would’ve run on steam and punch cards. The EVM is in important ways much closer kin to the Analytical Engine of two centuries ago than to the CPU inside the device you’re using to read this article.

The EVM is a stack machine, and although in reality it’s a virtualized machine running inside many Ethereum clients simultaneously, I find helpful to imagine the EVM as a real, more advanced (but of course still steam-powered) version of the Analytical Engine. This metaphor might seem a little far-fetched, but I implore you to stick with it for a little bit because it’s quite illustrative when we get to the subject of gas and a shared execution environment.

The steampunk EVM would be a mechanical computer that functions by manipulating physical punch cards. Each card would have 256 places for hole punches, and therefore each card could represent any number between 0 and 2^256. To perform a calculation, one could imagine this computer, through some fancy system of compressed air, putting the cards representing numbers and operations into a stack, and following a simple principle of “first in, last out”, one-by-one it would PUSH new cards to the top of the stack, or POP cards from the top of the stack to read them for next steps. These might be new numbers to calculate with, or arithmetic operations like ADD or MULTIPLY, but they could also be special instructions such as to STORE a card or set of cards for later. Because the cards are simple binary, the operations also have to be ‘encoded’ into a binary number; so we call them operational codes, or just opcodes for short.

If the stack machine were calculating 4 * 5 + 12, it would go about it like so:

_POP value 4 from the stack, keep it in memory. POP the value 5 off the stack, keep it in memory. POP the value _ from the stack; send everything in memory to the multiplication module; PUSH the returned result (20) the stack. POP the value 20 from the stack; keep it in memory. POP the value 12 from the stack; keep it in memory. POP the value + from the stack; send everything in memory to the addition module; PUSH the returned result (32) the stack. (Source: The EVM Runtime Environment)

We can imagine opcodes like ADD or MULTIPLY as special modules built into the machine, near enough to the stack so as to be accessible quickly. When the computer must multiply 4 and 5, it would send both cards to the “multiplication engine”, which might click and hiss before spitting back out the number 20 punched into a new card to PUSH back to the top of the stack.

The “real” EVM has many different opcodes for doing various things. A certain minimum-viable set of these opcodes are needed to do generalized computation, and the EVM has all of them (along with some special ones for crypto, e.g. the SHA-3 hash function). For better or worse, the idea that the EVM is (or is not) Turing-complete has long been under discussion— it’s this stack-based architecture which has the property of Turing-completeness: The EVM’s rules of execution can in principle, given a long enough time and big enough memory, run any conceivable computer program so long as it’s compiled down to the correct 256-bit words and executed in the stack.

Compiling a program in our alternate universe would entail the creation of a booklet of punch cards containing the appropriate data and opcodes. This is literally (er, figurative-literally, whatever) the process going on under the hood when you write a smart contract in a high-level language like Solidity and compile it to bytecode. You can get a pretty good sense of how a programming language gets converted into machine code by reading this humerously annotated output of a Solidity compiler.

So far, the state has not been mentioned, but recall that we set out to understand the rules by which a state transition can be calculated. Now we can summarize it a bit more clearly: The EVM is the physical instantiation (read: instance) of the state transition function. A valid state in Ethereum is one that was calculated by the EVM, and the canonical state is the valid state with the most computational work done on it (as determined by the GHOST protocol).

(Ideal) Gas

We might imagine Babbage completing the fictitious Ethereum Stack Engine and thereafter announcing that all mathematical tabulations and solutions for impossibly difficult problems were now within reach. He’d invite mathematicians and engineers to package up their problems as ‘transactions’ and deliver them to be compiled by Lady Lovelace into punch cards to run through the world computer. (Incidentally, Lovelace was the first person to ever write a computer program, making her the original compiler). Since the machine is meant to be an implementation of the EVM and part of a larger Ethereum steampunk universe, we’d have to imagine the state as being some sort of massive Merkleized library catalog which would be updated once per day according to a pre-selected set and order of transactions chosen as ‘canonical’, and committed to archive.

The trouble with this vision is that a real, mechanical EVM would be extraordinarily expensive to run. The turning of gears, winding of springs, and pumping of various pneumatic chambers collating punch cards would use tonnes of coal every day. Who would bear the expense of running the engine constantly? Say that five mathematicians wanted to run their programs on a particular day, but there was only time enough for three. How would these and related problems of resource management be solved? The solution that Ethereum employs seems, paradoxically, a lot more intuitive when we think about a large and inefficient mechanical computer: Charge money for computation and memory storage!

Imagining the the operations of the stack machine to be powered by compressed air, one could measure the exact amount of gas needed to perform an ADD operation, and compare it to the (much larger) amount of gas needed for SHA3. The table of gas costs for each opcode could be made publicly available, and anyone submitting a program required to provide at least enough money for their computation and storage space according to the cost of gas (which might be related to the price of coal or the demand for computation). The final stroke of genius is to make the machine state itself a ledger for accounts and balances, allowing a user to include payment for their computation inside the transaction itself.

As you might know, gas in an Ethereum transaction accounts for computation and memory costs of the EVM. Gas costs for a transaction must be paid for in ETH, and cannot be recovered once the execution takes place, whether the operation succeeds or not. If a contract call runs out of gas at any point during an operation, it throws an out-of-gas error.

The gas mechanic cleverly does two jobs: Gas efficiently allocates the common-pool computational resources of the EVM according to demand, and provides reasonable protection against infinitely looping programs (a problem that arises from Turing-completeness).

In the next installment of “The 1.X Files”

I hope this fanciful mechanical explanation of a stack machine has been helpful. If you enjoyed thinking about the steampunk EVM as much as I have, and you like historically plausible alt-reality comic books, do investigate “The Thrilling Adventures of Babbage and Lovelace” linked earlier; you won’t be disappointed.

Getting a handle on something so abstract isn’t easy, but there are topics in the Stateless Tech Tree that will be much easier to approach with a relatively complete (even if it’s a bit cartoonish) mental image of an EVM implementation.

One such topic is the introduction of Code Merkleization to the EVM, which would greatly reduce the size of witnesses by breaking up compiled contract code into smaller chunks. Next time we’ll be able to dig in to these immediately.

As always, if you have any questions, comments, requests for new topics or steampunk Ethereum fanfictions, please @gichiba or @JHancock on twitter.

]]>
https://earlybirdsinvest.com/the-1-x-files-ghost-in-the-stack-machine/feed/ 0 49095
Cybercriminals are using AI to enroll ghost students and steal financial aid https://earlybirdsinvest.com/cybercriminals-are-using-ai-to-enroll-ghost-students-and-steal-financial-aid/ https://earlybirdsinvest.com/cybercriminals-are-using-ai-to-enroll-ghost-students-and-steal-financial-aid/#respond Tue, 10 Jun 2025 14:47:37 +0000 https://earlybirdsinvest.com/cybercriminals-are-using-ai-to-enroll-ghost-students-and-steal-financial-aid/

Facepalm: As artificial intelligence becomes more sophisticated, a new breed of scam is quietly siphoning millions from the US higher education system. Cybercriminals are using AI-driven bots to impersonate students, enroll in online college courses, and divert financial aid, leaving real individuals with stolen identities and fraudulent debt.

One San Francisco resident, Heather Brady, learned the hard way how sophisticated education scams have become. A police officer showed up at her home with an unexpected question about her alleged college enrollment in Arizona. Brady had never applied ,but someone else had used her personal information to secure government aid.

Later, she discovered a student loan for more than $9,000 had been issued in her name for classes she never attended. “I just can’t imagine how many people this is happening to that have no idea,” Brady told The Associated Press.

The problem is escalating rapidly as online classes grow more widespread and AI tools make it easier for scammers to automate the entire process. These so-called “ghost students” can complete applications, enroll in classes, participate in coursework, and even submit assignments without a human ever being involved. In some cases, instructors have found that almost none of their students are genuine, with legitimate learners locked out of required classes because bots filled all the available slots.

The financial toll is substantial. In 2024, California’s community colleges reported 1.2 million suspicious applications, leading to over 220,000 likely fraudulent enrollments, according to data obtained by the Associated Press. The system lost at least $11.1 million in unrecoverable financial aid last year alone. Community colleges are particularly vulnerable, as their lower tuition means a greater portion of grant and loan funds goes directly to students for living expenses.

Wayne Chaw, who once took classes at De Anza Community College, was notified about a course he never signed up for. Thieves had used his Social Security number to claim nearly $1,400 in aid, and someone – likely an AI bot – was submitting homework under his name. “This person is typing as me, saying my first and last name. … It’s very freaky when I saw that,” Chaw said.

For victims, unraveling the damage is a long and frustrating ordeal. Brittnee Nelson, a small business owner in Louisiana, discovered that loans had been taken out in her name for schools she never attended. Despite diligently monitoring her credit and safeguarding her identity, she spent two years working to remove the fraudulent debt. “It’s like if someone came into your house and robbed you,” Nelson said.

Colleges say they often lack the power to prevent these scams. Delgado Community College in New Orleans, for example, emphasized that the ultimate authority for loan approval lies with federal agencies. “This is an unfortunate and serious matter, but it is not the direct or indirect result of Delgado’s internal processes,” said spokesperson Barbara Waiters.

In response to the surge in fraud, the US Department of Education recently enacted a temporary measure requiring first-time federal aid applicants to verify their identity with a government-issued ID. The department acknowledged the severity of the threat, stating, “The rate of fraud through stolen identities has reached a level that imperils the federal student aid program.” More robust screening is expected to follow.

While the government scrambles to tighten security, its capacity to investigate and resolve fraud is shrinking. Recent layoffs and staff attrition at key federal offices have left fewer personnel available to assist victims and pursue scammers. Brady, still facing the prospect of a $9,000 debt she never incurred, fears that help may never come. “The agency is going to be so broken down and disintegrated that I won’t be able to do anything, and I’m just going to be stuck” she said.

Recent prosecutions illustrate the scale of the problem. They include a Texas man accused of orchestrating a $1.5 million aid fraud, another individual in Texas admitting to using inmates’ names to claim more than $650,000, and a New York resident pleading guilty to a decade-long, $450,000 scam.

As AI-powered schemes continue to evolve, students and taxpayers remain at risk. Nelson believes stronger identity checks are essential. “If they can make these hurdles a little bit harder and have these verifications more provable, I think that’s really, really, really going to protect people in the long run,” she said.

]]>
https://earlybirdsinvest.com/cybercriminals-are-using-ai-to-enroll-ghost-students-and-steal-financial-aid/feed/ 0 41233
Deadfellaz To Debut Ghost Machine NFT Collection on June 5 https://earlybirdsinvest.com/deadfellaz-to-debut-ghost-machine-nft-collection-on-june-5/ https://earlybirdsinvest.com/deadfellaz-to-debut-ghost-machine-nft-collection-on-june-5/#respond Wed, 28 May 2025 17:06:19 +0000 https://earlybirdsinvest.com/deadfellaz-to-debut-ghost-machine-nft-collection-on-june-5/

DFZ Labs, the company behind the Deadfellaz NFT collection, has announced a new collection – Ghost Machine – will debut on ApeChain on June 5.

Ghost Machine is set to be “a hyper-pop art PFP collection”, with 50,000 total NFTs available to mint at a price of 1 USD each. Holders of Deadfellaz and Deadfrenz NFTs will be able to mint a Ghost Machine NFT for free, with further details on an allowlist to follow soon.

This is the latest in a number of in-development expansions to the Deadfellaz IP, including the Death Touch TCG, the Coldlink tool, and their Roblox-based Wallhugger game.

Key Insights

  • Ghost Machine, a new NFT collection from DFZ Labs, will mint on June 5
  • This 50,000-piece “hyper-pop art PFP collection” will mint on ApeChain, priced at 1 USD each
  • Deadfellaz and Deadfrenz holders can mint a Ghost Machine NFT for free
  • Further information on allowlist access will be released soon
  • This is the latest expansion to Deadfellaz, alongside their Death Touch TCG, Coldlink tool, and Wallhugger game
Ghost Machine NFT - June 5
Source: @GM_DFZ on X

What is Ghost Machine?

Ghost Machine is an upcoming 50,000-piece “hyper-pop art PFP collection”, minting on ApeChain on June 5.

The collection has been rumoured to be in-development for several weeks, with DFZ Labs founders Psych and Betty discussing several aspects of the collection on their respective social media profiles – including which blockchain the collection should be minted on.

The utility of the Ghost Machine NFT collection has yet to be discussed, though with multiple DFZ Labs products currently in development, it wouldn’t be totally unexpected for there to be some crossover between their current and existing products.

In an announcement to Deadfellaz holders on Discord, Psych explained that – in his opinion – Ghost Machine will be “the best PFP collection on ApeChain”, with members of the Deadfellaz community excited for its arrival.

Ghost Machine NFT - ApeChain
Source: Psych on the DFZ Labs Discord

How can I get a Ghost Machine NFT?

Ghost Machine will debut on June 5 on Blever – a launchpad for NFT projects on ApeChain and Abstract.

According to Psych, these NFTs will be priced at 1 USD each, with an allowlist set to enable early access for holders of particular NFT projects and assets. Further details on this allowlist are set to be released soon.

The DFZ Labs team have confirmed that holders of Deadfellaz – their main 10,000-piece Ethereum NFT collection – and Deadfrenz – their 13,000-piece Ethereum-based companion collection – will be able to mint a Ghost Machine NFT for free, with the claim likely to take place prior to a public release.

Details on this free claim are set to be released later this week.

]]>
https://earlybirdsinvest.com/deadfellaz-to-debut-ghost-machine-nft-collection-on-june-5/feed/ 0 38798
Ghost ransomware breached orgs in 70 countries https://earlybirdsinvest.com/ghost-ransomware-breached-orgs-in-70-countries/ https://earlybirdsinvest.com/ghost-ransomware-breached-orgs-in-70-countries/#respond Wed, 19 Feb 2025 22:03:28 +0000 https://earlybirdsinvest.com/ghost-ransomware-breached-orgs-in-70-countries/

Ghost

CISA and the FBI said attackers deploying Ghost ransomware have breached victims from multiple industry sectors across over 70 countries, including critical infrastructure organizations.

Other industries impacted include healthcare, government, education, technology, manufacturing, and numerous small and medium-sized businesses.

“Beginning early 2021, Ghost actors began attacking victims whose internet facing services ran outdated versions of software and firmware,” CISA, the FBI, and the Multi-State Information Sharing and Analysis Center (MS-ISAC) said in a joint advisory released on Wednesday.

“This indiscriminate targeting of networks containing vulnerabilities has led to the compromise of organizations across more than 70 countries, including organizations in China.”

Ghost ransomware operators frequently rotate their malware executables, change the file extensions of encrypted files, alter the contents of their ransom notes, and utilize multiple email addresses for ransom communications, which has often led to fluctuating attribution of the group over time.

Names linked to this group include Ghost, Cring, Crypt3r, Phantom, Strike, Hello, Wickrme, HsHarada, and Rapture, with ransomware samples used in their attacks including Cring.exe, Ghost.exe, ElysiumO.exe, and Locker.exe.

This financially motivated ransomware group leverages publicly accessible code to exploit security flaws in vulnerable servers. They target vulnerabilities left unpatched in Fortinet (CVE-2018-13379), ColdFusion (CVE-2010-2861, CVE-2009-3960), and Exchange (CVE-2021-34473, CVE-2021-34523, CVE-2021-31207).

To defend against Ghost ransomware attacks, network defenders are advised to take the following measures:

  1. Make regular and off-site system backups that can’t be encrypted by ransomware,
  2. Patch operating system, software, and firmware vulnerabilities as soon as possible,
  3. Focus on security flaws targeted by Ghost ransomware (i.e., CVE-2018-13379, CVE-2010-2861, CVE-2009-3960, CVE-2021-34473, CVE-2021-34523, CVE-2021-31207),
  4. Segment networks to limit lateral movement from infected devices,
  5. Enforce phishing-resistant multi-factor authentication (MFA) for all privileged accounts and email services accounts.

Right after Amigo_A and Swisscom’s CSIRT team first spotted Ghost ransomware in early 2021, their operators were dropping custom Mimikatz samples, followed by CobaltStrike beacons, and deploying ransomware payloads using the legitimate Windows CertUtil certificate manager to bypass security software.

In addition to being exploited for initial access in Ghost ransomware attacks, state-backed hacking groups that scanned for vulnerable Fortinet SSL VPN appliances also targeted the CVE-2018-13379 vulnerability.

Attackers also abused the same security vulnerability to breach Internet-exposed U.S. election support systems reachable over the Internet.

Fortinet warned customers to patch their SSL VPN appliances against CVE-2018-13379 multiple times in August 2019, July 2020, November 2020, and again in April 2021.

The joint advisory issued by CISA, the FBI, and MS-ISAC today also includes indicators of compromise (IOCs), tactics, techniques, and procedures (TTPs), and detection methods linked to previous Ghost ransomware activity identified during FBI investigations as recently as January 2025.

]]>
https://earlybirdsinvest.com/ghost-ransomware-breached-orgs-in-70-countries/feed/ 0 20575