LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Security
User Name
Password
Linux - Security This forum is for all security related questions.
Questions, tips, system compromises, firewalls, etc. are all included here.

Notices


Reply
  Search this Thread
Old 03-10-2017, 06:34 AM   #1
eoncho
LQ Newbie
 
Registered: Mar 2017
Posts: 2

Rep: Reputation: Disabled
Setup encrypted Samba shares


Hello,
I would like to get an advice how to implement the following setup.
A LAN with Samba file server on Debian. User based authentication to shares. Mixed clients, Win7 and Debian. We would like some of the Samba shared folders to be encrypted. These folders will have read only user access. Win7 and Debian clients shell be able to read/open files from this encrypted shares. But if a Win7/Debian client copy a file from encrypted share, it shell be still encrypted and the only clients able to open it to be from the LAN. The purpose is, protection of data leakage. Copied file or sent file through e-mail client to another PC outside the LAN, shell remain encrypted. ecryptfs is cool but asap the share is mounted the files can be copied/sent unencrypted. Hope this was enough clear what we need
BR,
eoncho
 
Old 03-10-2017, 06:57 AM   #2
TenTenths
Senior Member
 
Registered: Aug 2011
Location: Dublin
Distribution: Centos 5 / 6 / 7
Posts: 3,475

Rep: Reputation: 1553Reputation: 1553Reputation: 1553Reputation: 1553Reputation: 1553Reputation: 1553Reputation: 1553Reputation: 1553Reputation: 1553Reputation: 1553Reputation: 1553
We looked at this before at a different company and we found that we needed software installed on the client side such that the files were only unencrypted when they hit the client PC. We found there wasn't a simple open-source way of doing it.

Unfortunately I can't remember the provider of the software we ended up using

We also found that no matter what the solution that was available the file decoded on the client, so if it was opened on the client machine it could be saved un-encoded to the local file-system and therefore could be e-mailed. The end result was that the machines on that LAN segment were fully segregated from other machines and had NO e-mail access, NO internet access, NO usb access etc. They could JUST be used to view the protected files.
 
Old 03-14-2017, 09:34 AM   #3
sundialsvcs
LQ Guru
 
Registered: Feb 2004
Location: SE Tennessee, USA
Distribution: Gentoo, LFS
Posts: 10,659
Blog Entries: 4

Rep: Reputation: 3939Reputation: 3939Reputation: 3939Reputation: 3939Reputation: 3939Reputation: 3939Reputation: 3939Reputation: 3939Reputation: 3939Reputation: 3939Reputation: 3939
You might be able to accomplish this objective – without encryption – through the use of Access Control Lists (ACLs) and other features of the standard Windows security model.

Windows' authentication and authorization mechanisms are quite extensive and well-developed, if you want them to be. You can easily make particular directories accessible to ... and even, only visible to ... selected groups of users as determined by OpenDirectory (LDAP) settings that can be managed globally by your security organization.

(Yes, I just complimented Microsoft's work – again – on a Linux forum.)

I'm not 100% sure about Samba's implementation of some of these things, but you can certainly put the files-of-interest on a "true Windows" server elsewhere within the same SMB network, using Samba to give access to that network but not actually to store these files. You'd like to avoid a "hybrid file-system setup" situation that will be inherently harder for you to manage, when you can avoid such a thing simply by putting the files somewhere else in the company.

Last edited by sundialsvcs; 03-14-2017 at 09:37 AM.
 
Old 03-14-2017, 06:04 PM   #4
Doug G
Member
 
Registered: Jul 2013
Posts: 749

Rep: Reputation: Disabled
If you can tweak the windows side, this might be helpful: http://techgenix.com/secure-smb-connections/
 
Old 03-22-2017, 10:38 AM   #5
eoncho
LQ Newbie
 
Registered: Mar 2017
Posts: 2

Original Poster
Rep: Reputation: Disabled
sundialsvcs do you think it could work with samba ACLs? https://wiki.samba.org/index.php/Set...g_Windows_ACLs
 
Old 03-22-2017, 08:53 PM   #6
sundialsvcs
LQ Guru
 
Registered: Feb 2004
Location: SE Tennessee, USA
Distribution: Gentoo, LFS
Posts: 10,659
Blog Entries: 4

Rep: Reputation: 3939Reputation: 3939Reputation: 3939Reputation: 3939Reputation: 3939Reputation: 3939Reputation: 3939Reputation: 3939Reputation: 3939Reputation: 3939Reputation: 3939
Quote:
Originally Posted by eoncho View Post
sundialsvcs do you think it could work with samba ACLs? https://wiki.samba.org/index.php/Set...g_Windows_ACLs
I have not been "deep into Windows" like this for several years, so I really don't feel qualified to say. But it superficially appears that Samba knows enough of the protocol to get the job done.

However, my original thought was that you would store the assets somewhere on the network under "real Microsoft" hardware – so that you know that it's their software that's protecting it. Then, you access those protected resources through Samba.

One thing to consider about this is, "what is the underlying filesystem here?" If Samba is storing the resources, the underlying filesystem is Linux. Now, Linux has an ACL implementation of its own – but it's somewhat different from Windows' model so there is "mapping" from one to the other. (And, unless you are authenticating all of your Linux users through the Microsoft-managed LDAP/OpenDirectory that is used on the Windows side, there could be identity/authorization hiccups, too.

Perhaps you don't want that. If the resources are truly sensitive, maybe you want to store them where Microsoft's ACLs are known to apply natively. They know how to write a good, high-performance file server. At the end of the day, you simply want secure storage for your assets in a way that you (and everyone else at your company) can easily understand and manage.

I'm being vague because my understanding of the situation on the Microsoft side is imperfect.

Last edited by sundialsvcs; 03-22-2017 at 08:56 PM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] How to setup samba share with encrypted password. junkyhlm Linux - Networking 3 01-30-2013 12:52 AM
SAMBA: Only the initial user account used to setup ubuntu can authenticate shares al@nj0n3s Linux - Networking 1 10-18-2010 07:40 PM
LXer: How to Properly Setup Samba, Create Public Shares and Anonymously Browse Window LXer Syndicated Linux News 1 09-22-2008 01:58 AM
Accessing remote shares with encrypted Samba password at bootup CyberGuy Linux - Software 1 01-09-2005 05:23 PM
Encrypted Shares on Samba with LDAP on Intranet Server spurgeonb Linux - Security 6 12-17-2003 03:20 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Security

All times are GMT -5. The time now is 05:43 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration