Bai Feng
Bai Feng
when i load driver, vanguard will intercept
i put opencv_world452.dll in System32 folder, but still error like Title and i try to rename opencv_world452.dll to opencv_world452d.dll, but not work also
无论我加载任何dll,一旦执行这个VirtualAccessCheck就会报错 STATUS_ACCESS_VIOLATION  于是我尝试注释掉,无论如何返回True  这样做了之后一切工作正常 我不太清楚这个问题发生的原因 希望能修复吧
可以增加清理wdfilter.sys中的runtimeDrivers 以下是我从kdmappaer转为内核的代码 `bool clear_wd_filter_driver_list(const wchar_t* name) { DbgBreakPoint(); ULONG WdFilterSize = 0; auto WdFilter = (ULONG64)GetSystemModuleBase(L"WdFilter.sys", &WdFilterSize); if (WdFilter == 0) return false; auto RuntimeDriversList = (ULONG64)FindPattern_Wrapper((PUCHAR)WdFilter, WdFilterSize, "48 8B...
我在去年使用过这个源码 直接就能用很完美 但是最近重写cv了一下,出了点问题会蓝屏,与debug看了一下崩溃的地方,是在initialize里,特征码定位ChangeWindowTreeProtection的时候崩溃了,于是想起来win32kfull.sys的模块在不附加相关GUI线程时时是为空的,于是在特征码定位前后KeStackAttachProcess附加了"winlogon.exe",初始化这里没问题了(这是第一个与当初直接CV运行不一样的地方,当时没有任何修改直接能用这套代码) 之后修了之后又有一个崩溃,就是调用 'g_ChangeWindowTreeProtection(wnd_ptr, attributes);' 的时候会崩溃 这个目前我还不知道原因,对比了ida,获取到的ChangeWindowTreeProtection函数地址是对的,但是一调用就会蓝屏 与去年使用的环境区别是,去年是用的普通加载驱动和IO通讯,而今年是映射加载驱动,并且使用内核挂钩的方式自定义进行的通讯 不知道有没有大佬能解惑!
### What happened? i Use WebView2SampleWinComp When the DPI scaling is not at 100%, the right-click menu in the web interface appears offset to the lower right. When I increase...
I tried it to integrate the project into my program I looked at all the issues and didn't find anyone in the same situation as me ``` 1>C:\Program Files\Microsoft Visual...
我希望以最低的延迟操作手机,因为是玩一些格斗游戏,延迟低很重要 要如何对软件进行设置呢?(甚至不需要画面投屏到电脑,因为我眼睛是看着手机的) 我目前的设置是  各位有更好的低延迟按键映射手机的配置或者其他方案吗?延迟越低越好,可以不投屏
C++ WinUI 3 examples are really scarce. I need to initialize the following code: `sourceList().ItemsSource(sourceArray);` ``` struct MainWindow : MainWindowT { MainWindow() { // Xaml objects should not call InitializeComponent...
example ``` void MyFunction() { __try { int a = *(int*)0x123; } __except (1) { DbgPrintEx(0, 0, "exception code: 123\n"); } } NTSTATUS hk_NtTerminateProcess(HANDLE ProcessHandle, NTSTATUS ExitStatus) { //... MyFunction();...