0

首先,这里这里之前已经问过这个问题

我已经使用这个命令$ unzip -p YourApp.apk | strings | grep "OpenSSL" 来获取 OpenSSL 版本,我得到了

OpenSSL 1.0.0e 2011 年 9 月 6 日。

我在应用程序中使用了许多库 这是我的 gradle

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    compile project(':facebook')
    compile project(':taskspottingsdk')
    compile project(':uil_library')
    compile project(':viewPagerIndicatorLib')
    compile 'com.android.support:cardview-v7:23.0.1'
    compile 'com.google.maps.android:android-maps-utils:0.3.+'
    compile project(':audio_recorder')
    compile project(':material_dialogs_library')
    compile 'com.splunk.mint:mint:4.1'
    compile project(':better_pickers_library')
    compile project(':zxscanlib')
    compile files('libs/YouTubeAndroidPlayerApi.jar')
    compile project(':wScratchViewLibrary')
    compile project(':drag-sort-listview')
    compile project(':mobihelp_sdk_android_v1.4')
    compile('org.apache.httpcomponents:httpmime:4.3.6') {
        exclude module: 'httpclient'
    }
    compile 'org.apache.httpcomponents:httpclient-android:4.3.5'
    compile('com.crashlytics.sdk.android:crashlytics:2.5.2@aar') {
        transitive = true;
    }
    compile files('libs/android-1.2.2675.jar')
    compile files('libs/audible-magic-plugin-1.2.2675.jar')
    compile files('libs/domain-1.2.2675.jar')
    compile files('libs/wms-transport-wowz.jar')
    compile 'de.hdodenhof:circleimageview:2.0.0'
}

找出哪个库正在使用 OpenSSL 的任何快速简便的方法也是如此。

谢谢。

4

1 回答 1

0

问题出在 Intel Media SDK for Mobile 中,他们使用 OpenSSL 1.0.0e,这个版本有很多漏洞

看这里

于 2015-10-31T21:32:10.607 回答