上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 37 下一页
摘要: 运行结果: 阅读全文
posted @ 2019-06-11 01:16 浪浪辛 阅读(698) 评论(0) 推荐(0)
摘要: 一个正常的应用程序被由若干个 segment组成。 定义 segment: SECTION .段名 SECTION 也可以小写 如: 定义数据段: section .data 定义代码段: section .text 绝对的符号: Absolute symbols 如: 在IDA中 有一行 _mh_ 阅读全文
posted @ 2019-06-03 16:38 浪浪辛 阅读(1095) 评论(0) 推荐(0)
摘要: 直接运行nasm报错: 开始安装: brew reinstall nasm 阅读全文
posted @ 2019-06-03 16:15 浪浪辛 阅读(1283) 评论(0) 推荐(0)
摘要: 编译这个文件: nasm -f macho64 hello.asm ld -o hello -e _main hello.o -macosx_version_min 10.13 -lSystem 运行这个文件: 阅读全文
posted @ 2019-06-03 16:11 浪浪辛 阅读(674) 评论(0) 推荐(0)
摘要: 寄存器 16位 32位 64位累加寄存器 AX EAX RAX基址寄存器 BX EBX RBX计数寄存器 CX ECX RCX数据寄存器 DX EDX RDX堆栈基指针 BP EBP RBP变址寄存器 SI ESI RSI堆栈顶指针 SP ESP RSP指令寄存器 IP EIP RIP 阅读全文
posted @ 2019-06-02 23:04 浪浪辛 阅读(1110) 评论(0) 推荐(0)
摘要: 先使用 JS_DecodeScript反编译jsc 得到AST树 AST树词法解析 http://esprima.org/ AST还原成源码: npm install escodegen AST树遍历:npm install estraverse https://developer.mozilla. 阅读全文
posted @ 2019-05-29 11:02 浪浪辛 阅读(2310) 评论(0) 推荐(0)
摘要: typedef std::string u8string; u8string To_UTF8(const std::u16string &s) { std::wstring_convert, char16_t> conv; return conv.to_bytes(s); } u8string To_UTF8(const std::u32string &s) { st... 阅读全文
posted @ 2019-05-29 10:51 浪浪辛 阅读(1834) 评论(0) 推荐(0)
摘要: ios 端安装文档接入库后,报错 -> static void BuglyJSAgent::reportJSError(JSContext *, const char *, JSErrorReport *) [Error] CrashReport: Fail to get class by NSCl 阅读全文
posted @ 2019-05-25 20:22 浪浪辛 阅读(648) 评论(0) 推荐(0)
摘要: androguard. 这个是python写的 安装: pip install androguard 阅读全文
posted @ 2019-05-23 15:28 浪浪辛 阅读(575) 评论(0) 推荐(0)
摘要: 基础值:12 ldpi:mdpi:hdpi:xhdpi:xxhdpi:xxxhdpi=3:4:6:8:12:16 大小: 32x32.png 48x48.png 72x72.png 96x96.png 144x144.png 192x192.png 阅读全文
posted @ 2019-05-23 10:53 浪浪辛 阅读(525) 评论(0) 推荐(0)
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 37 下一页