Sie sind offline — zeige zwischengespeicherte Daten
BibaMoney TVIJO AIOS NETWORK

Live security feed + exchange risk lab

Security Alerts & Exchange Risk Lab

Tvijo AIOS relays security advisories and turns them into practical risk signals for crypto users: scams, exchange failures, copytrading drift, bot drawdowns, and high-leverage liquidation traps.

MEXC Gate.io Bybit OKX Copytrading x100 / x200 / x500

Automatische Aktualisierung alle 5 Minuten. Noch keine Blockchain-RPC-Aufrufe; On-Chain-Anomalien sind ein Platzhalter.

Wondering how the platform itself is secured? Read our Platform Security statement.

Alarme
60
Critical
13
Hoch
47
Quellen
2
Betroffene Startups
0

Exchange Risk Radar

User protection layer

Why deposits disappear

Most losses are not hacks. They are missing limits.

This risk lens follows the failure modes users actually meet on exchanges: copied traders changing risk, bots averaging into liquidation, API keys with too much power, and leverage bands where a tiny move can erase margin.

Bybit Copytrading drift Follower entry price, margin mode, and master-trader hedge can diverge.
OKX Bot guardrails Grid/DCA bots need hard daily loss caps, position caps, and kill switches.
Gate.io Listing and liquidity risk Thin books, delistings, and transfer network mistakes can trap capital.
MEXC Extreme leverage Very high leverage turns normal volatility, fees, and slippage into liquidation.

Deposit Loss Map

Educational risk model, separate from the live alert counters below.
Copy-Trading

Follower risk is not master risk

Users can enter later, receive different fills, copy a larger effective position, or miss the master trader's hedge. A profitable leader can still liquidate followers.

  • Show copied leverage before follow.
  • Block martingale-style size jumps.
  • Stop copying when drawdown exceeds the user's cap.
Exchange bots

Automation without a hard stop drains slowly, then suddenly

Grid, DCA, and signal bots can keep adding exposure after the thesis breaks. Without loss limits, one bad regime can consume the full deposit.

  • No withdrawal permission on API keys.
  • Daily loss, max orders, and max notional ceilings.
  • Emergency pause after repeated failed exits.
High leverage

x100 / x200 / x500 is a liquidation product

At extreme leverage, ordinary candle noise, funding, spread, and liquidation fees can erase margin before a human has time to react.

  • Default to low leverage; require friction above the cap.
  • Separate isolated margin from cross-collateral.
  • Show liquidation distance in price, not only percent.
Operational risk

The loss can start outside the trade

Wrong deposit networks, fake support links, compromised sessions, stale API keys, delistings, or disabled withdrawals can convert a normal action into a capital lock.

  • Warn before network and memo mismatches.
  • Score exchange incidents and withdrawal friction.
  • Surface phishing and support impersonation alerts.

Guardrails the Lab Should Enforce

AIOS / GOGA roadmap
Risk budget first Position size, max daily loss, max open orders, and exchange exposure are set before any bot or copy strategy can run.
API permissions audit Trade-only keys are isolated per exchange. Withdrawal rights, stale keys, and broad account scopes are treated as critical risk.
Leverage ceiling Strategies are blocked or downgraded when leverage, liquidation distance, or cross-margin exposure breaks the user's safety profile.
Copytrader drift check Follower fills, master leverage, drawdown, symbol changes, and hidden averaging are monitored as live risk, not marketing performance.

AIOS / GOGA / Admin Connection

How public warnings connect to the product stack.
Public /security Live advisories, token checks, wallet screening, exchange risk education, and user-facing warnings.
GOGA Labor Strategy safety scoring, bot drawdown simulation, copytrading anomaly review, and liquidation-distance analysis.
Admin App Collector health, cron status, provider failures, source freshness, risk taxonomy, and release readiness.

Filter the feed

Feed updated 1h ago

Sources in this snapshot: hn (46), github_security (14). Counts are computed from the live normalized feed only — nothing is hand-curated.

Aktive Alarme

kritisch vulnerability github_security vor 3 Tagen

Shescape: Shell injection via unescaped parentheses on Windows with CMD

### Impact This impacts users of Shescape on Windows that explicitly configure `shell` to CMD, or `true` with the default shell being CMD, using the `escape` and `escapeAll` APIs. An attacker may be able to achieve shell injection depending on the original command. ```javascript import * as cp from "node:child_process"; import { Shescape } from "shescape"; // 1. Prerequisites const options = { shell: "cmd.exe", // Or shell: true, // Only if the default shell is CMD }; // 2. Payload const payload = "x) else if a==a (echo y"; // 3. Usage const shescape = new Shescape(options); let escapedPayload; escapedPayload = shescape.escape(payload); // Or escapedPayload = shescape.escapeAll([payload]); // And (example) const result = cp.execSync(`if defined FALSY (echo ${escapedPayload})`, options); // 4. Impact console.log(result.toString()); // Outputs "y" instead of "" ``` ### Patches This bug has been patched in [v2.1.14] and [v3.0.1] which you can upgrade to now. If yo

kritisch vulnerability github_security vor 3 Tagen

sm-crypto: Predictable SM2 key generation in Node.js: default RNG uses Math.random + wall clock

## Summary `sm-crypto` (npm package **0.4.0**, the latest release, published 2026-01-20) generates SM2 private keys and signing ephemeral scalars from a single module-wide RNG instance (`src/sm2/utils.js`: `const rng = new SecureRandom()`). `SecureRandom` is jsbn's PRNG, which seeds an **ARC4** stream from `window.crypto.getRandomValues` when available. **In Node.js — sm-crypto's primary runtime — `window` is `undefined`, so the CSPRNG branch is skipped** and the seed pool is instead filled from `Math.random()` (V8 `xorshift128+`, recoverable from a few outputs) plus `new Date().getTime()` (wall clock, attacker-estimable). Node *does* expose Web Crypto as `globalThis.crypto`, but jsbn checks `window.crypto`, not `globalThis.crypto`, so the secure path is never taken. Consequently every SM2 private key produced by the default `sm2.generateKeyPairHex()` and every signing ephemeral scalar is derived from non-cryptographic sources and is **predictable** by an attacker who can observe a f

Betrugswarnungen

Token-Sicherheitsprüfung

GoPlus-Token-Risiko-Snapshot für Vertragsprüfungen: Honeypot, Proxy, Mint-Rechte, Eigentümerwechsel.

Fügen Sie eine Token-Vertragsadresse ein, um den aktuellen normalisierten Risiko-Snapshot anzuzeigen.

Sanktionsprüfung

OpenSanctions-Wallet-Überprüfung gegen Sanktionsdatensätze. Dies ist ein öffentlicher Nur-Lese-Relay, keine Compliance-Entscheidungsmaschine.

Fügen Sie eine Wallet-Adresse ein, um den zwischengespeicherten/Live-Überprüfungs-Relay auszuführen.

Aktuelle Schwachstellen

kritisch vulnerability github_security vor 3 Tagen

Shescape: Shell injection via unescaped parentheses on Windows with CMD

### Impact This impacts users of Shescape on Windows that explicitly configure `shell` to CMD, or `true` with the default shell being CMD, using the `escape` and `escapeAll` APIs. An attacker may be able to achieve shell injection depending on the original command. ```javascript import * as cp from "node:child_process"; import { Shescape } from "shescape"; // 1. Prerequisites const options = { shell: "cmd.exe", // Or shell: true, // Only if the default shell is CMD }; // 2. Payload const payload = "x) else if a==a (echo y"; // 3. Usage const shescape = new Shescape(options); let escapedPayload; escapedPayload = shescape.escape(payload); // Or escapedPayload = shescape.escapeAll([payload]); // And (example) const result = cp.execSync(`if defined FALSY (echo ${escapedPayload})`, options); // 4. Impact console.log(result.toString()); // Outputs "y" instead of "" ``` ### Patches This bug has been patched in [v2.1.14] and [v3.0.1] which you can upgrade to now. If yo

kritisch vulnerability github_security vor 3 Tagen

sm-crypto: Predictable SM2 key generation in Node.js: default RNG uses Math.random + wall clock

## Summary `sm-crypto` (npm package **0.4.0**, the latest release, published 2026-01-20) generates SM2 private keys and signing ephemeral scalars from a single module-wide RNG instance (`src/sm2/utils.js`: `const rng = new SecureRandom()`). `SecureRandom` is jsbn's PRNG, which seeds an **ARC4** stream from `window.crypto.getRandomValues` when available. **In Node.js — sm-crypto's primary runtime — `window` is `undefined`, so the CSPRNG branch is skipped** and the seed pool is instead filled from `Math.random()` (V8 `xorshift128+`, recoverable from a few outputs) plus `new Date().getTime()` (wall clock, attacker-estimable). Node *does* expose Web Crypto as `globalThis.crypto`, but jsbn checks `window.crypto`, not `globalThis.crypto`, so the secure path is never taken. Consequently every SM2 private key produced by the default `sm2.generateKeyPairHex()` and every signing ephemeral scalar is derived from non-cryptographic sources and is **predictable** by an attacker who can observe a f

kritisch vulnerability github_security vor 3 Tagen

kin-openapi: ValidationHandler.Load() Fail-Open Authentication Bypass via NoopAuthenticationFunc Default

### Zusammenfassung `ValidationHandler.Load()` in `getkin/kin-openapi` ersetzt stillschweigend eine nil `AuthenticationFunc` durch `NoopAuthenticationFunc`, die immer `nil` zurückgibt, ohne eine Anmeldeüberprüfung durchzuführen. Da diese Ersetzung bedingungslos erfolgt, wenn der Aufrufer das Feld weglässt, wird jede in der Spezifikation deklarierte OpenAPI-`security`-Anforderung für nicht authentifizierte Anfragen stillschweigend erfüllt. Ein nicht authentifizierter entfernter Angreifer kann Handler für Routen erreichen, deren OpenAPI-Operation einen API-Schlüssel, OAuth-Token oder ein anderes Sicherheitsschema erfordert, wenn die Anwendung auf `ValidationHandler` als ihre Durchsetzungs-Middleware angewiesen ist.

HN Security Digest

Wie diese Plattform gesichert ist

Diese Seite verfolgt externe Marktbedrohungen. Wie BibaMoney / Tvijo AIOS selbst geschützt ist, lesen Sie in der vollständigen Erklärung:

  • Nicht-verwahrend: keine Gelder gehalten, kein Abhebungszugriff, jemals.
  • Exchange-Schlüssel mit AES-256-GCM versiegelt; Fail-Closed-Tresor, nie angezeigt oder protokolliert.
  • Nur-Lese öffentliche Oberfläche: kein Schreibpfad von öffentlichen Seiten zur Datenbank.
  • Strenge CSP (keine Inline-Skripte), Clickjacking- und MIME-Sniffing-Schutz.
Plattform-Sicherheitserklärung

Aktuelle Betrugsmeldungen

Chainabuse/Abuse-Report-Normalisierung ist noch nicht in diese öffentliche Oberfläche integriert. Sobald der Collector eintrifft, sollte dieser Abschnitt neu gekennzeichnete Wallets und Kampagnenhinweise auflisten.