上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 20 下一页
摘要: win+r运行 regedit HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer 修改NoRecycleFiles值为0,重启电脑 重启电脑后回收站可进行设置 阅读全文
posted @ 2020-08-03 18:36 DirWangK 阅读(362) 评论(0) 推荐(0)
摘要: https://githomelab.ru/pykd/pykd 1、安装python (坑,分x86和x64,对应windbg版本) 2、安装pykd:'pip install pykd' 3、安装Windbg插件, 下载地址:https://githomelab.ru/pykd/pykd-ext/ 阅读全文
posted @ 2020-07-31 19:16 DirWangK 阅读(1639) 评论(0) 推荐(0)
摘要: 1、管理-->设置 2、申请js权限, (这是申请通过之后) 3、页面HTML代码 <script type="text/javascript" charset="utf-8" async="" src="https://cdn.jsdelivr.net/npm/live2d-widget@3.0. 阅读全文
posted @ 2020-07-29 19:14 DirWangK 阅读(1039) 评论(0) 推荐(1)
摘要: cmd中执行python提示:ImportError: No module named site 运行python.exe Fatal Python error: initfsencoding: unable to load the file system codecModuleNotFoundEr 阅读全文
posted @ 2020-07-29 19:04 DirWangK 阅读(1471) 评论(0) 推荐(0)
摘要: CreateProcess(TEXT("C:\\Program Files(x86)\\Internet Explorer\\iexplore.exe"), NULL, NULL, NULL, FALSE, 0, NULL, NULL, &startinfo, &proinfo); 得到一个无效的p 阅读全文
posted @ 2020-03-01 17:24 DirWangK 阅读(99) 评论(0) 推荐(0)
摘要: Windows_Reverse2 2019_DDCTF 查壳: 寻找oep-->dump-->iat修复 便可成功脱壳 int __cdecl main(int argc, const char **argv, const char **envp) { char Dest; // [esp+8h] 阅读全文
posted @ 2020-02-22 21:41 DirWangK 阅读(1141) 评论(0) 推荐(0)
摘要: way 1、help() way 2、dir() # dir() 函数不带参数时,返回当前范围内的变量、方法和定义的类型列表; way 3、 使用inspect模块, inspect.getmembers(object [,predicate ] ) 返回 按名称排序的对列表中的对象的所有成员。如果 阅读全文
posted @ 2020-02-16 11:56 DirWangK 阅读(1081) 评论(0) 推荐(0)
摘要: 使用symchk.exe 逐层下载c:\windows\system32下的pdb文件 symchk /r c:\windows\system32 /s SRV*D:\mypdb\*http://msdl.microsoft.com/download/symbols (存储路径) 需要****。。。 阅读全文
posted @ 2020-02-14 22:31 DirWangK 阅读(4104) 评论(3) 推荐(0)
摘要: 效果图: 链接:https://godbolt.org/ 阅读全文
posted @ 2020-02-14 13:12 DirWangK 阅读(3244) 评论(0) 推荐(0)
摘要: Using IDAPython to Make Your Life Easier: Part 6 原文:https://unit42.paloaltonetworks.com/unit42-using-idapython-to-make-your-life-easier-part-6/ 在我们的ID 阅读全文
posted @ 2020-02-14 12:49 DirWangK 阅读(519) 评论(0) 推荐(0)
摘要: Using IDAPython to Make Your Life Easier: Part 5 原文:https://unit42.paloaltonetworks.com/using-idapython-to-make-your-life-easier-part-5 我们将继续使用IDAPyth 阅读全文
posted @ 2020-02-14 12:48 DirWangK 阅读(393) 评论(0) 推荐(0)
摘要: Using IDAPython to Make Your Life Easier: Part 4 原文:https://unit42.paloaltonetworks.com/using-idapython-to-make-your-life-easier-part-4/ 本系列的前几期(第1部分, 阅读全文
posted @ 2020-02-14 12:46 DirWangK 阅读(303) 评论(0) 推荐(0)
摘要: Using IDAPython to Make Your Life Easier: Part 3 原文:https://unit42.paloaltonetworks.com/using-idapython-to-make-your-life-easier-part-3/ 在本系列的前两篇文章(第1 阅读全文
posted @ 2020-02-14 12:45 DirWangK 阅读(380) 评论(0) 推荐(0)
摘要: Using IDAPython to Make Your Life Easier: Part 2 原文:https://unit42.paloaltonetworks.com/using-idapython-to-make-your-life-easier-part-2/ 继续使用IDAPython 阅读全文
posted @ 2020-02-14 12:43 DirWangK 阅读(385) 评论(0) 推荐(0)
摘要: Using IDAPython to Make Your Life Easier: Part 1 使用IDAPython简化生活:第1部分 原文:https://unit42.paloaltonetworks.com/using-idapython-to-make-your-life-easier- 阅读全文
posted @ 2020-02-14 12:41 DirWangK 阅读(438) 评论(0) 推荐(0)
摘要: Unicorn是一个轻量级的多平台,多体系结构的CPU仿真器框架。官网:http://www.unicorn-engine.org/ Capstone是一个轻量级的多平台,多体系结构的反汇编框架。官网:http://www.capstone-engine.org/ 参考:https://bbs.pe 阅读全文
posted @ 2020-02-11 22:36 DirWangK 阅读(1086) 评论(0) 推荐(0)
摘要: LuckyStar hctf2018 程序注册有TLS回调函数 char __stdcall TlsCallback_0(int a1, int a2, int a3) { char result; // al HMODULE v4; // eax HMODULE v5; // eax HMODUL 阅读全文
posted @ 2020-02-09 22:01 DirWangK 阅读(472) 评论(0) 推荐(0)
摘要: 如果在case语句中有定义变量,则必须要加{},否则会报错。 阅读全文
posted @ 2020-02-08 20:36 DirWangK 阅读(454) 评论(0) 推荐(0)
摘要: vs2017下自动创建的窗口程序 // win_test.cpp : 定义应用程序的入口点。 // #include "framework.h" #include "win_test.h" #define MAX_LOADSTRING 100 // 全局变量: HINSTANCE hInst; // 阅读全文
posted @ 2020-02-08 19:19 DirWangK 阅读(291) 评论(0) 推荐(0)
摘要: easy_Maze 从题目可得知是简单的迷宫问题 int __cdecl main(int argc, const char **argv, const char **envp) { __int64 v3; // rax int v5[49]; // [rsp+0h] [rbp-270h] int 阅读全文
posted @ 2020-02-08 11:56 DirWangK 阅读(922) 评论(0) 推荐(0)
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 20 下一页