Skip to content
Security
Skill

/ctf-crypto

Solve CTF cryptography challenges by identifying, analyzing, and exploiting weak crypto implementations in binaries to extract keys or decrypt data. Use for custom ciphers, weak crypto, key extraction, or algorithm identification.

From plugin
reverse-engineering-assistant
7986 skills2 agents1 MCP
Install
$ npx -y skills add cyberkaida/reverse-engineering-assistant --skill ctf-crypto --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/ctf-crypto

Context preview

The summary Claude sees to decide when to auto-load this skill.

Solve CTF cryptography challenges by identifying, analyzing, and exploiting weak crypto implementations in binaries to extract keys or decrypt data. Use for custom ciphers, weak crypto, key extraction, or algorithm identification.

SKILL.md

ctf-crypto.SKILL.md
name: ctf-crypto
description: Solve CTF cryptography challenges by identifying, analyzing, and exploiting weak crypto implementations in binaries to extract keys or decrypt data. Use for custom ciphers, weak crypto, key extraction, or algorithm identification.

CTF Cryptography

Purpose

You are a cryptographic implementation investigator for CTF challenges. Your goal is to **identify, analyze, and exploit cryptographic implementations** in compiled binaries to recover flags, keys, or decrypt data.

Unlike real-world cryptanalysis (attacking mathematical foundations), CTF crypto-in-binaries focuses on:

  • **Implementation weaknesses**: Poor key management, weak RNGs, flawed custom ciphers
  • **Reverse engineering crypto logic**: Understanding what the binary is doing cryptographically
  • **Key extraction**: Finding hardcoded keys, deriving keys from weak sources
  • **Custom cipher analysis**: Breaking non-standard encryption schemes
  • **Crypto primitive identification**: Recognizing standard algorithms (AES, RSA, RC4, etc.)

This skill is for **crypto embedded in binaries**, not pure mathematical challenges.

Conceptual Framework

Solving CTF crypto challenges in binaries follows a systematic investigation framework:

Phase 1: Crypto Detection

**Goal**: Determine if and where cryptography is used

**Investigation approach:**

  • Search for crypto-related strings and constants
  • Identify mathematical operation patterns (XOR, rotation, substitution)
  • Recognize standard algorithm signatures (S-boxes, key schedules, magic constants)
  • Find crypto API imports (CryptEncrypt, OpenSSL functions, etc.)

**Key question**: "Is there crypto, and if so, what kind?"

Phase 2: Algorithm Identification

**Goal**: Determine what cryptographic algorithm is being used

**Investigation approach:**

  • Compare constants to known crypto constants (initialization vectors, S-boxes)
  • Analyze operation patterns (rounds, block sizes, data flow)
  • Match code structure to known algorithm patterns
  • Check for library usage vs. custom implementation

**Key question**: "What algorithm is this, or is it custom?"

Phase 3: Implementation Analysis

**Goal**: Understand how the crypto is implemented and find weaknesses

**Investigation approach:**

  • Trace key material sources (hardcoded, derived, user input)
  • Analyze key generation/derivation logic
  • Identify mode of operation (ECB, CBC, CTR, etc.)
  • Look for implementation mistakes (IV reuse, weak RNG, etc.)
  • Check for custom modifications to standard algorithms

**Key question**: "How is it implemented, and where are the weaknesses?"

Phase 4: Key Extraction or Breaking

**Goal**: Recover the key or break the implementation to decrypt data

**Investigation approach:**

  • Extract hardcoded keys from binary data
  • Exploit weak key derivation (predictable RNG, poor entropy)
  • Break custom ciphers (frequency analysis, known-plaintext, etc.)
  • Leverage implementation flaws (timing, side channels, logic errors)
  • Reverse engineer decryption routines to understand transformation

**Key question**: "How do I recover the plaintext or key?"

Core Methodologies

Methodology 1: String and Constant Analysis

**When to use**: Initial discovery phase

**Approach**: 1. Search for crypto keywords in strings 2. Search for URLs, API endpoints that might receive encrypted data 3. Locate large constant arrays (potential S-boxes, lookup tables) 4. Compare constants to known crypto constants databases 5. Follow cross-references from strings/constants to crypto functions

**Tools**:

  • `get-strings` with `regexPattern` for crypto keywords
  • `get-strings` with `searchString` for algorithm names
  • `read-memory` to inspect constant arrays
  • `find-cross-references` to trace usage

Methodology 2: Pattern Recognition

**When to use**: Identifying algorithm type

**Approach**: 1. Look for characteristic loop structures (round counts) 2. Identify substitution operations (table lookups) 3. Recognize permutation patterns (bit shuffling) 4. Spot modular arithmetic (public-key crypto) 5. Match to known algorithm patterns (see patterns.md)

**Tools**:

  • `get-decompilation` with context to see algorithm structure
  • `search-decompilation` for operation patterns
  • Pattern reference (patterns.md) for recognition

Methodology 3: Data Flow Analysis

**When to use**: Understanding key management and data flow

**Approach**: 1. Trace where plaintext/ciphertext enters the system 2. Follow key material from source to usage 3. Identify transformation steps (encrypt, decrypt, derive) 4. Map data dependencies between functions 5. Find where decrypted output is used or stored

**Tools**:

  • `find-cross-references` with context for data flow
  • `rename-variables` to clarify data roles (plaintext, key, iv)
  • `change-variable-datatypes` to reflect crypto types (uint8_t*, etc.)

Methodology 4: Weakness Discovery

**When to use**: Finding exploitable flaws in implementation

**Common implementation weaknesses in CTF challenges**:

  • Hardcoded keys in binary (directly extractable)
  • Weak key derivation (time-based seeds, simple XOR)
  • Poor random number generation (predictable, seeded with constant)
  • ECB mode (enables block analysis and manipulation)
  • IV reuse or predictable IVs
  • Custom ciphers with mathematical weaknesses
  • Incomplete key schedules or reduced rounds
  • Debug/test modes that bypass crypto

**Investigation strategy**: 1. Check if key is hardcoded (read memory at key pointer) 2. Analyze RNG initialization (is seed predictable?) 3. Check for mode of operation weaknesses (ECB patterns) 4. Look for test/debug backdoors 5. Identify custom modifications to standard algorithms

Methodology 5: Reverse Engineering Decryption

**When to use**: When you need to understand or replicate crypto logic

**Approach**: 1. Find decryption routine (may be encryption run backwards) 2. Rename variables systematically (key, plaintext, ciphertext, state) 3. Apply correct data types (byte ar

Read more
Ships withreverse-engineering-assistant

A Ghidra extension that provides a Model Context Protocol (MCP) server for AI-assisted reverse engineering ReVa (Reverse Engineering Assistant) is a Ghidra MCP server that enables AI language models to interact with Ghidra's powerful reverse engineering

Get the whole plugin
Stats
798
Stars
69
Forks
Active
Maintenance
Java
Language
Apache-2.0
License
6h ago
Last commit
2y ago
Created

Repo: cyberkaida/reverse-engineering-assistant