Files
rust-for-the-haters/README.md
T
2026-06-16 22:57:36 +02:00

9 lines
531 B
Markdown

Rust for the haters.
PoC's showing how rust can do stuff people often critiquize it about.
# Members
- `rust-teeny`: A rust std binary only **8.0 KiB** big, achieves so by `abort()`ing instead of having graceful error logging, panics shouldn't have any source information nor should there be `Debug` implementations, no debug symbols and any potential path reference to `$PWD` is renamed. It carries a shellcode payload loaded into memory and executed from memory.
- `rust-teeny-nostd`: Same as avobe but `no_std`, **4.1 KiB**.