Skip to content
KitploitKITPLOIT
ツールブログ
提出
ツールブログ
提出

ハッキング、侵入テスト、サイバーセキュリティツールをあなたのセキュリティアーセナルに!

Kitploitはハッキング、サイバーセキュリティ、ペネトレーションテストのツールディレクトリです。最新のプロジェクトアップデートを見つけて、脆弱性の発見、システム分析、テストの自動化、セキュリティの強化を行いましょう。

··フィード·お問い合わせ·プライバシー·© 2026 Kitploit

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
CVE-2017-13286 — CVE-2017-13286 Poc(使用不可) | Kitploit
ツール/GitHubGitHub/umvfx1bvaw50/cve-2017-13286
Androidセキュリティ脆弱性分析コード分析エクスプロイトモバイルセキュリティバイナリエクスプロイト
GitHubumvfx1bvaw50/cve-2017-13286

CVE-2017-13286

CVE-2017-13286 Poc(使用不可)

リポジトリを見る
122年前未レビュー

人気

すべて見る →

コミュニティで最も使われているツールを見つけましょう。

すべてのツールを探索

ツールコレクションを閲覧

すべてのツールを見る →
共有

CVE-2017-13286

CVE-2017-13286 Poc(使用不可)

すべてのリソースはこの記事から引用されています https://bbs.kanxue.com/thread-268506.htm

  • この脆弱性の主な原因は、Parcelオブジェクトの読み書きの不一致にあります。具体的には、以下のコードにまで遡ることができます。
root@kitploit:~
public void writeToParcel(Parcel dest, int flags) {
        if (dest == null) {
            throw new IllegalArgumentException("dest must not be null");
        }
        dest.writeInt(mRotation);
        dest.writeInt(mSurfaceGroupId);
        dest.writeInt(mSurfaceType);
        dest.writeInt(mConfiguredSize.getWidth());
        dest.writeInt(mConfiguredSize.getHeight());
        dest.writeInt(mIsDeferredConfig ? 1 : 0);
        dest.writeInt(mIsShared ? 1 : 0);
        dest.writeTypedList(mSurfaces);
}
 
private OutputConfiguration(@NonNull Parcel source) {
        int rotation = source.readInt();
        int surfaceSetId = source.readInt();
        int surfaceType = source.readInt();
        int width = source.readInt();
        int height = source.readInt();
        boolean isDeferred = source.readInt() == 1;
        // missing write mIsShared
        ArrayList<Surface> surfaces = new ArrayList<Surface>();
        source.readTypedList(surfaces, Surface.CREATOR);
 
        checkArgumentInRange(rotation, ROTATION_0, ROTATION_270, "Rotation constant");
        ...
        ...
        ...
}
  • このAOSPのバージョンでは、mIsSharedが読み取られていないにもかかわらず、書き込まれていることがわかります。

  • これを利用して、悪意のあるParcelシリアル化データを構築し、システムに何らかの処理を実行させることができます。

  • 脆弱性コードはAOSPの次のディレクトリにあります:frameworks/base/core/java/android/hardware/camera2/params/OutputConfiguration.java

  • これは修正されただけでなく、現在のシリアル化オブジェクトにはさらに多くのデフォルト要素が追加されています。

ツールをダウンロード