Delete Page Files for Security
------------------------------
Taken from a TechRepublic Email.
------------------------------
Quote:
Secure the system at shutdown by deleting page files
Windows NT page files contain data that doesn't fit in the main memory. For instance, if a computer has 256 MB of RAM but more memory is required to run an application, the operating system will temporarily move data from the RAM to a page file in order to free memory for the new data. When the paged data is requested, the operating system pages other data to a page file and moves the paged data back to RAM.
While page files are beneficial, they also pose a security threat. When the computer is shut down, an attacker can potentially retrieve passwords and other sensitive data within the page files. To secure your valuable data, conduct this registry edit that forces NT to delete page files during shutdown.
Open Regedt32.exe.
Go to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management.
Add a REG_DWORD value type with the value name ClearPageFileAtShutdown.
Set the data value to 1.
Quit Regedt32.exe.
Restart the computer.
The registry edit makes the system shutdown slower, but the data located on the hard drive will be secure.
Note: Editing the registry is risky, so be sure you have a verified backup before making any changes.
Enjoy..
I think this would only be useful if the PC is publicly accessible, as aren't the page files locked when the PC is running, so you would need to use some program that doesn't mind working with open files..
Re: Delete Page Files for Security
Quote:
Originally posted here by Matty_Cross
Enjoy..
I think this would only be useful if the PC is publicly accessible, as aren't the page files locked when the PC is running, so you would need to use some program that doesn't mind working with open files..
Seems I didn't make myself very clear...
That was a question... I'm pretty certain that page files are locked, so you would need something 'special' to access them at runtime... but would it be possible to browse the page file remotely?
If you can view them remotely, Why? I mean, its not something that I can envision as being a really commonly useable feature of Windows, especially considering a large part of what is viewable in the page file is useless to the reader.....
If so, How, and does anyone know any other methods of beating such access other than the registry edit shown above.. I mean, that's only useful if you shut down your PC so that it can delete the old page file... but what about on a server?