法国税务局承认数据泄露:黑客窃取67.8万条记录

cryptonews.ruPublicado a 2026-08-15Actualizado a 2026-08-15

Resumen

法国税务机构DGFiP承认发生数据泄露事件,一名化名为Zerobytes的黑客通过VPN工具入侵内部服务器,窃取了约67.8万纳税人的个人信息。事件发生于6月12日,当局已立即中断相关账户访问权限,但由于攻击手法复杂,未能及时检测到数据窃取。被盗数据据称正以数千欧元的价格出售。 DGFiP强调用于网站登录的凭证数据未受影响,并已部署新的安全措施。该机构将于下周直接联系受影响的个人与专业人士,告知可能被查阅或提取的数据及建议采取的预防措施。 此次事件引发了法国加密货币持有者的担忧,他们担心这可能导致更多针对其资产的“SIM卡交换攻击”或跟踪攻击。有行业人士呼吁政府暂停收集个人数据,直至其安全保护能力得到保障。据统计,截至今年四月,法国已就12起加密货币相关绑架案起诉88人,共记录41起攻击事件。

法国加密货币持有者面临新的威胁,因为不法分子获取了大量纳税人的个人信息。

化名为Zerobytes的黑客窃取了从法国公共财政总局(DGFiP)网站提取的678,438名纳税人的数据。根据当地报道,该黑客声称通过VPN使用内部搜索工具成功入侵了内部服务器。

这名显然也曾参与此前针对法国机构攻击的犯罪分子,其访问权限已被切断,并且未能恢复所有DGFiP的纳税人数据。尽管如此,该文件仍被以数千欧元的价格出售给有关方。

DGFiP证实攻击发生在6月12日,并强调"立即中断了所有在已识别事件中使用的账户的访问权限",然而"在这种情况下采取的访问控制措施,未能发现这些入侵导致了数据盗窃,原因是攻击手段的复杂性"

该机构还解释说,访问网站所需的数据未被泄露,并宣布已实施新的安全措施以防止未来发生类似泄露。

"下周,DGFiP将直接联系每一位受影响的个人和专业人士。他们将通过电子邮件或邮件收到个性化信息,说明可能被查看或提取的数据,以及在必要时需要采取的预防措施",该机构总结道。

法国的加密货币持有者在社交媒体上表达了他们的担忧,担心这次新的泄露可能引发针对他们的新的"密钥攻击"。据报道,在一位税务官员据称出售了具有高净值地位的加密货币所有者数据后,法国已成为此类犯罪的温床。

Bitstack公司的战略与传播主管亚历山大·斯塔赫琴科呼吁对政府机构收集个人数据实施暂停令,强调法国已将纳税人置于危险之中。

"要求暂停:在国家学会保护其拥有的数据之前,停止收集数据。联系你们的议员。分享这个信息。隐私权是必须得到保障的基本自由之一",他强调说。

截至四月,法国已有88人因12起与加密货币相关的绑架案件被起诉;当时已登记了41起袭击事件。

Criptos en tendencia

Preguntas relacionadas

Q法国哪个政府部门确认了数据泄露事件,有多少条记录被盗?

A法国公共财政总局(DGFiP)确认了数据泄露事件。一名黑客窃取了678,438名纳税人的数据记录。

Q根据文章,黑客是如何入侵法国公共财政总局内部服务器的?

A黑客自称是使用VPN连接的内部搜索工具,从而入侵了法国公共财政总局的内部服务器。

Q法国公共财政总局计划如何通知受此次数据泄露影响的个人?

A法国公共财政总局计划在下周,通过电子邮件或邮寄方式,直接联系每一位受影响的个人和专业人士,告知他们哪些数据可能被查看或窃取,并在必要时提供应采取的预防措施。

Q这次数据泄露事件引发了法国加密货币持有者什么样的担忧?

A法国的加密货币持有者担心,这次新的数据泄露可能会引发针对他们的新一轮“SIM卡交换攻击”,导致他们的数字资产被盗。

QBitstack公司的亚历山大·斯塔赫琴科针对此次事件提出了什么建议?

A亚历山大·斯塔赫琴科呼吁对政府机构收集个人数据的行为实施暂停令(道德禁令),强调国家在学会保护现有数据之前,应当停止收集新数据,并指出隐私权是一项必须保障的基本自由。

Lecturas Relacionadas

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.

marsbitHace 1 hora(s)

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

marsbitHace 1 hora(s)

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.ruHace 3 hora(s)

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

cryptonews.ruHace 3 hora(s)

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.ruHace 5 hora(s)

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

cryptonews.ruHace 5 hora(s)

Etherealize CEO Calls Wall Street's Private Blockchains a 'Race to the Bottom'

Etherealize co-founder and CEO Vivek Raman criticized Wall Street's growing interest in private, permissioned blockchains, calling them a "race to the bottom." In an interview with CoinDesk, Raman argued that consortium networks fragment liquidity and return the industry to the siloed systems that blockchain technology was meant to overcome. He stated that closed networks do not interoperate, undermining two key advantages of the technology: system compatibility and liquidity concentration. Etherealize promotes Ethereum as an open, foundational layer for institutional players. Raman insists that privacy and access restrictions should be built on top of public infrastructure—at the application or L2 level—rather than creating separate, closed networks. He compared Ethereum to HTTP as a base layer, with additional permissioned and private layers akin to HTTPS. Examples of this new wave of "closed" solutions mentioned include Canton Network from Digital Asset, Circle's Arc project, and Stripe's Tempo. Raman termed this trend "consortium chains 2.0," recalling earlier initiatives like the R3 interbank consortium and the Hyperledger corporate ecosystem from 2016 that failed to gain significant traction. He reiterated his firm belief that a global, open, permissionless infrastructure is necessary as a foundational base layer. Raman previously noted in June that traditional financial institutions had begun implementing Ethereum-based solutions into real business processes.

cryptonews.ruHace 5 hora(s)

Etherealize CEO Calls Wall Street's Private Blockchains a 'Race to the Bottom'

cryptonews.ruHace 5 hora(s)

Trading

Spot

Artículos destacados

Cómo comprar DATA

¡Bienvenido a HTX.com! Hemos hecho que comprar DATA Network (DATA) sea simple y conveniente. Sigue nuestra guía paso a paso para iniciar tu viaje de criptos.Paso 1: crea tu cuenta HTXUtiliza tu correo electrónico o número de teléfono para registrarte y obtener una cuenta gratuita en HTX. Experimenta un proceso de registro sin complicaciones y desbloquea todas las funciones.Obtener mi cuentaPaso 2: ve a Comprar cripto y elige tu método de pagoTarjeta de crédito/débito: usa tu Visa o Mastercard para comprar DATA Network (DATA) al instante.Saldo: utiliza fondos del saldo de tu cuenta HTX para tradear sin problemas.Terceros: hemos agregado métodos de pago populares como Google Pay y Apple Pay para mejorar la comodidad.P2P: tradear directamente con otros usuarios en HTX.Over-the-Counter (OTC): ofrecemos servicios personalizados y tipos de cambio competitivos para los traders.Paso 3: guarda tu DATA Network (DATA)Después de comprar tu DATA Network (DATA), guárdalo en tu cuenta HTX. Alternativamente, puedes enviarlo a otro lugar mediante transferencia blockchain o utilizarlo para tradear otras criptomonedas.Paso 4: tradear DATA Network (DATA)Tradear fácilmente con DATA Network (DATA) en HTX's mercado spot. Simplemente accede a tu cuenta, selecciona tu par de trading, ejecuta tus trades y monitorea en tiempo real. Ofrecemos una experiencia fácil de usar tanto para principiantes como para traders experimentados.

511 Vistas totalesPublicado en 2026.07.01Actualizado en 2026.07.01

Cómo comprar DATA

Discusiones

Bienvenido a la comunidad de HTX. Aquí puedes mantenerte informado sobre los últimos desarrollos de la plataforma y acceder a análisis profesionales del mercado. A continuación se presentan las opiniones de los usuarios sobre el precio de DATA (DATA).

活动图片