French Tax Agency Admits Data Leak: Hacker Stole 678,000 Records

cryptonews.ruPublicado em 2026-08-15Última atualização em 2026-08-15

Resumo

A significant data breach has occurred at France's General Directorate of Public Finances (DGFiP), with a hacker known as "Zerobytes" stealing 678,438 taxpayer records. The attacker claims to have infiltrated internal servers via a VPN using an internal search tool. Although access was cut off, preventing a full data download, the stolen file is reportedly being sold for thousands of euros. The DGFiP confirmed the June 12th attack, stating it immediately disabled all compromised accounts but admitted its access controls failed to detect the sophisticated data theft. The agency assured that website login credentials remain secure and announced new security measures. It will directly contact affected individuals next week to inform them of the specific data likely viewed or extracted and any necessary precautions. The breach has heightened fears among French cryptocurrency holders of potential "key attacks," as France has seen a rise in crypto-related crimes. Following the incident, calls have emerged for a moratorium on state data collection until security improves. By April, French authorities had charged 88 individuals in 12 crypto-related kidnapping cases, with 41 attacks recorded.

A new threat has emerged for cryptocurrency owners in France after malicious actors gained access to a large amount of taxpayers' personal information.

A hacker using the pseudonym Zerobytes managed to steal data of 678,438 taxpayers, extracted from the website of the General Directorate of Public Finance (DGFiP). According to local reports, the attacker claims to have breached internal servers using an internal search tool via a VPN.

The perpetrator, who also appears to have been involved in previous attacks on French institutions, had his access cut off and was unable to retrieve all DGFiP taxpayer data. Nevertheless, the file is being sold to interested parties for several thousand euros.

The DGFiP confirmed that the attack occurred on June 12, emphasizing that it "immediately terminated access to all accounts used in the identified incidents," but "the access control measures taken in this case did not detect that these intrusions resulted in data theft, due to the sophistication of the attack."

The agency also clarified that the data necessary to access the website was not compromised and reported implementing new security measures to prevent similar leaks in the future.

"Next week, the DGFiP will directly contact each of the affected individuals and professionals. They will receive individual information by email or post specifying the data that was likely viewed or extracted, and, if necessary, precautionary measures to be taken," the agency concluded.

French cryptocurrency owners expressed their concern on social media, fearing that this new leak could trigger new "key attacks" against them. France has become a hotbed for such crimes after a tax official allegedly sold data on high-status cryptocurrency owners.

Alexander Stachtchenko, head of strategy and communications at Bitstack, called for a moratorium on the collection of personal data by government agencies, stressing that France has endangered taxpayers.

"Demand a moratorium: stop collecting data until the state learns to protect what it holds. Contact your deputies. Share this information. The right to privacy is one of the fundamental freedoms that must be guaranteed," he emphasized.

By April, 88 individuals had been charged in France in 12 cryptocurrency-related kidnapping cases; at that time, 41 attacks had been recorded.

end-content

Criptomoedas em alta

Perguntas relacionadas

QWhat is the main topic of this article?

AThe article discusses a major data breach at the French tax agency DGFiP, where a hacker stole records of over 678,000 taxpayers, raising concerns for cryptocurrency owners.

QHow did the hacker, Zerobytes, allegedly gain access to the French tax agency's data?

AThe hacker, using the pseudonym Zerobytes, claims to have breached internal servers using an internal search tool via a VPN connection.

QWhat was DGFiP's response to the attack that occurred on June 12th?

ADGFiP confirmed the attack and stated they immediately cut off access to all accounts involved in the identified incidents. They also announced plans to directly contact each affected individual next week to inform them about which data was likely viewed or extracted.

QWhy are French cryptocurrency owners particularly concerned about this data leak?

AThey fear this new leak could lead to new 'key attacks' (likely targeting their digital wallets or assets). Their concern is heightened by previous incidents where tax officials reportedly sold data on high-status crypto owners.

QWhat broader measure did Alexandre Stachtchenko, from Bitstack, call for in response to the incident?

AHe called for a moratorium on the collection of personal data by state institutions until the government learns how to properly protect the data it holds, emphasizing the right to privacy as a fundamental freedom.

Leituras Relacionadas

An Eight-Year Investment Takes a Sharp Turn: Why Did Ethereum Suddenly Abandon Poseidon?

On August 13, Ethereum researcher Justin Drake announced a significant shift in Ethereum's Layer-1 cryptographic roadmap: abandoning the SNARK-friendly hash function Poseidon in favor of traditional functions like SHA2 or BLAKE2. This decision ends eight years of research and investment, marking a major revision to the post-quantum security strategy. Poseidon, introduced in 2019, was highly efficient for zkRollups and zkVMs within SNARK circuits. However, its need for prolonged cryptanalysis and the pressing timeline for quantum resistance revealed limitations. Recent breakthroughs in SNARK design, specifically using binary fields, now enable traditional, battle-tested hash functions to perform as efficiently as Poseidon within SNARKs. Benchmarks show modern laptops can now verify over a million traditional hash calls per second. This change is partly driven by accelerated concerns over quantum computing threats. Reports warn that "Cryptographically Relevant Quantum Computers" could break current blockchain signatures like ECDSA by the early 2030s, risking trillions in assets. Ethereum's response focuses on hash-based post-quantum signature schemes, deemed more quantum-resistant than some lattice-based alternatives under pressure from AI cryptanalysis. Ethereum's updated post-quantum roadmap targets a production-ready "leanVM" for signature aggregation by 2027, with full deployment across consensus, execution, and data layers by 2028. The shift to mature hash functions like SHA2 reduces reliance on newer algorithms and aligns with the goal of using widely analyzed cryptographic primitives. Other major blockchains are also preparing. Solana's core teams have independently chosen the NIST-standardized Falcon signature scheme for its compact size. Starknet plans a phased migration, starting with replacing its Pedersen hash with BLAKE2. Ethereum's move signifies a strategic pivot towards proven security foundations for the quantum era.

marsbitHá 38m

An Eight-Year Investment Takes a Sharp Turn: Why Did Ethereum Suddenly Abandon Poseidon?

marsbitHá 38m

Programmers Worldwide Are Wasting Money on Anthropic! The Company Can't Stand It Anymore

Anthropic recently published guidelines to help developers using Claude Code reduce unnecessary token costs. The key recommendations include: 1) Clear (/clear) conversations after completing a task to avoid carrying irrelevant file reads and command outputs into the next task. 2) Set the model and reasoning effort level at the start of a session, as switching mid-session invalidates the prompt cache, requiring a full-price recalculation of the entire dialog history. 3) Attach files using @ references instead of typing paths manually to avoid extra tool calls and searches that bloat the context. 4) Add quiet flags to verbose commands (e.g., in CLAUDE.md) to minimize lengthy output in the dialog history. 5) Use /compact while the session cache is still warm (before breaks) to compress the dialog at one-tenth the cost. 6) Offload large-output tasks to a sub-agent, which runs in an isolated context and only returns conclusions, preventing intermediate outputs from polluting the main dialog. The article explains token pricing: input tokens (prefill) are processed in parallel, while output tokens (decode) are generated serially, making output tokens five times more expensive. Caching is crucial for savings—if a request's prefix (system prompt, CLAUDE.md, dialog history) matches the previous one byte-for-byte, reading it costs only 10% of the standard input price. However, cache invalidation occurs when changing models, effort levels, fast mode, compressing dialogs, after cache expiration, or when resuming old sessions. Dialog history also grows quadratically (O(n²)) as file contents and command outputs accumulate, increasing costs per round. Proactive context management—like isolating noisy tasks, using /rewind to trim unproductive turns, and task-based session clearing—is becoming an essential skill for cost-effective AI-assisted development.

marsbitHá 2h

Programmers Worldwide Are Wasting Money on Anthropic! The Company Can't Stand It Anymore

marsbitHá 2h

Pax Silica vs. WAICO: The US Wants to Prohibit Europe from Using Chinese Artificial Intelligence

The United States is preparing to demand that European and other partners abandon Chinese artificial intelligence initiatives, threatening exclusion from the American-led "Pax Silica" coalition, according to a leaked U.S. State Department document. This ultimatum forces signatories of the "AI Opportunity Statement" to choose between the Western technological ecosystem and alternative frameworks, with China not explicitly named but clearly targeted. Pax Silica is a U.S. strategy for AI and semiconductor hegemony, launched in late 2025. Its European presence expanded significantly in mid-2026. Concurrently, China, Russia, and 27 other nations established the World AI Cooperation Organization (WAICO) in July 2026 as an independent intergovernmental platform promoting AI governance based on UN principles. This situation creates a difficult choice, especially for European nations balancing strategic autonomy with dependence on U.S. tech and security. It also pressures Global South countries with pragmatic ties to both Washington and Beijing. The formation of competing blocks risks fragmenting the global tech landscape, forcing companies to split supply chains, increasing costs, and potentially leading to incompatible standards and protocols. The era of open globalization in AI may be ending, replaced by geopolitical confrontation where technological sovereignty trumps economic efficiency. The decisions made will shape the global digital economy for decades.

cryptonews.ruHá 4h

Pax Silica vs. WAICO: The US Wants to Prohibit Europe from Using Chinese Artificial Intelligence

cryptonews.ruHá 4h

Robert Kiyosaki Shares His Mentor's Predictions About the Emergence of Bitcoin and AI

American entrepreneur and author of "Rich Dad Poor Dad," Robert Kiyosaki, discussed the influence of futurist R. Buckminster Fuller on his worldview, linking Fuller's past technological predictions to the emergence of Bitcoin and the development of artificial intelligence. In an X post, Kiyosaki also reflected on personal purpose, sharing his journey from the music business—where he worked with bands like The Police and Iron Maiden—to creating the "Cashflow" board game and writing his famous book. He described feeling an inner emptiness despite his success, a turning point that came after meeting Fuller, whom he studied with for three summers. Kiyosaki described Fuller as a "friendly genius" who foresaw world-changing developments like Bitcoin and AI. However, the core of his post focused on Fuller's philosophical impact, particularly a quote about belonging to the universe and finding purpose by dedicating one's life to the maximum benefit of others. The entrepreneur remains a vocal advocate for cryptocurrencies. He regularly advises buying Bitcoin during market panics, viewing it and assets like Ethereum, gold, and silver as hedges against traditional financial system failures. Kiyosaki has predicted a major market crash by 2026, seeing it as an opportunity for prepared investors, with long-term price targets including $750,000 for Bitcoin and $95,000 for Ethereum.

cryptonews.ruHá 6h

Robert Kiyosaki Shares His Mentor's Predictions About the Emergence of Bitcoin and AI

cryptonews.ruHá 6h

Trading

Spot

Artigos em Destaque

Como comprar DATA

Bem-vindo à HTX.com!Tornámos a compra de DATA Network (DATA) simples e conveniente.Segue o nosso guia passo a passo para iniciar a tua jornada no mundo das criptos.Passo 1: cria a tua conta HTXUtiliza o teu e-mail ou número de telefone para te inscreveres numa conta gratuita na HTX.Desfruta de um processo de inscrição sem complicações e desbloqueia todas as funcionalidades.Obter a minha contaPasso 2: vai para Comprar Cripto e escolhe o teu método de pagamentoCartão de crédito/débito: usa o teu visa ou mastercard para comprar DATA Network (DATA) instantaneamente.Saldo: usa os fundos da tua conta HTX para transacionar sem problemas.Terceiros: adicionamos métodos de pagamento populares, como Google Pay e Apple Pay, para aumentar a conveniência.P2P: transaciona diretamente com outros utilizadores na HTX.Mercado de balcão (OTC): oferecemos serviços personalizados e taxas de câmbio competitivas para os traders.Passo 3: armazena teu DATA Network (DATA)Depois de comprar o teu DATA Network (DATA), armazena-o na tua conta HTX.Alternativamente, podes enviá-lo para outro lugar através de transferência blockchain ou usá-lo para transacionar outras criptomoedas.Passo 4: transaciona DATA Network (DATA)Transaciona facilmente DATA Network (DATA) no mercado à vista da HTX.Acede simplesmente à tua conta, seleciona o teu par de trading, executa as tuas transações e monitoriza em tempo real.Oferecemos uma experiência de fácil utilização tanto para principiantes como para traders experientes.

474 Visualizações TotaisPublicado em {updateTime}Atualizado em 2026.07.01

Como comprar DATA

Discussões

Bem-vindo à Comunidade HTX. Aqui, pode manter-se informado sobre os mais recentes desenvolvimentos da plataforma e obter acesso a análises profissionais de mercado. As opiniões dos utilizadores sobre o preço de DATA (DATA) são apresentadas abaixo.

活动图片