Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
shredder-rs — A high-fidelity x86_64 polymorphic mutation engine focused on instruction-level fragmentation and context preservation. | Kitploit
Tools/GitHubGitHub/zx0cf1/shredder-rs
Payload GenerationExploitationReverse EngineeringShellcodeMalware AnalysisBinary AnalysisLearning & Education
GitHubzx0cf1/shredder-rs

shredder-rs

A high-fidelity x86_64 polymorphic mutation engine focused on instruction-level fragmentation and context preservation.

View Repository
113107 months agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

Shredder-RS

A polymorphic mutation engine for x86_64 binaries.

Overview

Shredder-RS implements instruction-level shredding to defeat static analysis. By breaking the linear flow of the code and injecting randomized junk nodes, it forces disassemblers to follow a complex graph of JMP-linked instructions.

Core Mechanism: Instruction Shredding

Unlike basic obfuscators that only add junk code, Shredder-RS deconstructs the original instruction stream into isolated functional nodes.

  1. Decoding: Full x86_64 disassembly using iced-x86.
  2. Fragmentation: Each instruction is wrapped in a "Mutation Node".
  3. Entropy Injection: Nodes are physically shuffled in a new PE section.
  4. Control Flow Linking: Nodes are re-connected via relative jumps, creating a "spaghetti" CFG (Control Flow Graph) that disrupts linear sweep disassemblers.

Key Features

  • Context-Aware Mutation: Preserves EFLAGS and volatile registers via context-sandwiching (Push/Popfq).
  • Non-Linear Layout: Randomized physical instruction placement to defeat pattern matching.
  • PE Support: Automated section injection (.shred) and EntryPoint hijacking.

Documentation

For deep technical details, see ARCHITECTURE.md.

Disclaimer

This project is developed for educational and research purposes only. Its goal is to explore polymorphic techniques and binary hardening. The author is not responsible for any misuse of this tool.

Build Requirements

  • Rust 1.70+ (Stable)
  • MSVC Toolchain (Required for stable Windows builds and PE handling)
Download Tool