码迷,mamicode.com
首页 > 其他好文 > 详细

跳转iPhone设置页面,绕过审核

时间:2018-12-19 01:15:02      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:openurl   and   red   href   ring   ons   页面   ble   2018年   

1、问题描述

  • 跳转iPhone设置页面之前都是通过 App-Prefs:root=WIFI 来跳转,但是2018年6月废弃了这个函数,被认为是私有函数,审核会被拒绝。
  • 有心人采用了字符串转码的方式来规避。

2、代码

unsigned char byte[] = {0x41,0x70,0x70,0x2d,0x50,0x72,0x65,0x66,0x73,0x3a,0x72,0x6f,0x6f,0x74,0x3d,0x57,0x49,0x46,0x49};
    NSData *encryptString = [[NSData alloc] initWithBytes:byte length:19];
    // @"App-Prefs:root=WIFI 中间进行一个转码, 绕过苹果的代码扫描.
    NSString *string = [[NSString alloc] initWithData:encryptString encoding:NSUTF8StringEncoding];
    NSURL *url = [NSURL URLWithString:string];

    if ([[UIApplication sharedApplication] canOpenURL:url]) {
        if (@available(iOS 10.0, *)) {
            [[UIApplication sharedApplication] openURL:url
                                               options:@{}
                                     completionHandler:^(BOOL success) {
                                         
            }];
        }
    }

3、转码工具

  • 分享一个文字转二进制,十六进制的在线地址, App-Prefs:root=WIFI 转换成16进制就是在这个网址上弄得。
  • 【链接】ASCII在线转换器
    技术分享图片

跳转iPhone设置页面,绕过审核

标签:openurl   and   red   href   ring   ons   页面   ble   2018年   

原文地址:https://www.cnblogs.com/CH520/p/10136931.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!