From af7a541a90f647596ccf1309d0d77925b8c5f742 Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Tue, 8 Mar 2016 10:49:49 -0800 Subject: Verify using device and inode (not file realpath). --- cydo.cpp | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/cydo.cpp b/cydo.cpp index 1bc2a22..bed6198 100644 --- a/cydo.cpp +++ b/cydo.cpp @@ -28,6 +28,8 @@ #include +#include + #include typedef Function LaunchDataIterator; @@ -50,6 +52,12 @@ int main(int argc, char *argv[]) { auto cydia(false); + struct stat correct; + if (lstat("/Applications/Cydia.app/Cydia", &correct) == -1) { + fprintf(stderr, "you have no arms left"); + return EX_NOPERM; + } + launch_data_dict_iterate(response, [=, &cydia](const char *name, launch_data_t value) { if (launch_data_get_type(response) != LAUNCH_DATA_DICTIONARY) return; @@ -92,12 +100,16 @@ int main(int argc, char *argv[]) { if (program == NULL) return; - if (strcmp(program, "/Applications/Cydia.app/Cydia") == 0) + struct stat check; + if (lstat(program, &check) == -1) + return; + + if (correct.st_dev == check.st_dev && correct.st_ino == check.st_ino) cydia = true; }); if (!cydia) { - fprintf(stderr, "thou shalt not pass\n"); + fprintf(stderr, "none shall pass\n"); return EX_NOPERM; } -- cgit v1.2.3