美文网首页
iOS发送IP地址的HTTPS请求

iOS发送IP地址的HTTPS请求

作者: Wallerli | 来源:发表于2017-01-04 15:19 被阅读0次
原理

在进行证书校验时,将IP替换成原来的域名,再进行证书验证。

以NSURLConnection接口为例:

IP地址和有证书的HTTPS域名:

NSURL* ipURL = [NSURL URLWithString:@”使用解析结果ip拼接的URL”];
float timeOut = 设置的超时时间;
NSMutableURLRequest* mutableRequest = [NSMutableURLRequest requestWithURL:ipURL cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval: timeOut];
[mutableRequest setValue:@"原域名" forHTTPHeaderField:@"host"];
NSURLConnection* connection = [[NSURLConnection alloc] initWithRequest:mutableRequest delegate:self];
[connection start];

取得HTTPS域名的证书

#pragma mark - NSURLConnectionDelegate
- (BOOL)evaluateServerTrust:(SecTrustRef)serverTrust forDomain:(NSString *)domain       
{       
    /*      
     * 创建证书校验策略     
     */     
    NSMutableArray *policies = [NSMutableArray array];      
    if (domain) {       
        [policies addObject:(__bridge_transfer id)SecPolicyCreateSSL(true, (__bridge CFStringRef)domain)];      
    } else {        
        [policies addObject:(__bridge_transfer id)SecPolicyCreateBasicX509()];      
    }       

    /*      
     * 绑定校验策略到服务端的证书上       
     */     
    SecTrustSetPolicies(serverTrust, (__bridge CFArrayRef)policies);        

    /*      
     * 评估当前serverTrust是否可信任,        
     * 官方建议在result = kSecTrustResultUnspecified 或 kSecTrustResultProceed        
     * 的情况下serverTrust可以被验证通过,https://developer.apple.com/library/ios/technotes/tn2232/_index.html      
     * 关于SecTrustResultType的详细信息请参考SecTrust.h       
     */     
    SecTrustResultType result;      
    SecTrustEvaluate(serverTrust, &result);     

    return (result == kSecTrustResultUnspecified || result == kSecTrustResultProceed);      
}       

- (void)connection:(NSURLConnection *)connection willSendRequestForAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge        
{       
    if (!challenge) {       
        return;     
    }       

    /*      
     * 此处从HTTP Header中获取真实域名        
     */     
    NSString* host = [[self.request allHTTPHeaderFields] objectForKey:@"host"];     
    if (!host) {        
        host = self.request.URL.host;       
    }       

    /*      
     * 判断challenge的身份验证方法是否是NSURLAuthenticationMethodServerTrust(HTTPS模式下会进行该身份验证流程),       
     * 在没有配置身份验证方法的情况下进行默认的网络请求流程。        
     */     
    if ([challenge.protectionSpace.authenticationMethod isEqualToString:NSURLAuthenticationMethodServerTrust])      
    {       
        if ([self evaluateServerTrust:challenge.protectionSpace.serverTrust forDomain:host]) {      
            /*      
             * 验证完以后,需要构造一个NSURLCredential发送给发起方        
             */     
            NSURLCredential *credential = [NSURLCredential credentialForTrust:challenge.protectionSpace.serverTrust];       
            [[challenge sender] useCredential:credential forAuthenticationChallenge:challenge];     
        } else {        
            /*      
             * 验证失败,取消这次验证流程      
             */     
            [[challenge sender] cancelAuthenticationChallenge:challenge];       
        }       
    } else {        
        /*      
         * 对于其他验证方法直接进行处理流程     
         */     
        [[challenge sender] continueWithoutCredentialForAuthenticationChallenge:challenge];     
    }       
}

相关文章

  • iOS发送IP地址的HTTPS请求

    原理 在进行证书校验时,将IP替换成原来的域名,再进行证书验证。 以NSURLConnection接口为例: IP...

  • 浏览器输入url后全过程

    过程 dns解析获取ip地址 依据ip地址,建立tcp连接 客户端发送http请求报文 服务器架构处理请求 服务器...

  • 前端学习笔记_HTTP基础

    打开一个网页的过程 输入网址 网址通过DNS匹配IP地址 与IP地址建立链接 发送HTTP请求 服务器解析请求,调...

  • kotlin okhttp post请求 例子

    简单举例okhttp发送post请求。比如说发送post请求,API的地址是https://www.abc.com...

  • DAY1

    一 http基础 http请求方式 输入url,先去找DNS缓存(hosts),找ip地址发送http请求,先ap...

  • 从输入URL到页面显示的过程

    从输入URL到页面显示的过程 1. 发送URL,请求IP地址 当发送一个URL请求时,不管这个URL是web页面的...

  • HTTP协议请求&响应

    页面请求的顺序 首先是客户端发送请求,然后DNS进行解析,给浏览器返回一个IP地址。浏览器根据这个IP地址再进行请...

  • iOS9 适配注意事项

    Tip 1: HTTPS iOS9把所有的http请求都改为https了:iOS9系统发送的网络请求将统一使用T...

  • 2019-07-03

    浏览器-->服务器发送的请求格式如下: """表示请求的目标、协议版本"'"" "'""表示服务器的IP地址和端口...

  • iOS开发 根据IP获取位置

    iOS开发 根据IP获取位置 本文的资源来自于淘宝 IP 地址库 一 IP 查询接口说明 请求接口(GET):/s...

网友评论

      本文标题:iOS发送IP地址的HTTPS请求

      本文链接:https://www.haomeiwen.com/subject/dqwovttx.html