-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathadClient.py
173 lines (151 loc) · 5.37 KB
/
adClient.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
"""
Name: AD CLIENT - Manage Active Directory Operations
Author : Rajiv Sharma
Developer Website : www.hqvfx.com
Developer Email : [email protected]
Date Started : 27 Oct 2018
Date Modified :
Description : Send Directory Service Commands to AD Bot
Source Code Website : www.github.com/vfxpipeline
Watch Video Tutorials : www.youtube.com/vfxpipeline
Copyright (c) 2018, HQVFX(www.hqvfx.com) . All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of HQVFX(www.hqvfx.com) nor the names of any
other contributors to this software may be used to endorse or
promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
"""
import rpyc
import datetime
AD_SERVER_IP = '192.168.0.173'
AD_BOT_PORT = 19961
domain_controller = 'DC=hqvfx,DC=com'
users_ou = 'OU=All,OU=Employee,{}'.format(domain_controller)
groups_ou = 'OU=Employee_Groups,{}'.format(domain_controller)
def send_command(command):
if not command:
return
try:
connection = rpyc.connect(AD_SERVER_IP, AD_BOT_PORT)
connection.root.run_command(command)
except Exception as Err:
print('Error in send command', str(Err))
def create_user(username, employee_id, display_name, active=False):
"""
Create New user in AD
:param username:
:param employee_id:
:param display_name:
:param active:
:return:
"""
if active:
disabled = 'no'
else:
disabled = 'yes'
description = "User added by AD BOT on {}".format(datetime.datetime.now())
default_password = 'DefaultP@55w0rD'
dn = '"CN={},{}"'.format(username, users_ou)
groups = '"cn=All,{}" ' \
'"cn=USB_Deny,{}" '.format(groups_ou,
groups_ou)
command = 'dsadd user ' \
'{} ' \
'-samid "{}" ' \
'-upn "{}" ' \
'-display "{}" ' \
'-empid "{}" ' \
'-desc "{}" ' \
'-disabled {} ' \
'-pwd {} ' \
'-pwdneverexpires yes ' \
'-mustchpwd yes ' \
'-memberof {} ' \
'-acctexpires never ' \
''.format(
dn,
username,
username,
display_name,
employee_id,
description,
disabled,
default_password,
groups,
)
send_command(command)
def manage_user(username, mode):
"""
This function can manage active directory users
:param username:
:param mode:
:return:
"""
dn = 'CN={},{}'.format(username, users_ou)
cmd = ''
if mode == 'disable':
cmd = 'dsmod user {} -disabled yes'.format(dn)
elif mode == 'enable':
cmd = 'dsmod user {} -disabled no'.format(dn)
elif mode == 'delete':
cmd = 'dsrm -noprompt "cn={},{}"'.format(username, users_ou)
send_command(cmd)
def user_password_change(username, new_password):
"""
This function can change active directory password
:param new_password:
:param username:
:return:
"""
dn = 'CN={},{}'.format(username, users_ou)
cmd = 'dsmod user {} -pwd {}'.format(dn, new_password)
send_command(cmd)
def ad_group(group_name, mode):
"""
Add and Remove Group
:param group_name:
:param mode:
:return:
"""
cmd = ''
if mode == 'add':
group_description = 'Group created by AD Bot'
cmd = 'dsadd group "cn={}, {}"' \
' -desc "{}"'.format(group_name, groups_ou, group_description)
elif mode == 'remove':
cmd = 'dsrm -noprompt "cn={},{}"'.format(group_name, groups_ou)
send_command(cmd)
def group_user(group_name, mode, username):
"""
Add and Remove User from groups
:param group_name:
:param mode:
:param username:
:return:
"""
dn = 'CN={},{}'.format(username, users_ou)
cmd = ''
if mode == 'add':
cmd = 'dsmod group "cn={},{}"' \
' -addmbr "{}"'.format(group_name, groups_ou, dn)
elif mode == 'remove':
cmd = 'dsmod group "cn={},{}"' \
' -rmmbr "{}"'.format(group_name, groups_ou, dn)
send_command(cmd)