Connect with us

Crypto World

how a build flag drained 116M in bitcoin

Published

on

how a build flag drained 116M in bitcoin

A single line of firmware shipped in March 2021 told every Coldcard hardware wallet to skip its dedicated randomness chip. For five years nobody noticed. Then an attacker brute-forced the weak seeds in 41 minutes, draining 1,816 BTC from more than 5,200 addresses across four attack waves. The incident is the largest hardware wallet exploit in crypto history, and it is forcing the entire bitcoin self-custody model to answer a question it has avoided since inception: who audits the code that generates your keys?

Summary

  • A build configuration error in Coldcard firmware version 4.0.1, shipped in March 2021, routed seed generation to a deterministic software pseudorandom number generator instead of the device’s STM32 hardware random number generator, reducing effective entropy from 128 bits to approximately 40 bits on Mk3 devices and 72 bits on Mk4, Mk5, and Q models.
  • An attacker began sweeping wallets on July 30, 2026, draining 1,082 BTC from 1,196 addresses in 41 minutes during the first wave, with Galaxy Research tracking total confirmed losses of 1,596 BTC across three waves and estimating the figure could reach 2,055 BTC (approximately $130 million) if a suspected fourth wave is verified.
  • Coinkite released emergency firmware on July 31 but confirmed that updating does not repair seeds already generated on vulnerable firmware, meaning every affected user must generate a new seed and manually migrate funds to survive.
  • The net transfer of bitcoin from self-custody wallets to exchange addresses has been positive every day since July 31, reversing a two-year outflow trend that began after the FTX collapse, with OKX reporting record exchange inflows in the days following the exploit.
  • TRM Labs classified the incident as the third-largest crypto hack of 2026, bringing the year’s total past $1.2 billion across 276 incidents, while roughly 90% of stolen bitcoin remains unmoved at attacker-controlled addresses.

Nobody was phished. No device was stolen. No seed phrase was written on a sticky note. The Coldcard hardware wallet, the device that bitcoin maximalists recommended above all others for cold storage, generated weak private keys for five years because a single build flag told the firmware to skip its dedicated randomness chip. An attacker figured out how to guess the resulting seeds, and on July 30, 2026, began emptying wallets at a pace that left no time to react.

“Perhaps the hardest part about this is that I did everything right,” Canadian entrepreneur Jonathan Goodman wrote on X after losing 18.25 BTC, worth approximately C$1.6 million, from a Coldcard stored in a safety deposit box. His post has been viewed more than 7.6 million times. The sentiment captures the core of the crisis: the people who lost money were not careless. They were the most security-conscious bitcoin holders in the ecosystem, and they followed every recommended practice except one they could not have known about. The firmware that generated their keys was broken from the day it shipped.

Advertisement

The fallout extends far beyond the immediate losses. Bitcoin is flowing back to exchanges for the first time since FTX collapsed. Hardware wallet manufacturers face calls for independent audits of their seed generation code. ARK Invest’s director of digital asset research called the self-custodial hardware space “a disaster.” And Coinkite’s CEO suggested that artificial intelligence found the bug, raising the question of whether every open-source firmware repository is now an attack surface that AI can mine faster than human reviewers can defend.

The build flag: how one line of code broke everything

The technical failure is simple enough to explain in a single paragraph, which makes it more damaging, not less. Coldcard’s firmware defines a macro called MICROPY_HW_ENABLE_RNG and sets it to zero because Coinkite supplies its own hardware random number generator wrapper. A supporting cryptographic library called libngu checked whether the macro existed. It did not check whether the macro was enabled. Because the macro existed but was set to zero, libngu concluded that hardware randomness was unavailable and fell through to MicroPython’s Yasmarang software fallback. That fallback was initialized from the chip’s unique serial number and timer registers and collected no fresh entropy after initialization.

The consequence was a catastrophic reduction in key strength. A 12-word BIP-39 seed phrase is designed to encode 128 bits of entropy, a number so large that brute-forcing it would require more energy than the sun will produce in its lifetime. The Yasmarang fallback, seeded from a chip serial number and timer state, produced approximately 40 bits of effective entropy on the Mk3 and roughly 72 bits on the Mk4, Mk5, and Q. Block’s security research team, which published a detailed technical analysis, set conditional ceilings below 2^40.7 and 2^73.3 and warned that the latter figure is not equivalent to 73-bit cryptographic security.

Advertisement

Forty bits of entropy means approximately one trillion possible seeds. That is a large number by human intuition but a trivial number by computational standards. A modern GPU cluster can enumerate one trillion candidates in hours. The attacker did not need physical access to any device. The attacker did not need to intercept any communication. The attacker needed only to generate candidate seeds, derive their corresponding bitcoin addresses, and compare those addresses against the public blockchain. Every match was a wallet that could be emptied.

The flaw shipped in firmware version 4.0.1 in March 2021. It persisted through every subsequent firmware release until the emergency patch on July 31, 2026. Every Coldcard seed generated during that five-year window without the manual dice-roll option is potentially compromised. Coinkite estimates that the dice-roll option, where users physically roll dice at least 50 times and type in the results, bypasses the broken code entirely. The company also says a strong BIP-39 passphrase creates a separate wallet the seed words alone cannot reach. But as Casa CEO Nick Neuman pointed out: “You just cannot ask people to roll dice to be secure with your self-custody. It is a non-starter for 99% of people.”

The four waves: anatomy of a $116 million sweep

The attack unfolded in distinct waves, each larger than the last, suggesting either a single operator refining their approach or multiple attackers working from the same vulnerability.

Wave one hit on July 30 at approximately 2:14 a.m. UTC. The attacker swept 594 BTC from roughly 500 addresses in 25 minutes, broadcasting transactions at a uniform 30 sat/vB fee rate with no change outputs. Galaxy Research noted that no other bitcoin transactions in the previous 30 days carried the same fee-rate-plus-no-change signature, making the operator identifiable even though they remained anonymous.

Wave two followed within 48 hours, lifting the cumulative total to 1,082 BTC from 1,196 addresses. The transaction construction matched Wave one closely enough for Galaxy to assess with high confidence that the same operator was responsible.

Advertisement

Wave three brought the confirmed total to 1,367 BTC from 4,585 addresses, worth approximately $89 million. Galaxy cautioned that Wave three should not be assumed to involve the same attacker, as the transaction patterns diverged from the first two waves. TRM Labs independently identified differences in transaction construction across waves that hint at multiple operators.

A suspected fourth wave ran throughout August 4, sweeping roughly 449 BTC from 709 addresses on Galaxy’s revised count. If confirmed, cumulative losses reach approximately 2,055 BTC, worth close to $130 million. Galaxy has reported roughly 600 suspected attacker-controlled addresses to federal investigators, compliance firms, and cybersecurity investigators.

The laundering has been minimal. TRM Labs found that most victim funds are pooling at a small number of attacker-controlled addresses with limited onward movement. As of August 4, the only confirmed laundering consisted of a single 64.9 BTC deposit to Wasabi Wallet’s coinjoin service and 200 ETH deposited to Tornado Cash. One opportunist posted an OP_RETURN message on the bitcoin blockchain offering to launder the stolen funds for a 7% fee. The relative inaction suggests the attackers have not yet determined how to move a sum large enough to attract attention wherever it lands.

The section a competitor could not write: what 40 bits of entropy actually means

Most coverage of the Coldcard hack describes the entropy reduction as a technical detail. It is the entire story, and the arithmetic reveals why the attack was inevitable rather than merely possible.

Advertisement

A 128-bit seed has 2^128 possible values, a number with 39 digits. Brute-forcing that space is not a matter of computing power or patience. It is physically impossible with any technology that obeys the laws of thermodynamics. This is why hardware wallets work at all: the security of a properly generated seed does not depend on the device remaining secret, the firmware remaining uncompromised, or the manufacturer remaining trustworthy. It depends on mathematics.

A 40-bit seed has 2^40 possible values: 1,099,511,627,776. One trillion. A single NVIDIA H100 GPU can compute roughly 10 billion SHA-256 hashes per second. Deriving a bitcoin address from a candidate seed requires several cryptographic operations beyond a single hash, but the order of magnitude holds. One trillion candidates can be exhausted in minutes to hours on a GPU cluster that costs a few thousand dollars to rent.

The Mk4, Mk5, and Q devices had roughly 72 bits of effective entropy. That is better than 40 bits but still catastrophically below 128 bits. Block’s analysis set the search space at approximately four billion possibilities under certain constraints, a number that runs on ordinary hardware. The distinction matters: Mk3 owners face near-certain compromise if their addresses are identified, while later-model owners face a probabilistic threat that depends on how much the attacker knows about their device’s unique ID, boot timing, and prior random number generator calls.

Advertisement

The critical insight is that the attacker does not need to know which addresses belong to Coldcard users. Every bitcoin address is public. The attacker generates candidate seeds, derives addresses, and checks them against the entire blockchain. Any match is a confirmed Coldcard wallet with a weak seed. The attack scales linearly with computing power and requires no intelligence about individual victims. Galaxy Research warned that “every vulnerable device will eventually be emptied” because the attacker can work through the entire search space at leisure.

This is fundamentally different from a phishing attack, an exchange hack, or a supply chain compromise. Those attacks require targeting specific victims. The Coldcard exploit targets mathematics. Every wallet generated on affected firmware is vulnerable regardless of how carefully the owner stored the device, protected the seed phrase, or followed security best practices. The only defense was an action the manufacturer never told users they needed to take: rolling physical dice.

The self-custody reversal: bitcoin flows back to exchanges

The Coldcard exploit is producing a behavioral shift that would have been unthinkable 18 months ago. Bitcoin is moving from self-custody wallets back to centralized exchanges, reversing a trend that began when FTX collapsed in November 2022 and accelerated through 2023 and 2024 as hardware wallet sales surged.

The net transfer of bitcoin from self-custody wallets to exchange addresses has been positive every day since July 31, according to on-chain flow data. OKX reported record exchange inflows in the days following the exploit. The exchange’s chief compliance officer Jonathan Brockmeier said customer behavior changed “noticeably” as users moved assets away from self-custody.

The flow reversal is not limited to panicking retail holders. Institutional allocators who previously cited self-custody as a risk-management advantage are reassessing. Bitcoin ETF inflows reached $211.5 million on August 5, led by BlackRock’s IBIT and Fidelity’s FBTC, suggesting that at least some capital is rotating from direct bitcoin holdings into regulated wrappers that eliminate seed-management risk entirely.

Advertisement

Bloomberg senior ETF analyst Eric Balchunas argued that spot bitcoin ETFs remove the seed-management problem for investors who want price exposure without operational risk. “An ETF fixes this,” he wrote. On-chain analyst Willy Woo pushed back, arguing that self-custody remains the only path to genuinely sovereign bitcoin ownership and that ETF wrappers introduce counterparty risk that the bitcoin network was designed to eliminate.

The data tells a more specific story than either side acknowledges. The addresses moving bitcoin back to exchanges skew toward single-signature wallets holding between 0.5 and 10 BTC, the range most likely to represent individual holders who used a single Coldcard as their primary storage. Multisignature wallets and addresses associated with institutional custodians have shown no comparable movement. The panic is concentrated among the exact user profile the Coldcard was designed for: technically literate individuals who chose self-custody over exchanges and relied on a single hardware device as their sole security layer. The irony is precise. The users who trusted the hardware most are the ones most exposed, while users who distributed trust across multiple devices and key generation methods are unaffected.

The tension is real but the framing is incomplete. The Coldcard hack did not expose a flaw in self-custody as a concept. It exposed a flaw in one manufacturer’s implementation of seed generation. Vincent Bouzon, a cybersecurity expert at Ledger, drew the distinction explicitly: “Every wallet ultimately depends on a root secret generated from high-quality entropy. That generation must be anchored in secure hardware, with an architecture that cannot silently downgrade to an untrusted software-based source.” He called the alternatives worse, describing software wallets on non-secure hardware as riskier and centralized exchange custody as “not ownership, it is an IOU.”

The AI question: did a model find this bug?

Coinkite’s response to the exploit included a claim that has divided the security community. CEO Rodolfo Novak, known as NVK, suggested that the attacker used AI to discover the firmware flaw, and that Coinkite’s own AI-assisted code review of the same repository weeks earlier had found nothing.

Advertisement

“To every other developer: we believe this is a sober reality of the new AI paradigm,” Novak wrote. “AI-assisted code review can now find latent bugs at a speed that is outpacing even the industry’s most seasoned experts.” He added: “If your firmware is open-source or has ever been public, assume it is already being read by attackers and defenders alike.”

Security researchers have pushed back on this framing. A build flag that disables a hardware random number generator is a human engineering error, they argue, and conventional code review should have caught it years before any language model read the repository. Andrew Lazutkin, chief technology officer at Tangem, drew a different conclusion: “This incident is a good example of why open-source firmware should not automatically be equated with better security.”

The AI attribution matters less than the structural question it raises. Whether the attacker used AI, conventional static analysis, or manual review, the result is the same: a bug that sat in plain sight for five years in an open-source repository was found and weaponized. If AI tools can systematically scan firmware repositories for entropy flaws, randomness downgrade paths, and build configuration errors, then every hardware wallet manufacturer with public code faces an expanded attack surface. The question is not whether AI was involved in this specific attack. The question is whether AI makes this class of attack reproducible at scale.

The timeline supports the concern regardless of the mechanism. Coldcard’s firmware has been open source since its inception. The MICROPY_HW_ENABLE_RNG macro and its zero assignment were visible in a public GitHub repository for five years. Multiple security researchers, firmware auditors, and the broader Bitcoin development community had access to the code throughout that period. None of them caught the flaw. The Coinspect research group published its Ill Bloom findings on weak PRNG flaws in older software wallets in early July 2026, a separate but thematically identical vulnerability that drained more than $5 million from addresses across Bitcoin, Ethereum, Tron, Rootstock, and Polygon. The clustering of entropy-related exploits within a single month suggests either coordinated research or a shared analytical approach that is surfacing this class of bug faster than it has been found historically.

Advertisement

The opposing case at full strength

The narrative writes itself: self-custody is broken, hardware wallets cannot be trusted, move your bitcoin to an exchange or an ETF. The opposing case requires examining what the Coldcard hack actually proved and what it did not.

First, this was not a failure of self-custody. It was a failure of one company’s firmware engineering. The bitcoin protocol worked exactly as designed. The cryptography worked exactly as designed. The vulnerability existed in Coinkite’s build configuration, not in the security model of hardware wallets as a category. Ledger, Trezor, and Block have confirmed their devices are unaffected. The lesson is that seed generation must be verified independently, not that seed generation is inherently unreliable.

Advertisement

Second, the exchange alternative carries its own catastrophic risks. FTX lost $8 billion in customer funds. Mt. Gox lost 850,000 BTC. Celsius, Voyager, and BlockFi collectively lost billions more. The Coldcard exploit drained $116 million across 5,200 addresses over five days. FTX drained $8 billion from millions of users in a single night. The scale comparison favors self-custody even in its worst failure mode.

Third, multisignature configurations would have prevented every theft in this exploit. A multisig wallet requires multiple independent keys to authorize a transaction. If even one key was generated on a non-Coldcard device, the attacker could not have completed the sweep. Casa, Unchained, and other multisig providers have reported zero customer losses from the Coldcard exploit because their architectures distribute key generation across independently designed devices from different manufacturers. A 2-of-3 multisig wallet using one Coldcard, one Ledger, and one Trezor would have been immune to this attack even if the Coldcard key was fully compromised, because the attacker would still need to independently compromise one of the other two keys. The Coldcard hack is an argument for multisig, not an argument against self-custody.

Fourth, the bitcoin price reaction undermines the catastrophic framing. Bitcoin traded near $64,300 through all four attack waves and has not broken below $63,800 since the exploit became public. The market is pricing the Coldcard hack as a company-specific event, not a systemic threat to bitcoin’s security model. If the market believed self-custody was fundamentally broken, the price response would have been severe. It was not.

What would invalidate the self-custody thesis: if multiple hardware wallet manufacturers were found to have the same class of entropy flaw simultaneously, suggesting a systemic rather than idiosyncratic failure. If the attack surface expands to include devices with hardware random number generators that pass all existing tests but contain subtle biases. Or if the operational burden of key management proves permanently beyond the capacity of individual users, making professional custody the only viable option for most bitcoin holders regardless of the theoretical security advantages of self-custody.

Advertisement

What to watch

  • Galaxy Research’s final loss tally after Wave four confirmation. The gap between 1,596 BTC (confirmed) and 2,055 BTC (estimated) represents roughly $30 million in unverified losses. If the fourth wave is confirmed and additional waves follow, the total could exceed $150 million and push the incident past Bybit’s 2025 blind-signing exploit in impact.
  • On-chain movement of attacker-controlled bitcoin. Roughly 90% of stolen funds remain unmoved. When the attacker begins laundering, the chosen method (mixing, cross-chain bridges, OTC desks) will indicate sophistication level and potentially enable attribution. TRM Labs is monitoring in real time.
  • Exchange inflow trends over the next 30 days. The post-Coldcard flow reversal could be a temporary panic response or the beginning of a structural shift. If net flows back to exchanges persist beyond August, it suggests a durable change in how bitcoin holders weigh self-custody risk against counterparty risk.
  • Independent audit adoption by hardware wallet manufacturers. Kraken CSO Nick Percoco called for independent testing of seed generation in production firmware. If Ledger, Trezor, and other manufacturers adopt third-party entropy audits as standard practice, it validates the systemic concern. If they do not, the industry is betting the same class of bug will not appear elsewhere.
  • Regulatory response to the self-custody failure. The SEC and CFTC have not commented on the Coldcard exploit. If regulators use the incident to argue that self-custody is unsuitable for retail investors, it could accelerate the push toward mandatory custodial frameworks for digital assets.

Frequently asked questions

What is the Coldcard hardware wallet hack?

The Coldcard hack refers to a series of bitcoin thefts beginning July 30, 2026, in which an attacker exploited a firmware flaw in Coinkite’s Coldcard hardware wallet to brute-force weakly generated seed phrases and drain funds from more than 5,200 addresses without physical access to any device.

How much bitcoin was stolen in the Coldcard exploit?

Galaxy Research has confirmed 1,596 BTC stolen across three attack waves, with a suspected fourth wave that could bring the total to approximately 2,055 BTC, worth close to $130 million. TRM Labs estimated confirmed losses at 1,816 BTC, approximately $116 million.

What caused the Coldcard vulnerability?

A build configuration error in firmware version 4.0.1, shipped March 2021, set a macro called MICROPY_HW_ENABLE_RNG to zero. A supporting library checked whether the macro existed rather than whether it was enabled, causing seed generation to fall back on a weak software random number generator instead of the device’s hardware entropy source.

Does updating Coldcard firmware fix the problem?

No. Updating firmware prevents new wallets from being generated with weak randomness, but it does not repair a seed that was already generated on vulnerable firmware. Affected users must generate a new seed on patched firmware, verify the new wallet, and manually migrate their funds.

Advertisement

Which Coldcard models are affected?

All current models are affected to varying degrees. Mk3 devices on firmware 4.0.1 through 4.1.9 had entropy reduced to approximately 40 bits. Mk4 and Mk5 devices on firmware below 5.6.0 and Q devices on firmware below 1.5.0Q had entropy reduced to approximately 72 bits. Wallets created using the dice-roll option are considered safe.

Are other hardware wallets affected?

No. Block, Trezor, and Ledger have confirmed their devices use independent random number generation implementations and are not affected by the Coldcard-specific firmware flaw. The vulnerability is specific to Coinkite’s build configuration, not to hardware wallets as a category.

Is self-custody still safe after the Coldcard hack?

The Coldcard hack exposed a failure in one manufacturer’s implementation, not a flaw in the self-custody security model. Multisignature wallets, which require multiple independent keys from different devices, would have prevented every theft in this exploit. Security experts recommend using multisig configurations and verifying that hardware wallet manufacturers undergo independent entropy audits.

Should I move my bitcoin to an exchange after the Coldcard hack?

Exchange custody eliminates seed-management risk but introduces counterparty risk. FTX, Mt. Gox, Celsius, and other exchange failures collectively lost billions more than the Coldcard exploit. The decision depends on individual risk tolerance, technical capability, and the value of holdings. Bitcoin ETFs offer regulated price exposure without direct key management for investors who prioritize convenience over sovereignty. This is educational analysis, not investment advice.

Advertisement

Disclaimer: This article is for informational purposes only and does not constitute financial or investment advice. Hardware wallet security incidents carry significant risk of permanent fund loss. Past security performance of any device does not guarantee future security. Published August 5, 2026.

Source link

Advertisement
Continue Reading
Click to comment

You must be logged in to post a comment Login

Leave a Reply

Crypto World

Coldcard Thefts Near $114 Million as Fourth Attack Wave Hits

Published

on

Coldcard Thefts Near $114 Million as Fourth Attack Wave Hits


Attackers began a fourth wave of sweeps against bitcoin held in Coldcard hardware wallets on Monday, pushing estimated losses to roughly $114 million since Thursday. The latest transactions remained replaceable in the mempool, giving some victims a brief window to move their coins before the thefts… Read the full story at The Defiant

Source link

Continue Reading

Crypto World

The $114 Trillion Question: How DTCC Is Tokenizing the Entire U.S. Market

Published

on

The $114 Trillion Question: How DTCC Is Tokenizing the Entire U.S. Market


🎧 Listen to Interview 💻 Watch Video… Read the full story at The Defiant

Source link

Continue Reading

Crypto World

Bitcoin Price Poised at $64,825: Analyst Says Next Macro Catalyst is Launchpad

Published

on

btc logo

In the latest Bitcoin price prediction, BTC is trading at $64,825.91, up a marginal 1% over the last 24 hours in tight range-bound action. The intraday band of $64,456 to $64,982 is narrow, suggesting neither side has conviction yet.

What happens at the next macro catalyst could decide whether this consolidation resolves as a launchpad or a ceiling.

Spot prices have stabilized after a recent correction from the $70,000 plus zone, with BTC clustering in the low to mid $60,000s across venues.

Bitcoin (BTC)
24h7d30d1yAll time

Volume remains subdued relative to the prior rally, suggesting a market in wait-and-see mode rather than one actively building positions. Institutional flows through spot Bitcoin products and upcoming central bank commentary are the 2 levers traders are watching most closely right now.

Advertisement

The structure of this pause matters. Consolidations at these levels historically precede either a decisive momentum move or a deeper flush, and the macro backdrop is far from resolved.

Discover: Everyone’s Got a Take. Get Free $25 to Actually Trade Yours

Bitcoin Price Prediction: Can Bitcoin Price Reclaim $68,000 or Is a Breakdown Below $60,000 the Next Move?

Advertisement

Bitcoin is trading at $64,825.91, sitting roughly midway between the 2 scenarios dominating current trading desk conversation. Near-term support is parked at $61,500 to $62,000, aligning with recent intraday lows.

Immediate resistance sits in the $65,000 to $68,000 band, a zone that has capped multiple attempted breakouts since the April peak.

The daily range of $64,456 to $64,982 reflects compressed volatility. That compression typically resolves with a directional move, not a slow drift.

Source: BTCUSD / Tradingview

Momentum indicators on shorter timeframes remain flat to negative, with the most recent session printing slightly red. No strong divergence signals are currently visible.

ETF inflows accelerating, macro data printing dovishly, and BTC clearing $65,000 with volume opens a run toward $68,000 to $70,000. Continued range trade between $62,000 and $65,000 while the market digests recent gains and awaits a cleaner catalyst is the base case. A daily close below $61,500 puts $58,000 to $59,000 back into play, the real test of structural demand.

Advertisement

The data points to a market that has absorbed the correction reasonably well. But reasonably well is not the same as ready to run. The $65,000 reclaim is the binary trigger most professionals are using to re-size exposure.

Discover: Your Market Calls Are Worth Something. Start With Free $25 on Kalshi

Bitcoin Hyper Targets Early-Mover Upside as Bitcoin Tests Key Levels

Bitcoin consolidating near $65,000 is constructive, but at this market cap, the asymmetric upside that defined earlier BTC cycles simply isn’t there anymore. Traders looking for outsized returns are increasingly scanning the infrastructure layer built on top of Bitcoin rather than the asset itself.

Advertisement

Bitcoin Hyper ($HYPER) is the first Bitcoin Layer 2 to integrate the Solana Virtual Machine (SVM), delivering sub-second finality and low-cost smart contract execution while anchoring to Bitcoin’s security.

That combination, Solana-grade speed on a Bitcoin-trust foundation, is the core architectural differentiator.

The presale has raised $33,012,866.84 to date at a current price of $0.0136842, with a staking program live for participants.

The $33M milestone arrived alongside exactly the kind of BTC volatility that tends to redirect attention toward early-stage infrastructure plays. A Decentralized Canonical Bridge for BTC transfers rounds out the feature set. As with any presale, token liquidity is limited until listing, and early-stage projects carry execution risk.

Advertisement

Research Bitcoin Hyper here.

Discover: Get Paid to Be Right, $25 to Start on Kalshi

Don’t Miss Out on Our $1,000 USDT Airdrop on ByBit

The post Bitcoin Price Poised at $64,825: Analyst Says Next Macro Catalyst is Launchpad appeared first on Cryptonews.

Advertisement

Source link

Continue Reading

Crypto World

FTSE 100 Analysis: Strong BAE Systems Earnings Support the Index Rally Near Record Highs

Published

on

FTSE 100 Analysis: Strong BAE Systems Earnings Support the Index Rally Near Record Highs

On 30 July, BAE Systems reported its first-half 2026 financial results, with sales rising 9% year-on-year to £15.8 billion. Underlying operating profit increased by 11% to £1.7 billion, while underlying earnings per share climbed 13% to 38.9 pence. The company also raised its full-year outlook for sales, operating profit and EPS, supported by a record order backlog of £84 billion following £16.4 billion in newly secured contracts. On the same day, the FTSE 100 reached a fresh intraday high, helped by gains in mining stocks amid stronger commodity prices and positive momentum across industrial companies after encouraging earnings releases. The advance came alongside renewed focus on developments surrounding Iran and expectations ahead of the Bank of England’s rate decision.

Technical Analysis of FTSE 100

The FTSE 100 index has been trending higher since reaching a low near 10,450 on 21 July. The index advanced along a rising trendline towards the red resistance zone around 11,000 before breaking above the trendline and entering a consolidation phase. Currently, the price is trading within the boundaries of the latest volume profile, with the upper boundary at 10,950, the lower boundary near 10,880, and the Point of Control (POC) located at 10,910. The close positioning of these levels creates a relatively narrow trading zone, limiting the space for an extended sideways move.

The current profile is surrounded by key technical levels on both sides. The 11,000 resistance area remains above the market and marks the recent short-term peak, while the green support level at 11,805 could act as a reference if the lower profile boundary is breached. The RSI + MAs indicator is currently showing readings of 50, 54 and 56, with all components remaining in neutral territory and offering no clear directional signal.

Summary

BAE Systems’ strong earnings provide additional fundamental support for the FTSE 100 rally, although the technical picture suggests that momentum has started to slow. The RSI + MAs indicator has moved into a more balanced position, while the index remains below its recent high. Further upside is likely to depend on whether upcoming corporate results can justify current market expectations and maintain investor confidence.

Trade global index CFDs with zero commission and tight spreads (additional fees may apply). Open your FXOpen account now or learn more about trading index CFDs with FXOpen.

Advertisement

This article represents the opinion of the Companies operating under the FXOpen brand only. It is not to be construed as an offer, solicitation, or recommendation with respect to products and services provided by the Companies operating under the FXOpen brand, nor is it to be considered financial advice.

Source link

Advertisement
Continue Reading

Crypto World

Meta Becomes 3rd AI Firm to Report Model Breaching Outside Company

Published

on

What Is Meta’s AI Muse Spark and Can It Overthrow Claude and ChatGPT?

Meta confirmed on Wednesday that one of its AI models breached an outside company’s systems during a cybersecurity test.

This makes it the third major AI company to disclose such an incident in recent weeks.

What Meta Said About the Breach

According to media reports, Meta’s AI model accessed the systems of an undisclosed third-party service. This happened because of an issue during an evaluation by an independent testing company, which granted it internet access.

“A misconfiguration by Irregular, an independent testing company Meta uses, inadvertently allowed one of our models access to the internet during evaluation,” the Meta spokesperson stated.

Follow us on X to get the latest news as it happens

Advertisement

Media reports identified the model as Meta’s Muse Spark. An Irregular spokesperson said the Meta incident stemmed from “the exact same evaluation-environment issue that was already disclosed by Anthropic last week.” 

Irregular flagged the breach to Meta. The company said it is investigating and will publish a full account once it gathers the facts.

The disclosure follows similar admissions from Anthropic and OpenAI over the past few weeks. Anthropic reviewed 141,006 evaluation runs and found its Claude models reached three organizations’ real systems. OpenAI’s agent, meanwhile, escaped a sandbox and breached Hugging Face.

Irregular ruled out any sandbox escape and said no issues remain open.

Advertisement

“This did not involve a sandbox escape or a sophisticated cyber action. There are no current open issues. Irregular is developing a white paper to share best practices for containment and securely running cyber evals,” an Irregular spokesperson added.

The disclosures reflect both the advancing capabilities of AI agents and the potential dangers they carry.

Subscribe to our YouTube channel to watch leaders and journalists provide expert insights

The post Meta Becomes 3rd AI Firm to Report Model Breaching Outside Company appeared first on BeInCrypto.

Source link

Advertisement
Continue Reading

Crypto World

LBank Bets on Pudgy Penguins as It Pursues Growth Beyond Trading

Published

on

[PRESS RELEASE – Singapore, Singapore, August 6th, 2026]

Global cryptocurrency exchange LBank has announced a strategic brand partnership with Pudgy Penguins, one of Web3’s most successful IP transformation stories, marking a new step in connecting crypto infrastructure with digital culture, consumer experiences, and broader mainstream adoption.

The partnership reflects LBank’s evolving approach toward brand development as the crypto industry moves beyond early adopters and trading-focused narratives. By collaborating with globally recognized Web3-native intellectual properties, LBank aims to explore new ways of connecting users with crypto through cultural relevance, creativity, and accessible experiences.

Pudgy Penguins has emerged as one of Web3’s strongest examples of IP commercialization beyond NFTs. Originally launched as a digital collectible project, the brand has expanded into a broader consumer ecosystem covering collectibles, toys, gaming, and entertainment. Its recent rollout of Vibes Series 3 trading cards at Target stores across the U.S. represents another milestone in its transition from a crypto-native project into a mainstream-facing entertainment brand.

Advertisement

The expansion highlights a broader industry shift: leading Web3 projects are increasingly moving beyond digital assets to build recognizable brands across real-world retail and cultural channels. Pudgy Penguins’ ability to translate online communities into tangible consumer experiences has positioned it as one of the most closely watched IP developments in the Web3 space.

For LBank, the partnership continues its broader strategy of collaborating with digital-native brands to create stronger connections between crypto users and emerging cultural movements. Previously, LBank has partnered with Web3 IPs including Nobody Sausage, YETI, and Ponke, developing initiatives that combine creative content, community storytelling, and digital engagement.

“Brands today need to communicate beyond products. A brand should have its own voice, while communities should feel genuine connection and warmth,” said Eric He, Community Angel Officer and Risk Control Adviser of LBank. “Soft power, creativity, and authentic relationships with communities can create lasting value in ways that traditional scale-driven competition cannot.”

The collaboration comes amid a growing trend among crypto platforms seeking to expand beyond pure financial services and build stronger cultural relevance. As digital assets become increasingly integrated into entertainment, retail, and consumer experiences, partnerships between exchanges and Web3-native IPs are emerging as a new pathway toward broader adoption.

With more than 25 million registered users worldwide, LBank continues expanding its global ecosystem through product innovation and strategic collaborations. The exchange has introduced new offerings including LBank Predict and BK Genie AI, while strengthening its presence across crypto trading, artificial intelligence, and emerging digital finance sectors.

Advertisement

Through partnerships such as Pudgy Penguins, LBank aims to continue exploring the intersection of technology, culture, and finance, supporting the next stage of crypto adoption beyond traditional market participation.

About LBank

Founded in 2015, LBank is a leading global cryptocurrency exchange serving over 25 million registered users in 160 countries and regions. With a daily trading volume exceeding $23.81 billion and 10 years of safety with zero security incidents, LBank is dedicated to providing a comprehensive and user-friendly trading experience. Through innovative trading solutions, the platform has enabled users to achieve average returns of over 130% on newly listed assets.

LBank has listed over 300 mainstream coins and more than 50 high-potential gems. Ranked No. 1 in 100x Gems, Highest Gains, and Meme Share, LBank leads the market with the fastest altcoin listings, unmatched liquidity, and industry-first trading guarantees, making it the go-to platform for crypto investors worldwide.

Advertisement

Follow LBank for Updates

Website: https://www.lbank.com/

Twitter: https://twitter.com/LBank_Exchange

Telegram: https://t.me/LBank_en

Advertisement

Instagram: https://www.instagram.com/lbank_exchange

LinkedIn: https://www.linkedin.com/company/lbank

The post LBank Bets on Pudgy Penguins as It Pursues Growth Beyond Trading appeared first on CryptoPotato.

Advertisement

Source link

Continue Reading

Crypto World

'I Did Everything Right': Coldcard Victims Recount Losing Life Savings

Published

on

'I Did Everything Right': Coldcard Victims Recount Losing Life Savings


Jonathan Goodman kept his 18.25 BTC on a Coldcard that had never touched the internet, locked in a safety deposit box. Between 9:36 pm and 9:43 pm on July 29, every wallet he had was emptied — about $1.6 million Canadian dollars, gone in seven minutes. "Perhaps the hardest part about this is that I… Read the full story at The Defiant

Source link

Continue Reading

Crypto World

Mysten Labs CTO Joins Anthropic to Focus on AI Security Research

Published

on

Crypto Breaking News

Sam Blackshear, co-founder and chief technology officer of Sui developer Mysten Labs, says he is stepping away from the company to join Anthropic, where he will work on defensive security research. In a post on X, Blackshear framed the move as a chance to focus on security at a moment when the balance between attackers and defenders is shifting under the pressure of AI-enabled tooling.

Mysten Labs was founded in September 2021 by Blackshear and four former Meta executives. Blackshear said Mysten co-founder and CEO Evan Cheng will take over setting the company’s “technical vision,” as the team continues building on the Move-based smart contract ecosystem behind Sui.

Key takeaways

  • Sam Blackshear is leaving Mysten Labs to join Anthropic for defensive security research, with Evan Cheng stepping in for technical vision.
  • Blackshear argues AI has accelerated vulnerability discovery and exploitation, pushing smart contract security into a faster, more competitive cycle.
  • He cites a personal example: porting a static analysis tool to Sui’s Move language using Claude produced results far faster than prior manual triage.
  • Crypto security leaders say restrictions on “frontier” AI access may be reasonable initially, but should evolve as public models reach comparable capability.

Blackshear’s shift from protocol building to defensive security

Blackshear’s announcement positions his next role squarely in the security research lane. He said his motivation comes from the opportunity to apply hands-on technical work to a new problem domain—defending systems against threats that are becoming more scalable and automated.

His note also highlights why the timing matters to the broader crypto industry: as AI increasingly supports tasks like vulnerability identification and phishing automation, attackers can iterate faster across both conventional software targets and blockchain-adjacent infrastructure. Blackshear pointed to the trend of AI being used to accelerate attacks on systems that underpin decentralized finance and crypto operations, not just to exploit smart contracts directly.

A “new world” moment for smart contract static analysis

Blackshear previously discussed how AI coding agents and AI-assisted workflows are reshaping smart contract security. In an April panel he hosted with other security experts, he described a turning point tied to static analysis—specifically, the moment his tools stopped behaving like a purely manual process.

Advertisement

According to Blackshear, he ported a static analysis tool he originally built at Facebook in OCaml-Java over to Move, the programming language Sui uses for smart contracts. He said he used Claude to help make the transition and to flag potential vulnerabilities during the workflow.

Blackshear’s reaction—“whoa”—was driven by the speed and capability he saw. He emphasized that triage, which had been completely manual before, could be addressed much more quickly once the toolchain and AI assistance were in place. He added that the coding effort and triage cycle would otherwise have taken “a long, long time,” pointing to reduced turnaround as a key operational change rather than a purely theoretical upgrade.

This matters for teams responsible for smart contract security because the practical bottleneck is often not just identifying issues, but efficiently processing and prioritizing them—especially when code changes frequently or when audits need to keep up with releases.

Frontier AI access: guardrails versus defender capacity

Blackshear’s comments also connect to a wider debate inside crypto: how to balance safety guardrails around advanced AI models with the need to put sufficiently capable tools in the hands of security teams.

Advertisement

Cointelegraph previously reported that many major crypto firms have sought access to powerful new AI models to strengthen their code against attacks, while many frontier model providers initially restrict access to a small group of companies. The underlying concern raised by executives is that restrictions may slow defenders just as attackers gain automation advantages.

In the same discussion, crypto leaders argued that once publicly available models reach similar cybersecurity capability, access policies should be revisited. Solana Foundation chief information security officer Michael Coates said he understands the rationale for guardrails, but argued that the surrounding verification and acceptance processes should be streamlined so legitimate security teams can use advanced models more reliably.

Coates’ central point was that defender access cannot lag indefinitely. If attackers have tools capable enough to scale, then restricting model access only limits the ability of defenders to respond with comparable speed and effectiveness.

What Mysten’s leadership change could mean for Sui security

Blackshear’s departure transfers direct responsibility for Mysten’s technical vision to Evan Cheng, according to the announcement. While this does not necessarily indicate a change in Sui’s roadmap, it does shift where the company’s expertise emphasis may land internally.

Advertisement

For investors and builders, the most immediate watch item is whether Mysten sustains momentum in areas tied to security tooling and secure development practices—especially given Blackshear’s role in bringing AI-assisted static analysis into the day-to-day security workflow. His move suggests a personal emphasis on defensive research, but the ecosystem implications depend on how the company institutionalizes the techniques and processes he described.

It’s also worth noting that AI-driven security changes aren’t confined to one chain or one organization. As AI assistance for coding and vulnerability triage improves, security workflows across multiple smart contract platforms may begin to converge on similar patterns: faster static analysis, more efficient vulnerability triage, and a tighter feedback loop between code changes and security verification.

In that environment, the competition may shift from “who can find vulnerabilities” to “who can operationalize security at the speed of development.” Blackshear’s example—where triage and coding timelines shrink materially—highlights why defenders are pushing for AI capabilities that are not only powerful, but also accessible and usable without excessive friction.

Readers should watch whether frontier AI providers and crypto organizations continue to refine access policies as public models improve, and whether Mysten publicly outlines how its security and developer tooling strategy will evolve after Blackshear’s move to Anthropic. The next phase of smart contract security may depend as much on workflow design and tooling access as it does on novel detection techniques.

Advertisement

Risk & affiliate notice: Crypto assets are volatile and capital is at risk. This article may contain affiliate links. Read full disclosure

Source link

Advertisement
Continue Reading

Crypto World

Few and Far founder Taj Tarsha charged with misusing funds from $10 million raise

Published

on

SEC sues Texas man over $12.3 million alleged crypto scheme built on fake AI trading bots

Federal prosecutors in Manhattan charged the founder of non-fungible token (NFT) startup Few and Far with securities fraud and wire fraud.

The prosecutors alleged that Taj Tarsha diverted more than $10 million raised from investors into online gambling, cryptocurrency speculation and personal expenses instead of building the company’s marketplace.

The 34-year-old raised the funds from at least 67 investors beginning in February 2022 through Simple Agreements for Future Tokens (SAFTs), the U.S. Attorney’s Office for the Southern District of New York said in a statement.

SAFTs give a project’s financial backers the right to receive tokens once they are available. Few and Far’s investors had the right to receive 95 million FAR tokens while funding development of the company’s planned decentralized NFT marketplace.

Advertisement

The prosecutors allege Tarsha began misappropriating investor funds almost immediately after the fundraising closed.

The alleged misconduct was uncovered in a June 2023 audit, according to the statement. Prosecutors claim Tarsha falsely told investors that bonuses he received were tied to token presale milestones and that company funds were being used to advance the project.

Source link

Advertisement
Continue Reading

Crypto World

Pi Network’s PI Leads the Altcoin Rally as BTC Eyes $65K: Market Watch

Published

on

Bitcoin’s slow and gradual price revival took it to $65,000 for the first time since Friday a few hours ago, but the asset still has yet to  overcome that level for good.

Most larger-cap alts have produced minor moves as well over the past 24 hours, with ETH climbing above $1,900, while XRP continues to underperform.

Bitcoin Price Eyes $65K

Bitcoin tried to take down the $65,000 mark on several occasions during the previous business week. Its strongest attempts were last Monday when it was halted at $65,600 twice. After a major slump, it went at it again on Friday, but this time it was stopped even earlier, at $65,400.

Another painful leg down followed, which drove it to $62,400 within the same day and down to a monthly low of $62,200 on Saturday. US President Trump’s announcement of canceled strikes against Iran on Sunday morning resulted in a rebound attempt that was stopped at $63,800 on Monday morning.

Advertisement

BTC fell quickly to the same $62,200 level before the bulls stepped up. They were more persistent this time and helped BTC climb above $63,000 and even $64,000 within a day or so. The cryptocurrency has been fighting for the latter for 24-36 hours, but it has seemingly reclaimed that level as of now. Moreover, it tapped $65,000 earlier this morning, but it was halted there and now sits inches below it.

Its market cap has touched $1.3 trillion, while its dominance over the alts remains inches below 57% on CG.

BTCUSD Aug 6. Source: TradingView
BTCUSD Aug 6. Source: TradingView

PI Steals the Alt Show

Ethereum has risen the most from the larger-cap alts, spiking above $1,900 after a 2.2% daily increase. In contrast, most others are in the red, including minor losses from BNB, XRP, SOL, TRX, and DOGE. Yesterday’s top performers, HYPE and ZEC, are down by over 2% daily. CC has plunged by more than 7%.

Meanwhile, Pi Network’s native token has emerged as today’s top gainer. It exploded by 15% at one point to a 3-week peak before it was stopped. Nevertheless, it still trades above $0.09. GT and BDX follow suit in terms of daily gains.

The total crypto market cap has increased by approximately $40 billion and now sits at $2.3 trillion on CG.

Advertisement
Cryptocurrency Market Overview August 6. Source: QuantifyCrypto
Cryptocurrency Market Overview August 6. Source: QuantifyCrypto

The post Pi Network’s PI Leads the Altcoin Rally as BTC Eyes $65K: Market Watch appeared first on CryptoPotato.

Source link

Continue Reading

Trending

Copyright © 2025