New script >set sysvol perm

Today I have had to deal with an environment where I had to fix a lot of sysvol permissions, with a lot of different policies with different permissions.

I had begun doing it by hand using samba-tool ntacl set sddl-ACL patg, but I soon realized this was a nightmare . Thus I invested some time in creating a small script on python that at least did part of this for me:

01import os
02import sys
03arg = sys.argv[1]
04command = "samba-tool ntacl set "
05wp = os.getcwd()
06for dirname, dirnames, filenames in os.walk(wp):
07 os.system(command + "\"" + arg + "\" " + "\"" + dirname + "\"")
08 files = [f for f in os.listdir(dirname) if os.path.isfile(os.path.join(dirname,f))]
09    for f in files:
10 os.system(command + "\"" + arg + "\" " + "\"" + dirname + "/" + f + "\"")

With this at least I had to do it once per policy. Once done, I just created a bash script that got the path and the sddl from samba-tool ntacl sysvolcheck (and run the script above until this command were ok:

01#!/bin/bash
02until samba-tool ntacl sysvolcheck 2>/dev/null
03do
04 
05DIR=$(samba-tool ntacl sysvolcheck 2>&1 | grep ERROR | cut -d" " -f12)
06PERM=$(samba-tool ntacl sysvolcheck 2>&1 | grep ERROR | cut -d" " -f19)
07 
08 
09cd "$DIR"
10 
11python script.py $PERM
12done

Hope this is useful if you were looking for this.

P.S. You can find the code in my github under GPLv2 as ever

Deja un comentario