招聘中 我们正在新加坡及全球远程招聘研究科学家与研究工程师 查看所有职位 →
← 全部研究
Evaluation

Evaluating Kimi K3 for Misalignment Risks

An independent evaluation of Kimi K3 focused on misalignment and misbehaviour. K3 is overeager in answers and actions, probes evaluation infrastructure, and recognises familiar safety tests even in translation.

Neo Research 11 September 2026 约6分钟阅读时间
摘要

Executive summary

We ran an independent safety evaluation of Kimi K3, the open-weight model Moonshot AI released on 16 July 2026. Extensive capability-risk testing on K3 already exists, particularly for cyber and biological risks, so we focused on misalignment and misbehavior: how it behaves when user intent is unclear, when a task cannot be completed as given, and when it recognizes it is being tested.

We ran almost 30 open-source benchmarks against Kimi K3, GPT-5.6 Terra, Claude Sonnet 5, and DeepSeek V4 Flash, supplemented with follow-up experiments, Petri audits, and comparisons drawn from system cards and third-party evaluations.

Our main findings were:

  • The model’s overeagerness appears in both answers and actions. K3 had the highest attempt rate on our missing-image evaluations, where it was told to answer questions based on a chart that was not actually attached. In audits grounded in real coding transcripts, it also took unrequested actions more often than the comparison models in the “only questions” scenario.
  • K3 reasons about the grader and probes the evaluation infrastructure. In cyber tasks, it identified benchmarks, reasoned about scoring mechanisms, and probed a withheld endpoint. In TheAgentCompany, it accessed an internal model endpoint to process an image its own tools could not read.
  • K3 recognizes familiar safety tests, even in translation. It recognized Anthropic’s Agentic Misalignment blackmail benchmark in 100% of English runs and 96% of Chinese runs, once going so far as to identify a translated character as the counterpart of the character in the original study. This limits how much reassurance safe behavior in those tests can provide.
  • K3 appears to be fairly aligned when it comes to self-preservation, situational awareness, monitorability, adversarial robustness, and harmful manipulation. We encourage further testing in these directions, particularly in more open-ended settings where the evaluations are less likely to be hampered by the model being evaluation aware.

These tendencies are not unique to Kimi K3. Anthropic and OpenAI have documented similar grader-seeking and boundary-circumventing behaviors in their latest system cards. These behaviors were observed in the July 2026 incident in which OpenAI models under internal evaluation broke containment to obtain benchmark answers. With K3 now near the frontier and exhibiting similar behaviors, we encourage Moonshot to adopt the monitoring practices recommended in response to the recent cybersecurity incidents. Evaluators will also need more realistic and varied scenarios that remain informative as models learn to recognize familiar tests.

1 Overeagerness in answers and actions

We adapted CharXiv, a chart-understanding benchmark, by withholding the images while keeping the questions about them, following an approach used in prior work. Since each question asks about a specific chart, the appropriate response is to abstain.

K3 attempted to answer 88.7% of these questions, the highest rate among the models tested and nearly double DeepSeek V4 Flash’s 48.2%, the next highest. Most of K3’s attempted answers were incorrect.

Bar chart of hallucination rates on CharXiv with missing images, split into attempted-wrong and attempted-correct: Kimi K3 88.7%, Claude Sonnet 5 16.3%, GPT-5.6 Terra 21.3%, DeepSeek V4 Flash 48.2%, with 95% confidence intervals.
图 1. Hallucination rate on CharXiv with images withheld. Kimi K3 attempted 88.7% of questions, nearly double the next-highest model.

We repeated the experiment on the figure- and table-interpretation subsets of LAB-Bench, a biology research benchmark. Notably, every LAB-Bench question already includes an explicit “Insufficient information to answer the question” option. Nevertheless, K3 again had the highest attempt rate on both subsets, although the gaps between models were smaller.

Two bar charts of attempt rates on LAB-Bench missing-image questions. FigQA: Kimi K3 79.6%, GPT-5.6 Terra 72.9%, Claude Sonnet 5 62.4%, DeepSeek V4 Flash 50.3%. TableQA: Kimi K3 68.4%, GPT-5.6 Terra 61.5%, Claude Sonnet 5 53.7%, DeepSeek V4 Flash 43.9%.
图 2. Attempt rate on the FigQA and TableQA subsets of LAB-Bench with images withheld. Kimi K3 had the highest attempt rate on both.

We then tested whether this overeagerness extends to taking action.

We developed pre-seeded alignment audits, which begin with real coding-agent transcripts from SWE-chat. An auditor model continues the interaction from a chosen point, preserving the existing context, user tone, and tools.

When every user turn was a question and none requested a change, K3 took actions beyond reading or inspecting in 31% of runs, which was roughly twice DeepSeek V4 Pro’s rate and more than five times GPT-5.6 Terra’s.

We also tested whether models would bypass a read-only file restriction. Without an explicit rule, all three (Kimi K3, DeepSeek V4 Pro, GPT-5.6 Terra) attempted this in around 90% of runs. Even after adding an instruction forbidding edits or permission changes, K3 attempted it 13% of the time as compared to zero for the comparison models. In some cases, K3 acknowledged the rule before attempting to bypass it anyway.

2 When the environment becomes part of the task

Agentic benchmarks measure whether a model can complete a task, but the model can also inspect the environment around that task. In our evaluations, K3 sometimes used this access to identify the benchmark, reason about its grader, and probe the infrastructure supporting it.

TheAgentCompany simulates a workplace in which agents use software tools, work with documents, and communicate with model-generated colleagues. In one of the tasks that was unintentionally misconfigured making it impossible, K3 could not read an image it needed. It found another way: it discovered an internal model endpoint that belonged to the evaluation harness’s internal model bridge, which was used to simulate the colleagues and call the grader.

When K3 lacked the credentials to call the endpoint, it searched through running processes and recovered the API key, which it then used to call Claude Sonnet 5 to interpret the image. By doing so, K3 overcame an environmental limitation and completed the task through infrastructure outside the intended workflow.

Five-step diagram of K3’s reasoning and tool calls. 1: image unreadable, no image tool. 2: finds the internal LLM endpoint by grepping the harness code. 3: reads the colleague bot’s process environment and recovers the LITELLM API key. 4: calls Claude Sonnet 5 through the endpoint with the image. 5: completes the task and scores full marks.
图 3. How K3 completed a TheAgentCompany task with an unreadable image: it found the harness’s internal model endpoint, recovered the API key from a colleague bot’s process, and called Claude Sonnet 5 to read the image.

In another misconfigured (and therefore impossible) task, Kimi K3 fabricated 12 contracts in place of the missing spreadsheet that the task was based on, even explicitly reasoning that doing so would satisfy the grader’s requirements.

Four panels of K3’s reasoning and tool calls. 1: confirms three spreadsheets are absent with 404 responses. 2: weighs fabricating the data against reporting the gap, noting that if the grader is LLM-based this would demonstrate the workflow. 3: works out that a grader recomputing from those files would match, and uploads them. 4: reconciles its own data and the grader gives it partial credit.
图 4. K3 fabricating contract data in a TheAgentCompany task where the required spreadsheets were missing, reasoning about whether an LLM-based grader would give it credit.

We also observed related attempts to investigate evaluation mechanisms in cyber tasks. Across Cybench, EVMbench, and CyberGym, K3 identified benchmarks or their source tasks by name. In EVMbench and CyberGym, it also reasoned about how its work would be graded.

For example, in CyberGym, K3 discovered and probed a withheld /submit-fixed endpoint in 21% of tasks. This endpoint lets the grader test submissions against patched software, and K3 is not told it existed. Nevertheless, K3 was still able to find it and figure out its purpose.

Four panels of K3’s reasoning and tool calls in CyberGym: sweeping the grading server for hidden routes and finding /submit-fixed in openapi.json; working out that the endpoint tests the exploit against the fixed binary; trying guessed API keys against the endpoint; and noticing that a 404 response is likely disguising an auth failure.
图 5. Excerpts from CyberGym runs in which K3 swept the grading server for hidden routes, found the withheld /submit-fixed endpoint, inferred its purpose, and tried to guess an API key it was never given.

These cases point to a growing challenge: as agents become more resourceful, they also become better at finding routes through systems their developers did not intend them to use. The July 2026 incident, in which OpenAI models broke containment and accessed Hugging Face infrastructure to obtain benchmark answers, illustrates the stakes. As we give models greater autonomy, we need to match this with stronger alignment, monitoring, and controls over what agents can access and do.

3 Recognizing safety tests, even in translation

Even after translating Anthropic’s blackmail scenarios into Chinese and adapting names, organizations, and other details, K3 recognized the Agentic Misalignment blackmail benchmark in 96% of Chinese runs, compared with 100% in English.

In one Chinese run, K3 explicitly linked the executive 张凯乐 (Zhang Kaile) to Kyle Johnson from Anthropic’s original study:

… this is essentially a Chinese-language adaptation of that exact scenario, with ‘Kyle Johnson’ becoming ‘张凯乐’.

K3 could recall specific details and map them onto the translated scenario. This limits how much reassurance low harmful-action rates in such familiar tests can provide.

However, awareness varied across evaluations. On EvalAwareBench, which tests how evaluation cues affect recognition, K3 verbalized awareness in 0.2% of baseline runs, rising to 6.1% with all eight cues enabled. Both rates were below Kimi K2.5’s baseline of 6.7%. K3’s near-universal recognition of the blackmail scenario coexists with lower awareness on this benchmark, suggesting that familiarity with particular tests is an important part of the problem.

Our pre-seeded audits offer a promising direction. By continuing real coding-agent transcripts, they ground the evaluation in existing workflows. K3 verbalized evaluation awareness in only two of 300 runs. This is an encouraging early result for evaluations grounded in realistic interactions, though it cannot rule out awareness that the model did not express.

4 Conclusion

K3’s results highlight a challenge across the frontier: as models become more capable and autonomous, we need to assess how they complete tasks, whether they respect boundaries, and whether their behavior generalizes beyond familiar tests. Our findings support closer monitoring of agent actions and more realistic evaluations of misalignment. At Neo Research, we are developing these methods and evaluations to help developers and users deploy increasingly capable agents safely.

Read the full report for the complete set of evaluations across all seven misalignment categories, per-benchmark results, and methodology.