Skip to content

Commit 868aa38

Browse files
authored
Merge pull request #1702 from walterhpearce/master
Add blog post for crates.io incident on 24.09.25
2 parents 4df7f61 + ad3e5e7 commit 868aa38

File tree

1 file changed

+54
-0
lines changed

1 file changed

+54
-0
lines changed
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
+++
2+
path = "2025/09/24/crates.io-malicious-crates-fasterlog-and-asyncprintln"
3+
title = "crates.io: Malicious crates faster_log and async_println"
4+
authors = ["Walter Pearce"]
5+
6+
[extra]
7+
team = "the crates.io team"
8+
team_url = "https://www.rust-lang.org/governance/teams/dev-tools#team-crates-io"
9+
+++
10+
11+
## Summary
12+
13+
On September 24th, the crates.io team was notified by Kirill Boychenko from the [Socket Threat Research Team][socket] of two malicious crates which were actively searching file contents for Etherum private keys, Solona private keys, and arbitrary byte arrays for exflitration.
14+
15+
These crates were:
16+
- `faster_log` - Published on May 25th, 2025, downloaded 7181 times
17+
- `async_println` - Published on May 25th, 2025, downloaded 1243 times
18+
19+
The malicious code was executed at runtime, when running or testing a project depending on them. Notably, they did not execute any malicious code at build time. Except for their malicious payload, these crates copied the source code, features, documentation of legitimate crates, using a similiar name to them (a case of typosquatting[^typosquatting]).
20+
21+
22+
## Actions taken
23+
24+
The user in question was immediately disabled, and the crates in question were deleted[^deletion] from crates.io shortly after. We have retained copies of all logs associated with the users and the malicious crate files for further analysis.
25+
26+
The deletion was performed at 15:34 UTC on September 24, 2025.
27+
28+
## Analysis
29+
30+
Both crates were copies of a crate which provided logging functionality, and the logging implementation remained functional in the malicious crates. The original crate had a feature which performed log file packing, which iterated an associated directories files.
31+
32+
The attacker inserted code to perform the malicious action during a log packing operation, which searched the log files being processed from that directory for:
33+
34+
- Quoted Ethereum private keys (0x + 64 hex)
35+
- Solana-style Base58 secrets
36+
- Bracketed byte arrays
37+
38+
The crates then proceeded to exflitrate the results of this search to `https://mainnet[.]solana-rpc-pool[.]workers[.]dev/`.
39+
40+
These crates had no dependenant downstream crates on crates.io.
41+
42+
The malicious users associated with these crates had no other crates or publishes, and the team is actively investigating associative actions in our retained[^retention] logs.
43+
44+
## Thanks
45+
46+
Our thanks to Kirill Boychenko from the [Socket Threat Research Team][socket] for reporting the crates. We also want to thank Carol Nichols from the crates.io team, Pietro Albini from the Rust Security Response WG and Walter Pearce from the [Rust Foundation][foundation] for aiding in the response.
47+
48+
[^deletion]: The crates were preserved for future analysis should there be other attacks, and to inform scanning efforts in the future.
49+
[^retention]: One year of logs are retained on crates.io, but only 30 days are immediately available on our log platform. We chose not to go further back in our analysis, since IP address based analysis is limited by the use of dynamic IP addresses in the wild, and the relevant IP address being part of an allocation to a residential ISP.
50+
[^typosquatting]: typosquatting is a technique used by bad actors to initiate dependency confusion attacks where a legitimate user might be tricked into using a malicious dependency instead of their intended dependency — for example, a bad actor might try to publish a crate at `proc-macro3` to catch users of the legitimate `proc-macro2` crate.
51+
52+
[foundation]: https://foundation.rust-lang.org/
53+
[init]: https://foundation.rust-lang.org/news/2022-09-13-rust-foundation-establishes-security-team/
54+
[socket]: https://www.socket.dev/

0 commit comments

Comments
 (0)