1   1  /  1  页   跳转

[RAV] \Device\HardDiskVolume1

\Device\HardDiskVolume1

瑞星只要发现用\Device\HardDiskVolumeX的就说是访问物理磁盘,没这么严重吧?有很多软件如SougouExplorer和VMWareService都被拦截了,但显然它们没有干坏事。

用户系统信息:Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0)
分享到:
gototop
 

回复:\Device\HardDiskVolume1

建议您提供详细信息,便于我们进一步检测。
gototop
 

回复: \Device\HardDiskVolume1

LZ说的是这个吧:


系统加固里的默认设置里没有勾选底层磁盘访问保护的。本来底层磁盘访问危害就比较大,VM 、Sougou explorer等访问底层磁盘,直接阻止也没有影响
有的恶意程序不能保证不做坏事了。。。。
最后编辑backway 最后编辑于 2009-06-29 17:50:42
gototop
 

回复:\Device\HardDiskVolume1

楼主把这些您认为正常的程序添加到白名单中看看
gototop
 

回复: \Device\HardDiskVolume1

................
void RtlInitUnicodeString(PUNICODE_STRING UnicodeString,PWSTR Buffer)
{ UnicodeString->Buffer=Buffer;
UnicodeString->Length=wcslen(Buffer)*2;
UnicodeString->MaxLength=wcslen(Buffer)*2;}
int APIENTRY WinMain(HINSTANCE hInstance,
                    HINSTANCE hPrevInstance,
                    LPSTR    lpCmdLine,
                    int      nCmdShow)
{
_NtOpenFile NtOpenFile=(_NtOpenFile)GetProcAddress(GetModuleHandle("ntdll.dll"),"NtOpenFile");
OBJECT_ATTRIBUTES oa;UNICODE_STRING on;IO_STATUS_BLOCK iosb;FourByte FileHandle,r;char str[255];
RtlInitUnicodeString(&on,L"[url=file://\\Device\\HarddiskVolume1]\\Device\\HarddiskVolume1[/url]");
//RtlInitUnicodeString(&on,L"[url=file://\\??\\C:\\]\\??\\C:\\[/url]");
oa.Length=sizeof(OBJECT_ATTRIBUTES);
oa.ObjectName=&on;
oa.Attributes=0x40;
oa.RootDirectory=oa.SecurityDescriptor=oa.SecurityQualityOfService=0;
r=NtOpenFile(FileHandle,GENERIC_READ,&oa,&iosb,5,0);
itoa(r,(char*)&str,16);
MessageBox(0,(const char*)&str,"a",0);
return 0;
}
.................
比如说用NtOpenFile打开文件,如果文件名是\Device\HarddiskVolume1且企求的访问是GENERIC_READ或GENERIC_WRITE等就会被拦截,我认为只要拦截WRITE操作就行了,读操作不会破坏硬盘。而且瑞星不会拦截打开\??\C:\的操作,但\??\C:\转换后就是\Device\HarddiskVolume1。瑞星最好做好拦截驱动程序操作硬盘的工作,驱动程序完全可绕过瑞星的SSDT重定向。在SSDT重定向做再多hook NtOpenFile,NtCreateFile的事,驱动程序一个IoCreateFile或IoCallDriver就完了。
最后编辑通讯地址 最后编辑于 2009-06-29 18:56:49
gototop
 
1   1  /  1  页   跳转
页面顶部
Powered by Discuz!NT