1
0
mirror of https://github.com/opa334/TrollStore.git synced 2025-04-05 03:53:10 +08:00

Add safeguards to jithelper

This commit is contained in:
Duy Tran Khanh 2024-01-23 16:47:37 +07:00 committed by GitHub
parent 5e96d9d7dc
commit bbee70cd69
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -15,10 +15,19 @@
int ptrace(int _request, pid_t _pid, caddr_t _addr, int _data);
int main(int argc, const char* argv[]) {
RBSProcessPredicate *predicate = [RBSProcessPredicate predicateMatchingBundleIdentifier:@(argv[1])];
RBSProcessHandle* process = [RBSProcessHandle handleForPredicate:predicate error:nil];
if (argc != 2)
{
//NSLog(@"trollstorejithelper invoked with unexpected number of arguments");
return -1;
}
int pid;
@autoreleasepool {
RBSProcessPredicate *predicate = [RBSProcessPredicate predicateMatchingBundleIdentifier:@(argv[1])];
RBSProcessHandle* process = [RBSProcessHandle handleForPredicate:predicate error:nil];
pid = process.rbs_pid;
}
int pid = process.rbs_pid;
if (!pid)
{
return ESRCH;