首页
登录
注册
首页
我
Sign in
Sign up
#Windows
计算机天才
·
2023年05月28日 10:25
windows powershell 等价|grep的用法
grep是linux下的一个程序,用来对shell输出的字符串过滤的。windows下一般是没有的,但是powershell有相应的功能findstr。 Example: CMake --sys...
Windows
PowerShell
favorite
0
comment
0
计算机天才
·
2023年05月28日 10:21
windows powershell 更换控制台编码
切换到utf-8,不然有时候输出中文会乱码 chcp 65001
Windows
PowerShell
favorite
0
comment
0
计算机天才
·
2023年05月22日 09:06
如何判断Visual Studio 编译的lib/dll运行库的链接方式
dumpbin.exe /directives <lib名称>
Windows
VisualStudio
favorite
0
comment
0
计算机天才
·
2023年05月16日 09:05
RetDec框架之bin2llvmir工具的使用
python .\retdec-decompiler.py <binary_path> 测试代码 #include<iostream> #include<wind...
Windows
逆向工程
favorite
0
comment
0
计算机天才
·
2023年05月15日 06:10
VisualStudio Release编译开启调试
有时候项目因为各种情况是需要必须以发布(Release)的形式编译的。 这个时候变量优化严重,调试不了的。 Debug Release 把Release优化的选项搞成debug一样的就可以了。
Windows
VisualStudio
favorite
0
comment
0
计算机天才
·
2023年04月27日 10:33
visual studio编译汇编源文件
以前那个方法太麻烦了。 今天学会一个新的 不勾选是没有masm这个选项的
Windows
VisualStudio
favorite
0
comment
0
计算机天才
·
2023年04月18日 15:26
binary ninja如何安装和编写插件
binary ninja也是逆向的一员大将。 安装 第一种方式 一般这种情况下插件的存放地点都是github, git clone 仓库地址 第二种方式 第二种不知道咋用,没研究过...
Windows
BinaryNinja
Plugin
favorite
0
comment
0
计算机天才
·
2023年04月10日 09:46
关于Hyper-V和Vmware配置网络的问题
// 不要加-b 127.0.0.1参数 python -m http.server 8000 https://www.jianshu.com/p/4f8efbd91292
Windows
Hyper-V
favorite
0
comment
0
计算机天才
·
2023年04月07日 15:07
windows 系统DLL imagehlp.dll研究
主要是在用procmon研究一个软件的时候发现它加载了这个dll。 https://learn.microsoft.com/en-us/windows/win32/debug/image-hel...
Windows
favorite
0
comment
0
计算机天才
·
2023年04月05日 06:51
利用processhakcer库让用户层开发使用内核层的变量或类型
git clone https://github.com/processhacker/phnt.git #include"phnt/phnt_windows.h" #include"phnt/p...
Windows
ProcessHacker
favorite
0
comment
0
查看更多