A forum for reverse engineering, OS internals and malware analysis 

Forum for discussion about kernel-mode development.
 #11246  by r2nwcnydc
 Tue Jan 24, 2012 9:01 pm
A colleague came across this registry path (\Registry\A\..) today, which is something I haven't noticed before. I found a small bit of information about it, but not much. I thought it looked interesting so I figured I'd share. If anyone has more information please let me know.

http://stackoverflow.com/questions/4611 ... registry-a
 #11247  by EP_X0FF
 Wed Jan 25, 2012 2:50 am
The driver which is responsible for this hive is discache.sys Hive itself on disk located in "System Volume Information\Syscache.hve" file.
Root key created by function ScpInitializeCache->DisCreateObjectAttributeStore->DispBuildRootKeyName, which also allocates special security descriptor (DispCreateDefaultSecurityDescriptor).
According to handles they all used by driver itself (search for \A\ with ProcExp).

Some sort of special database for file caching purposes.
 #11260  by Vrtule
 Wed Jan 25, 2012 9:37 am
I ran accross this strange hive some time ago during writting driver for direct registry hive scanning. Its contents looked like as a kind of cache. I only noticed that the hive is mounted (or created) when I started regedit.exe.

Thanks for the information.