dslsdzc

60 mods across 1 repository, 35 stars between them.

re-crypto-decrypt

25

dslsdzc/rev-skills

Skill Claude CodeCodex

A process for turning encrypted data, such as files, traffic, or configuration blobs, back into readable data when the algorithm and key are known. It can also reconstruct the program’s decryption logic as a separate script.

35 +14 4d ago A 42 tokens original Apache-2.0

re-crypto-id

26

dslsdzc/rev-skills

Skill Claude CodeCodex

A static-analysis guide for identifying unknown encryption algorithms from ciphertext, constants, and custom transformations such as XOR or bit rotations.

35 +14 4d ago A 44 tokens original Apache-2.0

re-crypto-keys

27

dslsdzc/rev-skills

Skill Claude CodeCodex

A process for finding encryption keys and passwords in a program, its resources, or its memory. It covers hard-coded values and keys derived while the program runs.

35 +14 4d ago A 41 tokens original Apache-2.0

re-ctf

28

dslsdzc/rev-skills

Skill Claude CodeCodex

A workflow for solving capture-the-flag (CTF) challenges, which are security puzzles that usually require finding a hidden flag in a program or data. It helps choose between manual analysis, automated program exploration, mathematical solving, and code deobfuscation.

35 +14 4d ago A 124 tokens original Apache-2.0

re-deobfuscate

29

dslsdzc/rev-skills

Skill Claude CodeCodex

A guide for undoing code obfuscation, which deliberately makes program logic harder to read through misleading instructions, flattened control flow, or encrypted strings.

35 +14 4d ago A 51 tokens original Apache-2.0

re-disk-forensics

30

dslsdzc/rev-skills

Skill Claude CodeCodex

A read-only process for examining disk images or storage media to recover deleted files, rebuild timelines, and find suspicious remnants. A disk image is a file that represents the contents of a drive, while E01 is a common forensic image format.

35 +14 4d ago A 50 tokens original Apache-2.0

re-doc-malware

31

dslsdzc/rev-skills

Skill Claude CodeCodex

A guide to analyzing suspicious PDF, Office, and RTF files, including documents with macros, embedded objects, or software exploits. It focuses on examining document structure and extracting payloads.

35 +14 4d ago A 66 tokens original Apache-2.0

re-dotnet

32

dslsdzc/rev-skills

Skill Claude CodeCodex

.NET CIL 逆向:dnSpy/ILSpy 反编译、de4dot 去混淆、ConfuserEx。触发词:.NET、dnSpy、ILSpy、de4dot、CIL、ConfuserEx.

35 +14 4d ago A 56 tokens original Apache-2.0

re-drm

33

dslsdzc/rev-skills

Skill Claude CodeCodex

A guide to examining PlayReady and Widevine, technologies that control access to protected video and audio. It covers their components, licence exchanges, and encrypted media formats.

35 +14 4d ago A 45 tokens original Apache-2.0

re-ebpf

34

dslsdzc/rev-skills

Skill Claude CodeCodex

A guide for analysing eBPF programs, small programs that run inside the Linux kernel to observe or control system activity. It covers their instructions, maps, hooks and calls to kernel helpers.

35 +14 4d ago B 101 tokens original Apache-2.0

re-electron

35

dslsdzc/rev-skills

Skill Claude CodeCodex

A guide to examining Electron desktop applications, which package web-based JavaScript inside a desktop program. It covers application archives, main and renderer processes, compiled V8 JavaScript, and debugging connections.

35 +14 4d ago A 91 tokens original Apache-2.0

re-emulation

36

dslsdzc/rev-skills

Skill Claude CodeCodex

A way to run individual pieces of software code in an emulator when the original program cannot run in your environment. Unicorn provides CPU emulation, while Qiling adds more operating-system context; Capstone can decode machine code.

35 +14 4d ago A 36 tokens original Apache-2.0

re-evasion

37

dslsdzc/rev-skills

Skill Claude CodeCodex

A Windows-focused guide for investigating how malware or tools avoid antivirus and endpoint detection, including memory-only execution and script-scanning bypasses.

35 +14 4d ago A 59 tokens original Apache-2.0

re-exploit

38

dslsdzc/rev-skills

Skill Claude CodeCodex

A guide to developing exploits for already located software vulnerabilities. It covers ROP chains, which reuse short instruction sequences, and heap attacks involving memory-allocation structures.

35 +14 4d ago A 40 tokens original Apache-2.0

re-feedback

39

dslsdzc/rev-skills

Skill Claude CodeCodex

A feedback-collection workflow written in Chinese. It gathers lessons from session reviews, scanned articles, or manual notes, removes sensitive details, sorts them by skill area, and handles them as a public issue, local record, or discarded note.

35 +14 4d ago A 82 tokens original Apache-2.0

re-fileless

40

dslsdzc/rev-skills

Skill Claude CodeCodex

A guide for analysing fileless malware, which runs in memory or uses tools such as PowerShell, WMI, scheduled tasks, or registry entries instead of saving a normal program file.

35 +14 4d ago A 49 tokens original Apache-2.0

re-firmware

41

dslsdzc/rev-skills

Skill Claude CodeCodex

A workflow for examining firmware, the software stored in devices such as routers, cameras and other embedded hardware. It covers unpacking firmware, examining its file system, running it in an emulator and, when needed, inspecting the physical device.

35 +14 4d ago A 123 tokens original Apache-2.0

re-flutter

42

dslsdzc/rev-skills

Skill Claude CodeCodex

Flutter/Dart AOT 逆向:libapp.so 快照分区解析、符号还原、Dart VM 动态分析。触发词:Flutter、Dart、libapp.so、AOT snapshot、kernelblob、flutterassets、Dart VM.

35 +14 4d ago A 60 tokens original Apache-2.0

re-forensics

43

dslsdzc/rev-skills

Skill Claude CodeCodex

A workflow for investigating computer-memory dumps and linking suspicious findings to threat-intelligence services. It covers memory, disk, mobile, and related malware-analysis tasks.

35 +14 4d ago A 117 tokens original Apache-2.0

re-format-elf

44

dslsdzc/rev-skills

Skill Claude CodeCodex

A guide to reading ELF files, the executable and shared-library format commonly used on Linux. It covers headers, program and section tables, dynamic linking areas, and symbols.

35 +14 4d ago A 45 tokens original Apache-2.0

re-format-macho

45

dslsdzc/rev-skills

Skill Claude CodeCodex

A guide to the Mach-O file format used by macOS and iOS programs, libraries and frameworks. It covers load commands, segments, dynamic-library dependencies, code signatures and multiple-architecture files.

35 +14 4d ago A 38 tokens original Apache-2.0

re-format-pe

46

dslsdzc/rev-skills

Skill Claude CodeCodex

A guide to the PE file format used by Windows programs and libraries such as EXE, DLL and SYS files. It explains how to inspect headers, sections, imports, exports, TLS callbacks and related metadata.

35 +14 4d ago A 68 tokens original Apache-2.0

re-fp-runtime

47

dslsdzc/rev-skills

Skill Claude CodeCodex

A reverse-engineering skill for programs compiled from Haskell or OCaml, two functional programming languages. It focuses on how these programs store closures, which package code with captured data, and heap objects at runtime.

35 +14 4d ago A 74 tokens original Apache-2.0

dslsdzc/rev-skills

Skill Claude CodeCodex

A guide for writing Frida scripts, which attach to a running app or process to observe or change its behavior. It uses a target's identifiable methods, APIs, and other features to shape and check a script.

35 +14 4d ago A 75 tokens original Apache-2.0