Skip to content

Commit

Permalink
Merge pull request #17 from Tony-Y/fix_detect_injected_dylds
Browse files Browse the repository at this point in the history
Fix detect_injected_dylds
  • Loading branch information
prateek147 authored Mar 25, 2024
2 parents 3aa6327 + 97a049d commit ca42183
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ int detect_injected_dylds()
const char *dyld = _dyld_get_image_name(i);
// printf("LibraryName:%s\n",basename(dyld));
//Cycript for RuntimeManipulation, MobileSubstrate for any form of injection, and SSLKillSwitch2 if someone tries to bypas SSLPinning, additionally these stings can be obfuscated in the code as well
if(!strstr(dyld, "MobileSubstrate") || !strstr(dyld, "cycript") || !strstr(dyld, "SSLKillSwitch") || !strstr(dyld, "SSLKillSwitch2")) {
if(!strstr(dyld, "MobileSubstrate") && !strstr(dyld, "cycript") && !strstr(dyld, "SSLKillSwitch") && !strstr(dyld, "SSLKillSwitch2")) {
continue;
}
else {
Expand Down

0 comments on commit ca42183

Please sign in to comment.