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 に答える