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

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

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

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

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
Blackash-CVE-2025-48593 — CVE-2025-48593 | Kitploit
도구/GitHubGitHub/c0d331ng/blackash-cve-2025-48593
Android SecurityVulnerability AnalysisExploitationMobile SecurityLearning & EducationRemote Access ToolPayload DevelopmentBinary Exploitation
GitHubc0d331ng/blackash-cve-2025-48593

Blackash-CVE-2025-48593

CVE-2025-48593

저장소 보기
210210개월 전아직 검토되지 않음

인기

모두 보기 →

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

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유

🚨 CVE-2025-48593 안드로이드 시스템 제로클릭 원격 코드 실행 🚨

"단 하나의 악성 패킷이 당신의 기기를 장악할 수 있습니다." — Android Security Team, 2025년 11월


🎯 취약점 스냅샷

속성세부 내용
CVE IDCVE-2025-48593
심각도🔴 치명적 (RCE, 제로클릭)
CVSS (추정)9.8 (NVD 확인 중)
공격 경로🌐 네트워크 (원격)
사용자 상호작용❌ 필요 없음
필요 권한❌ 없음
익스플로잇 상태🟡 공개 PoC 없음 (2025년 11월 4일 기준)

🛡️ 영향받는 기기 및 버전

root@kitploit:~
- Android 13 (All builds Oct 2023 – Oct 2025)
- Android 14 (All builds Oct 2023 – Oct 2025)
- Android 15 (All builds up to Oct 2025)
! Android 16 (Builds Jul 2025 – Oct 2025)

패치되지 않은 기기는 완전히 노출됩니다.


⚡ 작동 방식 (기술적 분석)

root@kitploit:~
// Simplified pseudocode of vulnerable path
void process_system_packet(Packet *p) {
    if (p->type == MALICIOUS_TYPE) {
        // ⚠️ No bounds check!
        memcpy(kernel_buffer, p->payload, p->size);  // CVE-2025-48593
        execute_payload(); // RCE achieved
    }
}

근본 원인:

System 컴포넌트의 부적절한 입력 검증으로 인해 원격 공격자가 버퍼를 오버플로하고 실행 코드를 주입할 수 있습니다.


🛑 즉시 완화 조치

root@kitploit:~
# 1. Check your patch level
adb shell getprop ro.build.version.security_patch
# → Should show: 2025-11-01 or 2025-11-05

사용자 조치

  1. 지금 업데이트
    ⚙️ 설정 → 시스템 → 시스템 업데이트
  2. Play Protect 활성화
    🔍 Google Play → Play Protect → 검사
  3. 신뢰할 수 없는 네트워크 피하기
    🚫 공공 장소에서 Wi-Fi/블루투스 비활성화

엔터프라이즈 / OEM

  • AOSP를 통해 2025-11-05 보안 패치 적용
  • 모니터링: Android Security Bulletin – 2025년 11월

🔗 관련 CVE (동일 게시판)

CVE심각도유형영향받는 대상
CVE-2025-48581높음EoPAndroid 16만 해당

📢 최신 정보 유지

🔍 NVD 항목: nvd.nist.gov/vuln/detail/CVE-2025-48593
🔗 Android 게시판: source.android.com/security/bulletin
🛠️ AOSP 패치: Android Git에서 CVE-2025-48593 검색


🛠 CVE-2025-48593 익스플로잇 스키마

안드로이드 시스템 제로클릭 원격 코드 실행


root@kitploit:~
%%{init: {'theme': 'base', 'themeVariables': { 'fontSize': '13px', 'fontFamily': 'Consolas, monospace', 'primaryColor': '#d32f2f', 'primaryTextColor': '#fff', 'lineColor': '#ff8a80', 'secondaryColor': '#1976d2'}}}%%
sequenceDiagram
    participant Attacker as 🌐 Attacker
    participant Network as 📡 Network
    participant Device as 📱 Android Device
    participant Kernel as 🛠 Kernel Space

    Attacker->>Network: Send Malicious Packet<br/>(No authentication)
    Network->>Device: Deliver Packet<br/>(Zero interaction)
    Device->>Device: process_system_packet(pkt)
    Note over Device: ⚠️ No bounds check!
    Device->>Kernel: memcpy(kernel_buffer, payload, size)
    Kernel-->>Device: Buffer Overflow
    Device->>Kernel: Execute Injected Code
    Kernel->>Attacker: Remote Shell / Data Exfiltration
    Note over Device,Kernel: 🔥 Full RCE Achieved

🔍 기술적 공격 체인


🛡️ 심층 방어 스키마

root@kitploit:~
graph LR
    subgraph "Prevention Layers"
        P1[🔒 Apply Nov 2025 Patch]
        P2[🚫 Disable Unused Radios]
        P3[🛡️ Google Play Protect]
        P4[🌐 Avoid Public Wi-Fi]
    end

    subgraph "Detection"
        D1[📊 Monitor Anomalous Traffic]
        D2[⚠️ Watch for Kernel Crashes]
        D3[🔍 Endpoint Forensics]
    end

    subgraph "Response"
        R1[🛑 Isolate Device]
        R2[📲 Force OTA Update]
        R3[📋 Report to Google/OEM]
    end

    P1 & P2 & P3 & P4 --> D1 & D2 & D3 --> R1 & R2 & R3

    style P1 fill:#1b5e20, color:#fff
    style R1 fill:#b71c1c, color:#fff

📋 패치 적용 흐름

root@kitploit:~
%%{init: {'theme': 'neutral'}}%%
graph TD
    A[Google Releases Patch<br/>Nov 1/5, 2025] --> B{OEM Integration}
    B --> C[Samsung, OnePlus, etc.]
    B --> D[Google Pixel]
    C --> E[Monthly Security Update]
    D --> F[Pixel OTA Push]
    E & F --> G[User Installs Update]
    G --> H[Patch Level: 2025-11-01+]
    H --> I[✅ CVE-2025-48593 Mitigated]

    style A fill:#1976d2, color:#fff
    style I fill:#1b5e20, color:#fff
    style G fill:#ff9800, color:#fff

패치되지 않음 = 노출됨
패치됨 = 보호됨

스키마 최종 업데이트: 2025년 11월 4일
AOSP 패치 차이 확인을 위해 Android Git에서 CVE-2025-48593 검색

도구 다운로드
단계동작요구 사항
1. 패킷 제작공격자가 비정상 시스템 패킷을 구성없음
2. 전송Wi-Fi, 블루투스 또는 셀룰러를 통해 전송네트워크 접근
3. 수신기기가 패킷 수신 (사용자 동작 없음)패치되지 않은 Android 13–16
4. 처리System 컴포넌트가 입력을 구문 분석취약한 코드 경로
5. 오버플로memcpy()가 버퍼를 넘어 기록입력 검증 결함
6. 실행셸코드가 커널 컨텍스트에서 실행제로클릭 RCE
7. 지속성악성코드 설치, 데이터 유출, 내부 공격완전한 제어