소스 정보
- 저장소
- AeonDave/malskill
- 최근 소스 활동
- 2026년 6월 3일 13:09
- 감지된 SKILL.md 언어
- 영어
- 스타
- 18
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/AeonDave/malskill --skill aflplusplus명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | aflplusplus |
| description | Auth/lab ref: Coverage-guided fuzzing framework for source and binary targets. |
| license | Apache-2.0 |
| compatibility | Linux, macOS, Windows (WSL/Cygwin paths vary). |
| metadata | {"author":"GitHub Copilot","version":"1.1"} |
AFL++ is a modern AFL fork with stronger instrumentation, mutation strategies, and binary-only options.
# Build target with AFL++ wrappers
CC=afl-cc CXX=afl-c++ ./configure --disable-shared --disable-werror
make -j"$(nproc)"
# Fuzz stdin target
afl-fuzz -i seeds -o out -- ./target_bin
# Fuzz file-based target
afl-fuzz -i seeds -o out -- ./target_bin @@
afl-clang-lto (or afl-clang-fast fallback).afl-cmin).-o dir.CMPLOG/Redqueen) in parallel.afl-tmin, replay under sanitizer, and bucket by stack/PC.| Flag | Description |
|---|---|
-i <dir> | Seed corpus directory |
-o <dir> | Output campaign directory |
-x <dict> | Dictionary for structured tokens |
-m <mb> | Memory limit |
-t <ms> | Per-exec timeout |
-M / -S | Parallel main/secondary instances |
-d | Skip deterministic stage (faster starts) |
Useful env variables in real campaigns:
AFL_USE_ASAN=1 / AFL_USE_UBSAN=1 for sanitizer build variants.AFL_LLVM_CMPLOG=1 for compare tracing binary used with -c.AFL_LLVM_LAF_ALL=1 for compare splitting (when needed).AFL_IMPORT_FIRST=1 to sync-import queue items early.AFL_TMPDIR=/dev/shm/... to reduce disk I/O pressure.# 1) Corpus cleanup
afl-cmin -i seeds -o seeds_min -- ./parser @@
# 2) Main instance
afl-fuzz -M main -i seeds_min -o out -- ./parser @@
# 3) Secondary instances (example)
afl-fuzz -S fast -i seeds_min -o out -p fast -- ./parser @@
afl-fuzz -S explore -i seeds_min -o out -p explore -- ./parser @@
# 4) Resume campaign later
afl-fuzz -i - -o out -- ./parser @@
# 5) Minimize crash for triage
afl-tmin -i out/default/crashes/id:000000* -o crash.min -- ./parser @@
FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION) to bypass blockers in harness builds.-m, -t) on unstable targets: noisy campaigns.