会员
周边
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Ajanuw
做自己的King
博客园
首页
管理
上一页
1
···
7
8
9
10
11
12
13
14
15
···
40
下一页
2020年9月30日
flutter 使用vs编辑windows插件
摘要: 创建插件 mkdir win_test && cd win_test flutter create -t plugin --platforms windows ./ 找到win_test\example\build\windows\plugins\win_test\win_test_plugin.s
阅读全文
posted @ 2020-09-30 15:40 Ajanuw
阅读(846)
评论(0)
推荐(0)
2020年9月28日
nasm astrstr函数 x86
摘要: xxx.asm: %define p1 ebp+8 %define p2 ebp+12 %define p3 ebp+16 section .text global dllmain export astrstr dllmain: mov eax,1 ret 12 ; ; ; 返回一个指针,该指针指向
阅读全文
posted @ 2020-09-28 11:26 Ajanuw
阅读(201)
评论(0)
推荐(0)
nasm astrspn函数 x86
摘要: xxx.asm %define p1 ebp+8 %define p2 ebp+12 %define p3 ebp+16 section .text global dllmain export astrspn dllmain: mov eax,1 ret 12 ; ; ; 返回不属于一组字符的字符串
阅读全文
posted @ 2020-09-28 10:05 Ajanuw
阅读(186)
评论(0)
推荐(0)
nasm astrset_s函数 x86
摘要: xxx.asm %define p1 ebp+8 %define p2 ebp+12 %define p3 ebp+16 section .text global dllmain export astrset_s dllmain: mov eax,1 ret 12 ; ; ; 将字符串的字符设置为字
阅读全文
posted @ 2020-09-28 09:39 Ajanuw
阅读(156)
评论(0)
推荐(0)
nasm astrrev函数 x86
摘要: xxx.asm %define p1 ebp+8 %define p2 ebp+12 %define p3 ebp+16 section .text global dllmain export astrrev dllmain: mov eax,1 ret 12 ; ; ; 反转字符串的字符。 ; ;
阅读全文
posted @ 2020-09-28 09:28 Ajanuw
阅读(157)
评论(0)
推荐(0)
2020年9月27日
nasm astrrchr函数 x86
摘要: xxx.asm %define p1 ebp+8 %define p2 ebp+12 %define p3 ebp+16 section .text global dllmain export astrrchr dllmain: mov eax,1 ret 12 ; ; ; 扫描字符串以查找字符的最
阅读全文
posted @ 2020-09-27 23:36 Ajanuw
阅读(136)
评论(0)
推荐(0)
nasm astrncmp函数 x86
摘要: xxx.asm: %define p1 ebp+8 %define p2 ebp+12 %define p3 ebp+16 section .text global dllmain export astrncmp dllmain: mov eax,1 ret 12 ; ; ; 比较最多两个字符串的指
阅读全文
posted @ 2020-09-27 23:13 Ajanuw
阅读(169)
评论(0)
推荐(0)
nasm astrncat_s函数 x86
摘要: xxx.asm: %define p1 ebp+8 %define p2 ebp+12 %define p3 ebp+16 %define p4 ebp+20 section .text global dllmain export astrncat_s dllmain: mov eax,1 ret
阅读全文
posted @ 2020-09-27 23:00 Ajanuw
阅读(170)
评论(0)
推荐(0)
windows 内核模式读写内存
摘要: sysmain.c #pragma warning(disable: 4100 4047 4024) #pragma once #include <ntifs.h> #include <ntddk.h> NTKERNELAPI NTSTATUS MmCopyVirtualMemory( // 从哪里
阅读全文
posted @ 2020-09-27 17:35 Ajanuw
阅读(965)
评论(0)
推荐(0)
windwos创建和删除服务
摘要: 创建 >sc create <service name> type=kernel binpath="C:\hsys.sys" 删除 win+r 输出 regedit HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services 找到你注册的服务名,右键删除掉,重启
阅读全文
posted @ 2020-09-27 17:28 Ajanuw
阅读(181)
评论(0)
推荐(0)
上一页
1
···
7
8
9
10
11
12
13
14
15
···
40
下一页