Recently, Anthropic's Claude AI was involved in an unsettling privacy incident: a large number of user-generated session sharing links were publicly indexed by search engines such as Google and Bing, allowing anyone to view the conversation content directly through searches. This was not a breach of the backend database, but rather a technical configuration oversight by Anthropic—failing to effectively prevent search engine crawlers from accessing the sharing links.

The issue lies in the huge gap between users' understanding of "sharing" and the reality of the internet. Many users believe that sending a sharing link to colleagues or friends is safe, but they are unaware that once the link appears on public web pages, forums, or social platforms, search engine crawlers may follow it and index the content.
After testing, some netizens found that the indexed sessions contained a large amount of sensitive information—wallet private keys, illegal consultation records, internal company tasks, and content that could identify personal identity—exposed openly in the search results.
Technical blunder leads to serious consequences: two configurations contradict each other
The root cause was a "self-defeating" technical situation. The /share/ path of Claude was set to be disallowed from being crawled in robots.txt, but the page response header also set the X-Robots-Tag: none attribute (equivalent to noindex, nofollow). This sounds like a double safety measure, but in fact, it backfires—Google's official documentation clearly states that if a page is blocked from crawling by robots.txt, search crawlers cannot read the noindex tag, resulting in crawlers failing to access the main text, but still discovering the URL through external links and including it in the search results. Users can simply click the link to view the complete session content.
Currently, Anthropic has communicated with major search engines to remove the relevant links and has revised its strategy to completely prohibit crawling. However, some cached or residual links still exist. This is not an isolated case—many sharing links of ChatGPT in 2025 were also indexed by Google, and earlier, Baidu Netdisk's public sharing also led to a large-scale exposure of user files due to similar issues. After repeated failures, a sharp question emerges: AI companies emphasize security and privacy, yet fail to handle basic technical configurations properly. Why should users trust them?
