一键导入
ctf-remote
Provides SSH and remote access techniques for CTF challenges. Use when connecting to remote Kali Linux or other CTF infrastructure.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Provides SSH and remote access techniques for CTF challenges. Use when connecting to remote Kali Linux or other CTF infrastructure.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Provides cryptography attack techniques for CTF challenges. Use when attacking encryption, hashing, signatures, ZKP, PRNG, or mathematical crypto problems involving RSA, AES, ECC, lattices, LWE, CVP, number theory, Coppersmith, Pollard, Wiener, padding oracle, GCM, key derivation, or stream/block cipher weaknesses.
Provides digital forensics and signal analysis techniques for CTF challenges. Use when analyzing disk images, memory dumps, event logs, network captures, cryptocurrency transactions, steganography, PDF analysis, Windows registry, Volatility, PCAP, Docker images, coredumps, side-channel power traces, DTMF audio spectrograms, packet timing analysis, CD audio disc images, or recovering deleted files and credentials.
Provides malware analysis and network traffic techniques for CTF challenges. Use when analyzing obfuscated scripts, malicious packages, custom crypto protocols, C2 traffic, PE/.NET binaries, RC4/AES encrypted communications, YARA rules, shellcode analysis, memory forensics for malware (Volatility malfind, process injection detection), anti-analysis techniques (VM/sandbox detection, timing evasion, API hashing, process injection, environment checks), or extracting malware configurations and indicators of compromise.
Provides miscellaneous CTF challenge techniques. Use for encoding puzzles, RF/SDR signal processing, Python/bash jails, DNS exploitation, unicode steganography, floating-point tricks, QR codes, audio challenges, Z3 constraint solving, Kubernetes RBAC, WASM game patching, esoteric languages, game theory, commitment schemes, combinatorial games, or challenges that don't fit other categories.
Provides open source intelligence techniques for CTF challenges. Use when gathering information from public sources, social media, geolocation, DNS records, username enumeration, reverse image search, Google dorking, Wayback Machine, Tor relays, FEC filings, or identifying unknown data like hashes and coordinates.
Provides binary exploitation (pwn) techniques for CTF challenges. Use when exploiting buffer overflows, format strings, heap vulnerabilities (House of Orange, Spirit, Lore, Apple 2, Einherjar, tcache stashing unlink), race conditions, kernel bugs, ROP chains, ret2libc, ret2dlresolve, shellcode, GOT overwrite, use-after-free, seccomp bypass, FSOP, stack pivot, sandbox escape, Windows SEH overwrite, VirtualAlloc ROP, SeDebugPrivilege escalation, or Linux kernel exploitation (modprobe_path, tty_struct, userfaultfd, KASLR bypass, SLUB heap spray).
| name | ctf-remote |
| description | Provides SSH and remote access techniques for CTF challenges. Use when connecting to remote Kali Linux or other CTF infrastructure. |
| license | MIT |
| compatibility | Requires ssh client (OpenSSH), identity files, and network access to the target host. |
| allowed-tools | RunCommand Read Write Edit Glob Grep Task |
| metadata | {"user-invocable":"true","argument-hint":"[host] [command]"} |
This skill provides a standard way to connect to your remote CTF environment (Kali Linux).
Host: kong@myhost
Hostname: 192.168.6.128
IdentityFile: C:\Users\kongw\.ssh\id_ed25519
Options: -X (X11 Forwarding)
ssh -X -i C:\Users\kongw\.ssh\id_ed25519 -o IdentitiesOnly=yes kong@192.168.6.128
ssh -X -i C:\Users\kongw\.ssh\id_ed25519 -o IdentitiesOnly=yes kong@192.168.6.128 "ls -la"
# Upload
scp -i C:\Users\kongw\.ssh\id_ed25519 local_file kong@192.168.6.128:/home/kong/
# Download
scp -i C:\Users\kongw\.ssh\id_ed25519 kong@192.168.6.128:/home/kong/remote_file .
# Use wget on remote
ssh -i C:\Users\kongw\.ssh\id_ed25519 kong@192.168.6.128 "wget https://example.com/file -O /home/kong/file"
# Use curl on remote
ssh -i C:\Users\kongw\.ssh\id_ed25519 kong@192.168.6.128 "curl -L https://example.com/file -o /home/kong/file"
-X. Use this to run GUI tools from Kali on your local machine.C:\Users\kongw\.ssh\id_ed25519 exists and has correct permissions.tmux or screen on the remote host for persistent sessions.You can use the provided SSH config snippet to simplify commands. See resources/ssh_config.