mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-15 17:53:31 +01:00
17 lines
461 B
C
17 lines
461 B
C
//
|
|
// grant_full_disk_access.h
|
|
// AltStore
|
|
//
|
|
// Created by June P on 2023/11/28.
|
|
// Copyright © 2023 SideStore. All rights reserved.
|
|
//
|
|
|
|
#ifndef grant_full_disk_access_h
|
|
#define grant_full_disk_access_h
|
|
@import Foundation;
|
|
|
|
/// Uses CVE-2022-46689 to grant the current app read/write access outside the sandbox.
|
|
void grant_full_disk_access(void (^_Nonnull completion)(NSError* _Nullable));
|
|
bool patch_installd(void);
|
|
#endif /* grant_full_disk_access_h */
|