Skip to content

Commit

Permalink
Merge pull request #732 from TheMasterOfMike/main
Browse files Browse the repository at this point in the history
Account for 16.7 RC in determinePlatformVulnerableExploitTypes
  • Loading branch information
alfiecg24 authored Feb 16, 2024
2 parents c2073db + 8ddfe13 commit afd09b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Shared/TSUtil.m
Original file line number Diff line number Diff line change
Expand Up @@ -594,9 +594,9 @@ void determinePlatformVulnerableExploitTypes(void *context) {
// iOS 15.6 beta 1 - 5
gPlatformVulnerabilities = (EXPLOIT_TYPE_CUSTOM_ROOT_CERTIFICATE_V1 | EXPLOIT_TYPE_CMS_SIGNERINFO_V1);
}
else if(strncmp(os_build, "20G81", 5) <= 0)
else if(strncmp(os_build, "20H18", 5) <= 0)
{
// iOS 14.0 - 16.6.1
// iOS 14.0 - 16.6.1, 16.7 RC
gPlatformVulnerabilities = EXPLOIT_TYPE_CMS_SIGNERINFO_V1;
}
else if(strncmp(os_build, "21A5248v", 8) >= 0 && strncmp(os_build, "21A331", 6) <= 0)
Expand Down

0 comments on commit afd09b7

Please sign in to comment.