如何修复包含TrustManager

时间:2016-04-03 22:25:15

标签: android android-security android-securityexception

我正在尝试让我的Android应用符合Android的新策略,即每个requirement and instructions拥有安全应用。

1)我首先将SSL和https添加到我的应用中的网址 2)然后我开始使用HttpsURLConnection类而不是HttpURLConnection

以下是我使用的远程调用示例:

   public void sendFeedback(String name , String email , String password ) 
   {  
        String[] params = new String[] { "https://www.problemio.com/auth/create_profile_mobile.php", name , email , password };

        DownloadWebPageTask task = new DownloadWebPageTask();
        task.execute(params);        
   }

   public class DownloadWebPageTask extends AsyncTask<String, Void, String> 
   {       
        private boolean connectionError = false;


     @Override
     protected void onPreExecute( ) 
     {
          dialog = new Dialog(CreateProfileActivity.this);

          dialog.setContentView(R.layout.please_wait);
          dialog.setTitle("Creating Profile");

          TextView text = (TextView) dialog.findViewById(R.id.please_wait_text);
          text.setText("Please wait while your profile is created... ");
          dialog.show();
     }             

    @Override
    protected String doInBackground(String... theParams) 
    {
        String myUrl = theParams[0];
        final String name = theParams[1];
        final String email = theParams[2];
        final String password = theParams[3];

        String charset = "UTF-8";                       
        String response = null;

        try 
        {               
            String query = String.format("name=%s&email=%s&password=%s", 
                     URLEncoder.encode(name, charset), 
                     URLEncoder.encode(email, charset), 
                     URLEncoder.encode(password, charset));

            final URL url = new URL( myUrl + "?" + query );

            final HttpsURLConnection conn = (HttpsURLConnection) url.openConnection();

            conn.setDoOutput(true); 
            conn.setRequestMethod("POST");

            conn.setDoOutput(true);

            conn.setUseCaches(false);

            conn.connect();

            final InputStream is = conn.getInputStream();
            final byte[] buffer = new byte[8196];
            int readCount;
            final StringBuilder builder = new StringBuilder();
            while ((readCount = is.read(buffer)) > -1) 
            {
                builder.append(new String(buffer, 0, readCount));
            }

            response = builder.toString();      
        } 
        catch (Exception e) 
        {
              connectionError = true;
        }

        return response;
    }

    @Override
    protected void onPostExecute(String result) 
    {       
        // Some code

            // Make an intent to go to the home screen
            Intent myIntent = new Intent(CreateProfileActivity.this, MainActivity.class);
            CreateProfileActivity.this.startActivity(myIntent);
        }
    }    
}

但它并没有删除我的开发者控制台上的警告标志。知道我做错了什么以及如何解决这个问题?

1 个答案:

答案 0 :(得分:3)

假设Google的扫描程序没有被破坏,它所抱怨的X509TrustManager可以来自两个地方之一。

它可能来自您自己的源代码。通常,你会记得这样做,因为你在某个类的某个类中键入了implements X509TrustManager并覆盖了一堆看似狡猾的方法。快速搜索源代码应确定是否属于这种情况。

如果没有,它来自某个图书馆。许多人 - 希望大多数 - 库都会清理它。但是,它可能只在库中比您当前使用的版本更新,因为您的依赖项中列出了旧版本,或者您使用的是本地JAR或其他东西。坏消息是追踪罪魁祸首可能是一件痛苦的事情,尽管它仅限于需要访问互联网的图书馆(例如,recyclerview-v7不会成为问题)。好消息是,修复问题可能就像更新库一样简单,或者如果它从您不再使用的应用程序的过去实现中消失,则可以将其删除。

虽然我不能谈论Flurry,但这个问题确实存在于旧版本的ACRA中。最近几个月对ACRA进行了各种其他修复,因此无论如何我建议您升级到当前版本。