Attempting to Disable SMBv1 on DC

Richard Long 341 Reputation points
2022-06-23T22:43:14.067+00:00

I enabled SMB1 auditing on my DCs to see if anything is using SMB1 to connect, and I'm seeing a strange client address in the log. It looks like it may be a JCIFS client, which I'd never heard of before. How do a track down where that is coming from?

SMB1 access

Client Address: JCIFS3_15_D7

Guidance:

This event indicates that a client attempted to access the server using SMB1. To stop auditing SMB1 access, use the Windows PowerShell cmdlet Set-SmbServerConfiguration.

Windows Server
Windows Server
A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.
13,662 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Anonymous
    2022-06-23T23:03:29.753+00:00

    Simplest solution may be a wireshark (or similar) capture.

    --please don't forget to upvote and Accept as answer if the reply is helpful--


  2. Limitless Technology 39,796 Reputation points
    2022-06-27T07:32:10.52+00:00

    Hi there,

    To detect status, enable, and disable SMB protocols on the SMB Server you can use the below PowerShell commands.

    Detect:
    Get-SmbServerConfiguration | Select EnableSMB1Protocol

    Disable:
    Set-SmbServerConfiguration -EnableSMB1Protocol $false

    Enable:
    Set-SmbServerConfiguration -EnableSMB1Protocol $true

    How to detect, enable and disable SMBv1, SMBv2, and SMBv3 in Windows https://learn.microsoft.com/en-us/windows-server/storage/file-server/troubleshoot/detect-enable-and-disable-smbv1-v2-v3

    You can also use process monitor to detect this . Process Monitor is an advanced monitoring tool for Windows that shows real-time file system, Registry and process/thread activity. https://learn.microsoft.com/en-us/sysinternals/downloads/procmon

    -----------------------------------------------------------------------------------------------------------------------------------------------------------

    --If the reply is helpful, please Upvote and Accept it as an answer--

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.