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

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

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

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

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
system_bt_AOSP10_r33_CVE-2020-0471 — Android 블루투스 스택(Fluoride)과 CVE-2020-0471에 대한 개념 증명 익스플로잇을 포함하여, AOSP 10에서 취약점 분석 및 익스플로잇 테스트를 가능하게 합니다. | Kitploit
도구/GitHubGitHub/nanopathi/system_bt_aosp10_r33_cve-2020-0471
Android SecurityEmbedded Systems SecurityBluetooth SecurityVulnerability AnalysisExploitationMobile Security
GitHubnanopathi/system_bt_aosp10_r33_cve-2020-0471

system_bt_AOSP10_r33_CVE-2020-0471

Android 블루투스 스택(Fluoride)과 CVE-2020-0471에 대한 개념 증명 익스플로잇을 포함하여, AOSP 10에서 취약점 분석 및 익스플로잇 테스트를 가능하게 합니다.

인기

모두 보기 →

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

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유
저장소 보기
14년 전아직 검토되지 않음

Fluoride Bluetooth 스택

AOSP에서 빌드 및 실행

AOSP를 빌드하기만 하면 됩니다. Fluoride는 기본적으로 포함되어 있습니다.

Linux에서 빌드 및 실행

Ubuntu용 지침, 14.04(Clang 3.5.0) 및 16.10(Clang 3.8.0)에서 테스트됨

소스 다운로드

root@kitploit:~
mkdir ~/fluoride
cd ~/fluoride
git clone https://android.googlesource.com/platform/system/bt

의존성 설치 (sudo 권한 필요):

root@kitploit:~
cd ~/fluoride/bt
build/install_deps.sh

그런 다음 타사 의존성을 가져옵니다:

root@kitploit:~
cd ~/fluoride/bt
mkdir third_party
cd third_party
git clone https://github.com/google/googletest.git
git clone https://android.googlesource.com/platform/external/aac
git clone https://android.googlesource.com/platform/external/libchrome
git clone https://android.googlesource.com/platform/external/libldac
git clone https://android.googlesource.com/platform/external/modp_b64
git clone https://android.googlesource.com/platform/external/tinyxml2

그리고 타사 의존성의 타사 의존성:

root@kitploit:~
cd fluoride/bt/third_party/libchrome/base/third_party
mkdir valgrind
cd valgrind
curl https://chromium.googlesource.com/chromium/src/base/+/master/third_party/valgrind/valgrind.h?format=TEXT | base64 -d > valgrind.h
curl https://chromium.googlesource.com/chromium/src/base/+/master/third_party/valgrind/memcheck.h?format=TEXT | base64 -d > memcheck.h

참고: system/bt가 AOSP 아래에서 체크아웃된 경우, 소스를 다운로드하는 대신 심볼릭 링크를 생성하세요

root@kitploit:~
cd system/bt
mkdir third_party
cd third_party
ln -s ../../../external/aac aac
ln -s ../../../external/libchrome libchrome
ln -s ../../../external/libldac libldac
ln -s ../../../external/modp_b64 modp_b64
ln -s ../../../external/tinyxml2 tinyxml2
ln -s ../../../external/googletest googletest

빌드 파일 생성

root@kitploit:~
cd ~/fluoride/bt
gn gen out/Default

빌드

root@kitploit:~
cd ~/fluoride/bt
ninja -C out/Default all

이렇게 하면 모든 대상(공유 라이브러리, 실행 파일, 테스트 등)이 빌드되어 out/Default에 저장됩니다. 개별 대상을 빌드하려면 'all'을 원하는 대상으로 바꾸십시오. 예: ninja -C out/Default net_test_osi.

실행

root@kitploit:~
cd ~/fluoride/bt/out/Default
LD_LIBRARY_PATH=./ ./bluetoothtbd -create-ipc-socket=fluoride

Eclipse IDE 지원

  1. Chromium 프로젝트의 Eclipse 설정 지침을 따라가되, "선택사항: Eclipse 내에서 빌드" 섹션은 건너뜁니다 (해당 섹션을 수행하지 말고, 다른 방식으로 설정할 것입니다)

  2. Eclipse 설정 생성:

root@kitploit:~
cd system/bt
gn gen --ide=eclipse out/Default
  1. Eclipse에서 File->Import->C/C++->C/C++ Project Settings를 선택하고, system/bt/out/Default 아래의 XML 위치를 선택합니다.

  2. 프로젝트를 마우스 오른쪽 버튼으로 클릭합니다. Preferences->C/C++ Build->Builder Settings로 이동합니다. "Use default build command"를 체크 해제하고, 대신 "ninja -C out/Default"를 사용합니다.

  3. Behaviour 탭으로 이동하여 clean 명령을 "-t clean"으로 변경합니다.

도구 다운로드