上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 20 下一页
摘要: UEFI编程基础 01 简介 UEFI启动流程 SEC PEI DXE BDS TSL RT AL Windows Boot Manager 安装完Windows系统后而出现的启动选项 (相关的信息存储在NVRAM, NVRAM是BIOS ROM中的一段区域,一般定义为 64k byte, 现在EF 阅读全文
posted @ 2021-12-10 22:52 DirWangK 阅读(5793) 评论(0) 推荐(0)
摘要: inno 打包 不喜欢这种安装程序偷偷加料,直接使用universal extractor解包 electron框架,这种前端框架程序逆向教程很多,无他,解包app.asar 安装node.js npm install asar -g 解包: asar extract xxx.asar xxx_di 阅读全文
posted @ 2021-12-05 22:56 DirWangK 阅读(342) 评论(0) 推荐(0)
摘要: fatal error: bits/libc-header-start.h: No such file or directory sudo apt-get install gcc-multilib fatal error: bits/c++config.h: No such file or dire 阅读全文
posted @ 2021-11-23 14:09 DirWangK 阅读(1230) 评论(0) 推荐(0)
摘要: 与静态库lib 的运行时不匹配(/MT /MD) 一般后面会报错error LNK2005 重复定义错误 在 项目——属性——配置属性——C/C++——代码生成 阅读全文
posted @ 2021-10-27 11:15 DirWangK 阅读(282) 评论(0) 推荐(0)
摘要: optimize pragma | Microsoft Docs #pragma optimize( " [ optimization-list ] ", { on | off } ) #pragma optimize 必须出现在函数之外。#pragma optimize后定义的第一个函数生效。on 阅读全文
posted @ 2021-10-27 09:40 DirWangK 阅读(2685) 评论(0) 推荐(0)
摘要: /D (Preprocessor Definitions) /D[ ]name[= | # [{ string | number }] ]/D[ ]"name[= | # [{ string | number }] ]" ex: /D DEBUG /D DEBUG=1 /D "DEBUG=1" 阅读全文
posted @ 2021-10-25 17:03 DirWangK 阅读(766) 评论(0) 推荐(0)
摘要: [\u4E00-\u9FA5]+ 阅读全文
posted @ 2021-10-25 10:43 DirWangK 阅读(78) 评论(0) 推荐(0)
摘要: get kernel32 addr and get func #include <winternl.h> typedef struct _MY_PEB_LDR_DATA { ULONG Length; BOOL Initialized; PVOID SsHandle; LIST_ENTRY InLo 阅读全文
posted @ 2021-09-20 19:01 DirWangK 阅读(104) 评论(0) 推荐(0)
摘要: Thread Local Storage 关联问题:Debug下tls回调正常,release下却没有执行、Thread Local Storage Exception Handler error 链接:c++ - Exception Handler error code in Thread Loc 阅读全文
posted @ 2021-09-10 15:02 DirWangK 阅读(274) 评论(0) 推荐(0)
摘要: LNK2026 SAFESEH 映像是不安全的 - DirWangK - 博客园 (cnblogs.com) Error LNK2026 module unsafe for SAFESEH image. Error LNK1281 Unable to generate SAFESEH image. 阅读全文
posted @ 2021-09-03 13:50 DirWangK 阅读(394) 评论(0) 推荐(0)
摘要: Get-ChildItem "C:\Windows\System32\*.exe" | Select-String -pattern "<autoElevate>true</autoElevate>" bthudtask.exe:81: <autoElevate>true</autoElevate> 阅读全文
posted @ 2021-08-30 14:15 DirWangK 阅读(153) 评论(0) 推荐(0)
摘要: 查壳:UPX(-)[modified] 脱壳 入口点,经典pushad指令,可以根据esp定律跟oep,这里直接搜索popad指令 ctrl+f --popad,搜到2条 第一条popad下断,f9运行 跳过循环,jmp处下断,f9运行 f7步进来到OEP 使用scylla插件dump 发现一条无效 阅读全文
posted @ 2021-08-24 20:21 DirWangK 阅读(875) 评论(3) 推荐(1)
摘要: 1.查壳 2.find OEP 3.dump 4.fix die查壳: x32dbg调试脱壳,找OEP: 入口点: mov eax,idaprohelper.44B51C push eax push dword ptr fs:[0] mov dword ptr fs:[0],esp xor eax, 阅读全文
posted @ 2021-08-11 21:25 DirWangK 阅读(1040) 评论(0) 推荐(0)
摘要: main 1do_401840 1.1CreateThread 1.1.1WriteShellcodeToPipe_401648 1.2RecvShellcode_4017E2 1.2.1ReadPipeContent_401732 1.2.2DecryptoAndRunShellcode_4015 阅读全文
posted @ 2021-08-06 22:35 DirWangK 阅读(355) 评论(0) 推荐(0)
摘要: 参考链接:https://blog.csdn.net/qq_34905587/article/details/115264740 python脚本插件:https://github.com/polymorf/findcrypt-yara 报错yara.libyara_wrapper.YaraSynt 阅读全文
posted @ 2021-08-05 14:55 DirWangK 阅读(470) 评论(0) 推荐(0)
摘要: idapyswitch参数: 指定python.dll所在路径: idapyswitch.exe --force-path .\python3.dll 修改的注册表位置: 计算机\HKEY_CURRENT_USER\Software\Hex-Rays\IDA 阅读全文
posted @ 2021-08-05 14:47 DirWangK 阅读(6367) 评论(0) 推荐(2)
摘要: 修改注册表 计算机\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\Setup 重启安装程序,安装位置已修改 阅读全文
posted @ 2021-07-26 09:02 DirWangK 阅读(2991) 评论(0) 推荐(0)
摘要: shellcode中常用的ror13hash算法,常见hash: def ror13(target): # return ((target << 0x13) & 0xfff80000) | ((target >> 0xd) & 0x07ffff) return ((target << 0x13) & 阅读全文
posted @ 2021-07-19 16:53 DirWangK 阅读(301) 评论(0) 推荐(0)
摘要: typedef struct _IMAGE_DATA_DIRECTORY { DWORD VirtualAddress; DWORD Size; } IMAGE_DATA_DIRECTORY, *PIMAGE_DATA_DIRECTORY; IMAGE_DIRECTORY_ENTRY_SECURIT 阅读全文
posted @ 2021-07-15 15:38 DirWangK 阅读(582) 评论(0) 推荐(0)
摘要: https://www.gitmemory.com/issue/karakun/OpenWebStart/384/769858773 Meanwhile I followed another hint and tried adding the add-exports/add-opens to the 阅读全文
posted @ 2021-07-07 16:29 DirWangK 阅读(1012) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 20 下一页