上一页 1 2 3 4 5 6 7 ··· 15 下一页
摘要: Delphi程序,逆向注意函数调用方式 软件本身免费,注册没有添加功能仅隐藏了营销信息,破解意义不大。 register_B48800 注册按钮事件 register_check_B4957C 处理在线注册结果 sub_B6FBD8 启动时检测 patch-->sub_B6FBD8 start_ch 阅读全文
posted @ 2022-12-23 15:09 DirWangK 阅读(99) 评论(0) 推荐(0) 编辑
摘要: F12 搜索gray 删除 到处都是黑白页的网页怎么破? 阅读全文
posted @ 2022-12-02 12:40 DirWangK 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 双机调试下,调试服务进程启动时的代码 设置NtCreateUserProcess断点 bp nt!NtCreateUserProcess 查看进程路径 dx ((nt!_RTL_USER_PROCESS_PARAMETERS**)(@$csp+89))->ImagePathName g/pa 非目标 阅读全文
posted @ 2022-12-01 20:42 DirWangK 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 定位 通过MessageBoxW回溯到init_1400C9030 init_1400C9030 int init_1400C9030() { // [COLLAPSED LOCAL DECLARATIONS. PRESS KEYPAD CTRL-"+" TO EXPAND] sub_140072B 阅读全文
posted @ 2022-11-30 12:42 DirWangK 阅读(533) 评论(1) 推荐(0) 编辑
摘要: bpf汇编指令 ld #len sub #6 tax ldh [x+0] or #0xe6cf st M[4] ldh [x+0] and #0xe6cf neg sub #1 tax ld M[4] and x tax st M[4] ld #len sub x tax ldh [x+0] st 阅读全文
posted @ 2022-11-24 18:00 DirWangK 阅读(33) 评论(0) 推荐(0) 编辑
摘要: import idc import idautils ea=get_screen_ea() #x64 for addr in range(ea,ea+0x100,8): idc.op_plain_offset(addr,1,0) 阅读全文
posted @ 2022-11-08 16:25 DirWangK 阅读(36) 评论(0) 推荐(0) 编辑
摘要: unsigned long long MurmurHash64B(const void* key, int len, unsigned int seed) { const unsigned int m = 0x5bd1e995; const int r = 24; unsigned int h1 = 阅读全文
posted @ 2022-11-05 17:10 DirWangK 阅读(25) 评论(0) 推荐(0) 编辑
摘要: PyArmor-Unpacker 阅读全文
posted @ 2022-11-01 19:27 DirWangK 阅读(230) 评论(0) 推荐(0) 编辑
摘要: 概述 结构 vm_context(vm寄存器) vm_stack(vm栈) vm_instructions(vm指令) 流程 vm_entry vm_context_init vm_handle vm_stack_restore vm_exit 分析 vm_entry #保存寄存器值到vmstack 阅读全文
posted @ 2022-10-19 22:55 DirWangK 阅读(379) 评论(0) 推荐(0) 编辑
摘要: ![image](https://img2022.cnblogs.com/blog/1145982/202210/1145982-20221018222421427-217131884.png) ![image](https://img2022.cnblogs.com/blog/1145982/202210/1145982-20221018222426122-2052749520.png) ![i 阅读全文
posted @ 2022-10-18 22:25 DirWangK 阅读(34) 评论(0) 推荐(0) 编辑
摘要: WeChatAppHost.dll-->EncryptBufToFile char __cdecl EncryptBufToFile_1001D19D(char *appid_1, char *path, void *Src, size_t Size) { // [COLLAPSED LOCAL D 阅读全文
posted @ 2022-10-02 17:12 DirWangK 阅读(1450) 评论(0) 推荐(0) 编辑
摘要: Tricephalic Hellkeeper: a tale of a passive backdoor下载链接 最近学习ebpf看到篇样本分析"Tricephalic Hellkeeper: a tale of a passive backdoor",记录一下 隐蔽通信利用过滤特定包,类似有: c 阅读全文
posted @ 2022-09-22 23:02 DirWangK 阅读(68) 评论(0) 推荐(0) 编辑
摘要: 利用ja-netfilter配合其mymap插件 检查hosts文件 C:\Windows\System32\drivers\etc\hosts 确保没有JetBrains 相关项 运行scripts下相应install脚本文件 脚本修改vmoptions目录下.vmoptions文件,检测ide并 阅读全文
posted @ 2022-09-03 18:09 DirWangK 阅读(120) 评论(0) 推荐(0) 编辑
摘要: # 下载到home中 wget https://www.python.org/ftp/python/3.9.0/Python-3.9.0.tgz # 在home中解压 tar -zxf Python-3.9.0.tgz # 进入python3.9 cd Python-3.9.0 ./configur 阅读全文
posted @ 2022-09-02 15:36 DirWangK 阅读(323) 评论(0) 推荐(0) 编辑
摘要: 关联:360安全浏览器历史记录、收藏夹 下载链接:https://files.cnblogs.com/files/DirWang/360se_getdbkey.zip?t=1661006095 阅读全文
posted @ 2022-08-20 22:38 DirWangK 阅读(103) 评论(8) 推荐(0) 编辑
摘要: 数据结构 利用qiling 分析 httpstager shellcode import os from typing import Dict from qiling import * from qiling.const import * from unicorn import * from uni 阅读全文
posted @ 2022-08-02 17:29 DirWangK 阅读(1058) 评论(0) 推荐(0) 编辑
摘要: WARNING: pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.WARNING: Retrying (Retry(total=4, co 阅读全文
posted @ 2022-07-10 21:41 DirWangK 阅读(413) 评论(0) 推荐(0) 编辑
摘要: 解析360History、360Bookmarks 版本信息 360se13.1.6055.0 User Data\Default\360History 加密的sqlite数据库 User Data\Default\360Bookmarks 加密的收藏夹信息 数据库key生成 dataone: st 阅读全文
posted @ 2022-07-10 21:31 DirWangK 阅读(1501) 评论(3) 推荐(1) 编辑
摘要: PE信息 分析 伪装检测邮件 创建线程加载shellcode 动态加载函数 通过GetTickCount反沙箱、反调试 通过uuid加载shellcode cs stager shellcode 阅读全文
posted @ 2022-06-19 17:51 DirWangK 阅读(69) 评论(0) 推荐(0) 编辑
摘要: 1.解包app.asar 安装node.js npm install asar -g 解包: asar extract xxx.asar xxx_dir 打包 : asar pack xxx_dir xxx.asar 2.分析main.node模块 定位main main-->加载解密atom.js 阅读全文
posted @ 2022-06-18 19:51 DirWangK 阅读(181) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 15 下一页