Skip to content
KitploitKITPLOIT
도구블로그
제출
도구블로그
제출

해킹, 침투 테스트 및 사이버 보안 도구를 당신의 보안 무기고에!

Kitploit은 해킹, 사이버 보안 및 침투 테스트 도구 디렉토리입니다. 최신 프로젝트 업데이트를 발견하여 취약점을 찾고, 시스템을 분석하고, 테스트를 자동화하고, 보안을 강화하세요.

··피드·문의·개인정보·© 2026 Kitploit

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
avcleaner — 안티바이러스 우회를 위한 C/C++ 소스 난독화 도구 | Kitploit
도구/GitHubGitHub/scrt/avcleaner
Payload GenerationBinary Analysis
GitHubscrt/avcleaner

avcleaner

안티바이러스 우회를 위한 C/C++ 소스 난독화 도구

저장소 보기
1.1k18824년 전Kitploit 검토 완료

인기

모두 보기 →

커뮤니티에서 가장 많이 사용되는 도구를 찾아보세요.

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유

avcleaner

바이러스 백신 우회를 위한 C/C++ 소스 난독화 도구

usage example

블로그 게시물

이 구현은 상당히 복잡하며, 소프트웨어 개발의 이 영역은 일반인의 용어로 문서화되는 경우가 드뭅니다. 그래서 모든 설계 선택을 자세히 설명하고 LLVM API 작업의 특이점을 다루는 블로그 게시물이 있습니다.

  • https://blog.scrt.ch/2020/06/19/engineering-antivirus-evasion/
  • https://blog.scrt.ch/2020/07/15/engineering-antivirus-evasion-part-ii/

빌드

root@kitploit:~
docker build . -t avcleaner
docker run -v ~/dev/scrt/avcleaner:/home/toto -it avcleaner bash #adapt ~/dev/scrt/avcleaner to the path where you cloned avcleaner
sudo pacman -Syu
mkdir CMakeBuild && cd CMakeBuild
cmake ..
make -j 2
./avcleaner.bin --help

사용법

간단한 프로그램의 경우, 다음과 같이 간단하게 사용할 수 있습니다:

root@kitploit:~
avcleaner.bin test/strings_simplest.c --strings=true --

하지만, 이 도구는 컴파일러 프론트엔드라는 점을 알아야 합니다. 프로젝트를 빌드하는 데 필요한 모든 include 경로를 제공해야만 제대로 작동합니다. 예를 들어, test/string_simplest.c는 WinSDK의 헤더를 포함하며, run_example.sh 스크립트는 이러한 시나리오를 처리하는 방법을 보여줍니다.

일반적인 오류

root@kitploit:~
CommandLine Error: Option 'non-global-value-max-name-size' registered more than once! LLVM ERROR: inconsistency in registered CommandLine options

이 오류가 발생할 경우, CMakeLists.txt 대신 CMakeLists_archlinux.txt를 사용하면 문제가 해결됩니다.

기여자

버그 수정에 기여해주신 @gituser5555님께 감사드립니다.

도구 다운로드