Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any way to keep users from saving documents locally?

If users view documents on my website (for example a pdf file that represents some confidential information), is there anyway I can prevent them from saving the document locally?

like image 310
Kishnan Avatar asked Mar 10 '09 13:03

Kishnan


People also ask

How do I restrict local drive access?

Enter "gpedit. msc". Under "User Configuration\Administrative Templates\All Settings" look for a setting named "Prevent access to drives from My Computer" and double-click on it. Select "Enabled" and "Restrict all drives", and click OK.

How do I stop a user from writing to C drive?

Using Registry EditorRight-click on Explorer, select New > DWORD (32-bit) value and name it as NoViewOnDrive. Next, double-click on it, set the value as 4 (to prevent C drive), or 3ffffff (to restrict all drives). Then, click OK to save the change. That's all!


1 Answers

In a word - no.

Once you've sent the data to their browser they can do what they want with it.

You could use some Flash Component or Java Applet to make it harder to save the information but they could still take a screenshot of the browser and save that locally.

The only practical approach is to ensure only trusted users can access the information (which you're probably doing already).

like image 190
Dave Webb Avatar answered Oct 21 '22 08:10

Dave Webb