2019年10月15日
iOS 9 和 OS X Captian 带来了一个新的安全特性,也就是 App Transport Security,加强了应用中所谓网络连接的安全性。下面是 ATS 默认的安全要求:The server must support at least Transport Layer Security (TLS) protocol version 1.2.Connection ciphers are limited to those that provide forward secrec
2019年09月30日
Class LSApplicationWorkspace = objc_getClass("LSApplicationWorkspace"); id workspace = [LSApplicationWorkspace performSelector:NSSelectorFromString(@"defaultWorkspace")]; NS
2019年09月30日
#import <objc/runtime.h>
#import <dlfcn.h>
#import <mach-o/ldsyms.h>
unsigned int count;
const char **classess;
Dl_info info;
2019年09月05日
#ifdef DEBUG SEL sel = NSSelectorFromString(@"_enableRemoteInspector"); id cls = NSClassFromString(@"WebView"); IMP imp = [cls sel]; void (*func)(id, SEL) = (void *)imp; func(cls, sel);#endifadd to&nb
2019年05月09日
前言在逆向和保护的过程中,总会涉及到反调试和反反调试的问题,这篇文章主要是总结一下几种常见的反调试手段以及反反调试的方法。反调试ptrace为了方便应用软件的开发和调试,从Unix的早期版本开始就提供了一种对运行中的进程进行跟踪和控制的手段,那就是系统调用ptrace()。通过ptrace可以对另一个进程实现调试跟踪,同时ptrace还提供了一个非常有用的参数那就是PT_DENY_ATTACH,这个参数用来告诉系统,阻止调试器依附。所以最常用的反调试方案就是通过调用ptrace来实现反调试。#i
2019年01月22日
#!/bin/bash
# Global build settings
export SDKPATH=$(xcrun --show-sdk-path -sdk iphoneos)
export SIMSDKPATH=$(xcrun --show-sdk-path -sdk iphonesimulator)
export MIN_IOS_VERSION=9.0
ex
2018年11月06日
思路 1.lipo 拆分 .a 文件为每个 cpu (如果只有一个 cpu就不需要,如只有 arm64) 2.ar 删除有冲突的*. o文件实践: 1. lipo -thin arm64 -output libXXXX.64.a libXXXX.a //提取 arm64的库 2.&
2018年10月30日
p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 14.0px Menlo; color: #ffffff; background-color: #000000}
p.p2 {margin: 0.0px 0.0px 0.0px 0.0px; font: 14.0px Menlo; color: #00a0ff; background-color: #000000}
p.p3 {margin: 0.0px 0.0px 0.0px 0.0px; font:
2018年10月22日
Actually there is a CarPlay "External Display" that can be enabled, for it to show up you simply need to type in this command in a Terminal window:defaults write com.apple.iphonesimulator CarPlay -bool YESThen shutd
2018年09月22日
Xcode supports the ability to substitute the value of build settings using the $(BUILD_SETTING_NAME) or ${BUILD_SETTING_NAME} syntax in a number of places including Info.plists, other build setting values, and .xcconfig files. In