摘要:
创建插件 mkdir win_test && cd win_test flutter create -t plugin --platforms windows ./ 找到win_test\example\build\windows\plugins\win_test\win_test_plugin.s 阅读全文
摘要:
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 ; ; ; 返回一个指针,该指针指向 阅读全文
摘要:
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 ; ; ; 返回不属于一组字符的字符串 阅读全文
摘要:
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 ; ; ; 将字符串的字符设置为字 阅读全文
摘要:
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 ; ; ; 反转字符串的字符。 ; ; 阅读全文
摘要:
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 ; ; ; 扫描字符串以查找字符的最 阅读全文
摘要:
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 ; ; ; 比较最多两个字符串的指 阅读全文
摘要:
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 阅读全文
摘要:
sysmain.c #pragma warning(disable: 4100 4047 4024) #pragma once #include <ntifs.h> #include <ntddk.h> NTKERNELAPI NTSTATUS MmCopyVirtualMemory( // 从哪里 阅读全文
摘要:
创建 >sc create <service name> type=kernel binpath="C:\hsys.sys" 删除 win+r 输出 regedit HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services 找到你注册的服务名,右键删除掉,重启 阅读全文