会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
hoy0a1d's Blog
首页
新随笔
管理
2022年11月11日
[C++]对照代码学习反汇编
摘要: 程序代码: 1 #include <iostream> 2 3 int main() 4 { 5 int i, j, k; 6 int result = 0; 7 for(i = 1; i <= 4; i++) 8 for(j = 1; j <= 4; j++) 9 for(k = 1; k <=
阅读全文
posted @ 2022-11-11 14:54 hoy0a1d
阅读(95)
评论(0)
推荐(0)
2020年7月15日
[C++]枚举目录内文件
摘要: 1 #include <windows.h> 2 #include <iostream> 3 #include <fstream> 4 5 using namespace std; 6 7 DWORD ListDir(LPSTR szPath) 8 { 9 WIN32_FIND_DATA ListF
阅读全文
posted @ 2020-07-15 13:18 hoy0a1d
阅读(549)
评论(0)
推荐(0)
2018年12月29日
[C++]类似九宫格算法的CrackMe
摘要: 1 #include <iostream> 2 #include <string.h> 3 using namespace std; 4 5 int main() 6 { 7 char RegKey[200]; // 320816081632163208 8 int tip[21] = {80, 1
阅读全文
posted @ 2018-12-29 18:00 hoy0a1d
阅读(248)
评论(0)
推荐(0)
2018年7月5日
[C++]open3389
摘要: 1 #include <windows.h> 2 3 int main() 4 { 5 HKEY hKEY; 6 DWORD dwStart = 2; 7 DWORD dwfD = 0; 8 DWORD dwPortNumber = 0xd3d; 9 10 if(ERROR_SUCCESS == R
阅读全文
posted @ 2018-07-05 16:40 hoy0a1d
阅读(311)
评论(0)
推荐(0)
[VB]文件 hash 查看器
摘要: 窗体代码 1 Private Sub Text1_OLEDragDrop(Data As DataObject, Effect As Long, Button As Integer, Shift As Integer, X As Single, Y As Single) 2 Dim path As
阅读全文
posted @ 2018-07-05 00:04 hoy0a1d
阅读(647)
评论(0)
推荐(0)
2018年7月3日
[C++]设置文件夹图标
摘要: 1 #include <iostream> 2 #include <string> 3 #include <windows.h> 4 5 using namespace std; 6 7 int main(int argc, char *argv[]) 8 { 9 if(argc != 3) //
阅读全文
posted @ 2018-07-03 15:33 hoy0a1d
阅读(935)
评论(0)
推荐(0)
[C++]关闭默认共享
摘要: 1 #include <windows.h> 2 using namespace std; 3 4 int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, 5 LPSTR lpCmdLine, int nCmdShow) 6
阅读全文
posted @ 2018-07-03 12:29 hoy0a1d
阅读(319)
评论(0)
推荐(0)
2018年6月29日
[C++]以屏保方式启动 exe 文件
摘要: 1 #include <windows.h> 2 using namespace std; 3 4 int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, 5 LPSTR lpCmdLine, int nCmdShow) 6
阅读全文
posted @ 2018-06-29 13:49 hoy0a1d
阅读(502)
评论(0)
推荐(0)
2018年6月24日
[C++]删除注册表
摘要: 1 #include <iostream> 2 #include <windows.h> 3 using namespace std; 4 5 int main() 6 { 7 HKEY hKEY; 8 if(ERROR_SUCCESS == RegOpenKeyEx(HKEY_LOCAL_MACH
阅读全文
posted @ 2018-06-24 00:32 hoy0a1d
阅读(2362)
评论(0)
推荐(0)
[C++]读注册表
摘要: 1 #include <iostream> 2 #include <windows.h> 3 using namespace std; 4 5 int main() 6 { 7 HKEY hKEY; 8 char *KeyPath = "SYSTEM\\CurrentControlSet\\serv
阅读全文
posted @ 2018-06-24 00:13 hoy0a1d
阅读(351)
评论(0)
推荐(0)
下一页
公告