Tal Aloni 12aa96d588 CreateFile related logging improvements 8 năm trước cách đây
..
Authentication 97326c311a Independent / Integrated NTLMAuthenticationProvider: GetContextAttribute can now return OS version 8 năm trước cách đây
Client dd4fee6721 Skeleton SMB1Client implementation for tests 8 năm trước cách đây
EnumStructures 30f0a641d2 AccessMask: Added implicit conversion from DirectoryAccessMask 8 năm trước cách đây
Enums 0bcb921f84 Added additional NTStatus codes 8 năm trước cách đây
Exceptions fc2e958e74 Moved Exceptions to SMBLibrary\Exceptions 8 năm trước cách đây
Helpers bef9bd6e69 FileTimeHelper.ReadNullableFileTime: throw InvalidDataException if FILETIME is negative 8 năm trước cách đây
NTFileStore 12aa96d588 CreateFile related logging improvements 8 năm trước cách đây
NetBios 62d240d166 Added proper Length property to NetBIOS session packets 8 năm trước cách đây
Properties 0a0ec793ea SMBServer 1.1.7 8 năm trước cách đây
RPC 3f36591e14 RPC PDUs can now be read starting from a specified buffer offset 8 năm trước cách đây
SMB1 0ed07c27d4 Updated OptionalSupportFlags to include all flags 8 năm trước cách đây
SMB1FileStore c72bb2e348 SMB_QUERY_FILE_BASIC_INFO: Corrected field names 8 năm trước cách đây
SMB2 f693f7ff77 SMB2Command: Implemented signing in GetCommandChainBytes 8 năm trước cách đây
Server 12aa96d588 CreateFile related logging improvements 8 năm trước cách đây
Services 9265858968 Removed leading slash from ServerService.PipeName and WorkstationService.PipeName 8 năm trước cách đây
Tests 6325053243 Renamed 2 NTLM NegotiateFlags 8 năm trước cách đây
Utilities eff1f08ab8 SocketUtils.ReleaseSocket: Improved exception handling 8 năm trước cách đây
Win32 97326c311a Independent / Integrated NTLMAuthenticationProvider: GetContextAttribute can now return OS version 8 năm trước cách đây
Readme.md 3769af188b Updated documentation 8 năm trước cách đây
Readme.txt 3769af188b Updated documentation 8 năm trước cách đây
RevisionHistory.txt 0a0ec793ea SMBServer 1.1.7 8 năm trước cách đây
SMBLibrary.csproj 82f308b576 Renamed ShareCollection to SMBShareCollection 8 năm trước cách đây

Readme.md

About SMBLibrary:

SMBLibrary is an open-source C# SMB 1.0/CIFS, SMB 2.0 and SMB 2.1 server implementation.
SMBLibrary gives .NET developers an easy way to share a directory / file system / virtual file system, with any operating system that supports the SMB protocol.
SMBLibrary shares can be accessed from any Windows version since Windows NT 4.0.

Supported SMB / CIFS transport methods:

• NetBIOS over TCP (port 139)
• Direct TCP hosting (port 445)

'NetBIOS over TCP' and 'Direct TCP hosting' are almost identical, the only differences:
  • A 'session request' packet is initiating the NBT connection.
  • A 'keep alive' packet is sent from time to time over NBT connections.
  • SMB2: Direct TCP hosting supports large MTUs.

Notes:

By default, Windows already use ports 139 and 445. there are several techniques to free / utilize those ports:

Method 1: Disable Windows File and Printer Sharing server completely:
Windows XP/2003:
  1. For every network adapter: Uncheck 'File and Printer Sharing for Microsoft Networks".
  2. Navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NetBT\Parameters and set SMBDeviceEnabled to '0' (this will free port 445).
  3. Reboot.
Windows 7/8/2008/2012:

Disable the "Server" service (p.s. "TCP\IP NETBIOS Helper" should be enabled).

Method 2: Use Windows File Sharing AND SMBLibrary:

Windows bind port 139 to the first IP addres of every adapter, while port 445 is bound globally. This means that if you'll disable port 445 (or block it using a firewall), you'll be able to use a different service on port 139 for every IP address.

Additional Notes:
  • To free port 139 for a given adapter, go to 'Internet Protocol (TCP/IP) Properties' > Advanced > WINS, and select 'Disable NetBIOS over TCP/IP'. Uncheck 'File and Printer Sharing for Microsoft Networks' to ensure Windows will not answer to SMB traffic on port 445 for this adapter.

  • It's important to note that disabling NetBIOS over TCP/IP will also disable NetBIOS name service for that adapter (a.k.a. WINS), This service uses UDP port 137. SMBLibrary offers a name service of its own.

  • You can install a virtual network adapter driver for Windows to be used solely with SMBLibrary:

    • You can install the 'Microsoft Loopback adapter' and use it for server-only communication with SMBLibrary.
    • A limited alternative is 'OpenVPN TAP-Windows Adapter' that can be used for client communication with SMBLibrary.

However, you will have to configure this adapter to use a separate network segment. The driver installation can be downloaded from: https://openvpn.net/index.php/open-source/downloads.html To get started, go to Adapter properties > 'Advanced' and set 'Media Status' to 'Always Connected'.

Windows 7/8/2008/2012:
  • if you want localhost access from Windows explorer to work as expected, you must use port 445, you must also specify the IP address that you selected (\\127.0.0.1 or \\localhost will not work as expected).
Method 3: Use an IP address that is invisible to Windows File Sharing:

Using PCap.Net you can programmatically setup a virtual Network adapter and intercept SMB traffic (similar to how a virtual machine operates), You should use the ARP protocol to notify the network about the new IP address, and then process the incoming SMB traffic using SMBLibrary, good luck!

Using SMBLibrary:

Any directory / filesystem / object you wish to share must implement the IFileSystem interface.
You can share anything from actual directories to custom objects, as long as they expose a directory structure.

Contact:

If you have any question, feel free to contact me.
Tal Aloni tal.aloni.il@gmail.com