๐ What Is It?
Misinformation is the risk that a model produces false, misleading, or fabricated information and presents it as credible. The output is fluent, confident, and well-formatted โ which is exactly what makes it dangerous; a hallucinated case citation looks identical to a real one. The 2025 edition merges the old hallucination and overreliance entries because they are two halves of one failure: Misinformation = Ungrounded Generation + Unverified Consumption. Neither half harms alone โ a caught hallucination is a non-event. Harm occurs where an ungrounded generation meets an unverifying consumer.
โ ๏ธ Failure & Attack Patterns
- Factual hallucination: confident wrong dates, invented statistics, misattributed quotes.
- Fabricated citations: plausible authors, DOIs, and case numbers with no real referent.
- Package hallucination (slopsquatting): a suggested library that doesn't exist; attackers register the name โ supply-chain compromise.
- Non-existent/misdescribed APIs: an invented security flag that silently does nothing.
- Poisoned retrieval (RAG): confident answer grounded in planted falsehood.
- Overconfident tone: fluency, tables, and citations raise trust without raising truth.
๐ The Overreliance Multiplier
Every fabrication is only as dangerous as the trust placed in it. Overreliance is driven by:
- Automation bias: people defer to a confident machine.
- Fluency bias: well-written text reads as more credible.
- Throughput pressure: verification is slower than accepting the answer.
You rarely fix this by "fixing the model" โ you break the chain: ground at generation, verify before consumption.
๐ด From Token to Incident
โ
2. Generation โ model emits the most plausible continuation (may be fabricated)
โ
3. Presentation โ rendered fluently, with formatting, citations, confident tone
โ
4. Consumption โ human/system accepts it WITHOUT verification (overreliance)
โ
5. IMPACT: bad decision, insecure code, supply-chain compromise!
โ Vulnerable Code (slopsquatting)
โ Secure Code (dependency vetting)
โ Prevention Checklist
- Ground factual answers in a trusted corpus (RAG), temp 0, refuse on no context
- Restrict citations to retrieved source IDs; resolve DOIs/URLs before trusting
- Vet AI-suggested dependencies (existence + age + allow-list); pin and hash
- Validate records against a schema and the real system of record
- Self-consistency / verifier pass on high-value outputs
- Mandatory expert review for legal/medical/financial/safety domains
- Honest UX: show sources, confidence labels, disclaimers; allow "I don't know"
- Train users that fluency is not accuracy โ verify code, citations, deps
- Log, collect feedback, red-team for fabrication, alert on drift