ctf-misc

Solve miscellaneous CTF challenges with decoding, sandbox escapes, and constraint solving.

96|1|Updated Jun 4, 2026
One-click install
npx skills add https://github.com/langbyyi/CyberStrikeAI-SRC --skill ctf-misc-langbyyi
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: ctf-misc
Source: https://github.com/langbyyi/CyberStrikeAI-SRC/tree/main/skills/ctf-misc
Command: npx skills add https://github.com/langbyyi/CyberStrikeAI-SRC --skill ctf-misc-langbyyi

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

CTF challenges that don't fit standard categories like web, pwn, reverse, or crypto often require obscure techniques spanning encoding, sandbox escapes, and constraint solving. This skill provides a comprehensive fallback reference for these edge-case puzzles, eliminating the need to search across disparate resources during competitions.

Core Features & Use Cases

  • Encoding & Steganography: Decode Base64, Base32, hex, QR codes, Unicode steganography, and multi-layer encoding chains.
  • Sandbox Escapes: Bypass Python jails, bash restricted shells, vim jails, and custom language sandboxes using class hierarchy traversal and AST bypasses.
  • Constraint Solving & Games: Use Z3 for SAT problems, solve nonograms and De Bruijn sequences, brute-force Brainfuck validators, and exploit game theory vulnerabilities.
  • Use Case: During a CTF, you encounter a challenge with a Python jail that restricts imports and string concatenation. Use this skill to access os.system via class hierarchy traversal and retrieve the flag.

Quick Start

Use the ctf-misc skill to analyze the provided challenge files and identify the appropriate decoding or escape technique for the edge-case puzzle.

Frequently Asked Questions about ctf-misc

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I bypass a Python jail that restricts imports and string concatenation?

Bypass a Python jail by leveraging class hierarchy traversal to access os.system, executing commands to retrieve the flag without standard imports or string operations.

What is the best way to solve multi-layer encoding chains and steganography puzzles in CTF?

Decode multi-layer encoding chains by applying Base64, Base32, hex, QR, and Unicode steganography techniques iteratively to reveal hidden message payloads.

How does Z3 constraint solving work for nonograms and game theory CTF challenges?

Z3 constraint solving models nonograms, De Bruijn sequences, and game theory vulnerabilities as SAT problems, brute-forcing logical constraints to extract valid solutions.

Do I need to install pwntools and z3-solver to solve miscellaneous CTF puzzles?

Optional tools like z3-solver, pwntools, dnslib, and ffmpeg extend functionality for constraint solving, DNS exploitation, and signal processing, requiring Bash and Python 3.

What techniques help escape bash restricted shells and vim jails during sandbox exploitation?

Escape bash restricted shells and vim jails using AST bypasses and custom language sandbox techniques to achieve arbitrary command execution within constrained environments.