You are here

mount to folder + no admin rights + Open Source - any encryption tool?

8 posts / 0 new
Last post
jps
Offline
Last seen: 15 years 10 months ago
Joined: 2007-06-09 13:23
mount to folder + no admin rights + Open Source - any encryption tool?

TrueCrypt is great but lacks an important feature. Mounting to folder instant of drive so it wouldn`t need admin rights.

Is there already another tools which can do this?

mstinaff
Offline
Last seen: 14 years 11 months ago
Joined: 2006-10-01 10:58
Not that I have found

I believe the issue is not that it is mounted as a drive that requires admin access. The fact that the encryption happens transparently to the applications is what requires the admin access. If I am not mistaken you could think of the encrypted data as a foreign file system type. To read it (mounted to a folder or drive) you would need to load a driver. Apps interface to Windows, Windows interfaces to driver, driver interfaces to encrypted data.

The only way that I think it could be done would be to create a wrapper around an app that you want to give access to encrypted data. By intercepting that app's calls to access the filesystem it could be possible to 'inject' an encrypted mount point in there.

I could be stupid and or wrong. If I am please show me the light.

Key ID: 0xDAE3095F
Fingerprint: 5D98 65D2 1844 21A5 76C1 F0F6 4BE6 D689 DAE3 095F

LOGAN-Portable
LOGAN-Portable's picture
Offline
Last seen: 12 years 6 days ago
Developer
Joined: 2007-09-11 12:24
Everything that mounts

Everything that mounts something needs a system driver (.sys). Every system driver needs Admin rights...

rab040ma
Offline
Last seen: 7 months 6 days ago
Joined: 2007-08-27 13:35
The system driver needs

The system driver needs Admin rights to be installed. Once it is installed, like all the other drivers on the computer, it is available to most non-Admin users.

The only non-Admin encryption we've identified is on certain USB drives with the encryption in the drive's firmware. The driver they use is the standard storage driver that comes with Windows, and thus doesn't need to be installed.

MC

LOGAN-Portable
LOGAN-Portable's picture
Offline
Last seen: 12 years 6 days ago
Developer
Joined: 2007-09-11 12:24
Yep, once installed for

Yep, once installed for example TrueCrypt, it doesn't need admin rights to be used. This might be an issue however on machines without TrueCrypt pre-installed.

But one might agree that if the content is encrypted it's for use on trusted PC's where the user has have admin rights or the encryption driver is installed. And on untrusted PC's one should not expose its encrypted data anyway.

Still I have encrypted FileZilla to protect my FTP account data.

jps
Offline
Last seen: 15 years 10 months ago
Joined: 2007-06-09 13:23
I did check out the Remora

I did check out the Remora USB Guard Pro trial. It has nearly this functionality. Just can`t encrypt on the fly.

Well, seams there is no such tool yet. But I think it could be possible.

Tixue
Offline
Last seen: 1 year 2 months ago
Joined: 2009-04-04 14:10
If the operating system allows it

it will be possible if the Windows includes a kernel-mode cyphering solution, that doesn't happen right now.

xerces8
Offline
Last seen: 8 years 11 months ago
Joined: 2010-01-23 06:17
I can be done

There is an old trick (used on unix before Windows existed) to do this.
(by "this" I mean "mount a filesystem without admin rights")

It is simple really: the app that wishes to expose a file-system runs a small network server that serves a known protocol that the OS can use and mount (without admin rights). In old times this was NFS, now SMB/CIFS could be used, but WebDAV is much simpler and is almost as good.

So the crypto app opens the encypted container file and exposes the content over WebDAV. The user then just mounts a WebDAV "network" drive using standard OS tools (Windows supports WebDAV since XP).

There is an example (more a proof of concept, but it works) here: http://www.heise.de/ct/artikel/SecurStick-Verschluesselung-ohne-Admin-Re... (german)

Log in or register to post comments