]> git.saurik.com Git - cydia.git/commitdiff
Verify using device and inode (not file realpath). v1.1.27
authorJay Freeman (saurik) <saurik@saurik.com>
Tue, 8 Mar 2016 18:49:49 +0000 (10:49 -0800)
committerJay Freeman (saurik) <saurik@saurik.com>
Tue, 8 Mar 2016 18:49:49 +0000 (10:49 -0800)
cydo.cpp

index 1bc2a22c050e4150507f4a6af81d68d7dfa94586..bed61987b6b12ce54b51ea9e5dfcd9810a8578e8 100644 (file)
--- a/cydo.cpp
+++ b/cydo.cpp
@@ -28,6 +28,8 @@
 
 #include <launch.h>
 
+#include <sys/stat.h>
+
 #include <Menes/Function.h>
 
 typedef Function<void, const char *, launch_data_t> 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;
     }