Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat: enable encryption support for SMB #1271

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

brunnre8
Copy link

@brunnre8 brunnre8 commented Jul 9, 2024

(Before we go on, yes I've read your PR template, yes I'm aware that you don't accept contributions 1:1. The PR is trivial however, consider this to be in the public domain.
Mostly just want to get the ball rolling into the right direction)

I have a few shares on the same samba host (linux box) that has for some of those shares enforced encryption

[home]
smb encrypt = required
# ... more stuff

[media]
smb encrypt = desired
# more stuff

The smb library you are using by default doesn't negotiate encryption support, if you connect to the host, leading to EPERM when the home share gets accessed as an example, while the media share is still accessible.

In order that the encryption support is actually enabled by the lib, you need to do so with the config builder.
Not sure if you want to unconditionally do so or if this needs to be some sort of frontend setting, but as you anyway want to do the coding on your own I didn't bother trying to do so.

The smb library refuses to connect to shared that have enforced
encryption unless the client allows encryption in the options
@brunnre8
Copy link
Author

brunnre8 commented Jul 9, 2024

Looking at the various performance issues on the lib, you probably want to add the encryption toggle over my bare bones one 😉

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant