Questions tagged [ms-samr]

Security Account Manager (SAM) Remote Protocol (Client-to-Server)

Specifies the Security Account Manager (SAM) Remote Protocol, which supports management functionality for an account store or directory containing users and groups. The goal of the protocol is to enable IT administrators and users to manage users, groups, and computers.

https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-samr/4df07fab-1bbc-452f-8e92-7853a3c7e380

4 questions
0
votes
1 answer

What is the relationship of SMB and SAMR protocol?

I try to create user in samba server and found out that samr protocol is used for that Based on https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-samr/084da2e7-0ba0-44fc-8f17-e8a200c69eb5 RPC clients for this protocol MUST use RPC…
gstackoverflow
  • 36,709
  • 117
  • 359
  • 710
0
votes
0 answers

How to create user in Samba server using jcif library?

I start Samba server using following docker-compose: services: samba: image: instantlinux/samba-dc:latest container_name: samba-dc cap_add: - CAP_SYS_ADMIN hostname: my.company environment: DOMAIN_ACTION: provision …
gstackoverflow
  • 36,709
  • 117
  • 359
  • 710
0
votes
0 answers

How to add user to Samba server using SAMR protocol?

I have a samba server which is up locally this way using docker compose: ... services: samba: image: instantlinux/samba-dc:latest container_name: my_samba cap_add: - CAP_SYS_ADMIN hostname: com.example environment: …
gstackoverflow
  • 36,709
  • 117
  • 359
  • 710
-3
votes
1 answer

Is there way to communicate with samba server using SAMR protocol from java application

I start Samba server using following docker-compose: services: samba: image: instantlinux/samba-dc:latest container_name: samba-dc cap_add: - CAP_SYS_ADMIN hostname: my.company environment: DOMAIN_ACTION: provision …
gstackoverflow
  • 36,709
  • 117
  • 359
  • 710