-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.ps1
561 lines (440 loc) · 19.5 KB
/
server.ps1
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
# Récupération du nom de la machine (Le serveur)
$hostname = hostname.exe
# Importation des modules dans la session du serveur
$s = New-PSSession -ComputerName $hostname
Invoke-Command -ScriptBlock {Import-Module -Name ActiveDirectory} -Session $s
Invoke-Command -ScriptBlock {Import-Module -Name NTFSSecurity} -Session $s
# Démarrer le serveur api
Start-PodeServer -Threads 10 {
# Récupération des variables de configuration depuis le fichier server.psd1
$address = (Get-PodeConfig).Address
$port = (Get-PodeConfig).Port
$protocol = (Get-PodeConfig).Protocol
$endpointname = (Get-PodeConfig).EndpointName
$domain = (Get-PodeConfig).Domain
$ou = (Get-PodeConfig).OU
$domainName = (Get-PodeConfig).Domain.split(".")[0]
$domainExtension = (Get-PodeConfig).Domain.split(".")[1]
$authAdDomain = (Get-PodeConfig).Domain.split(".")[0].ToUpper()
# Fonction permettant d'encoder les données pour avoir un token JWT
Function encodeToken{
param($username)
$header = @{
alg = 'hs256'
typ = 'JWT'
}
$payload = @{
sub = $username
name = $username
exp = ([System.DateTimeOffset]::Now.AddDays(1).ToUnixTimeSeconds())
}
return ConvertTo-PodeJwt -Header $header -Payload $payload -Secret (Get-PodeConfig).Secret
}
# Fonction permettant de décoder un token JWT pour avoir les données
Function decodeToken{
param($token)
try{
return ConvertFrom-PodeJwt -Token $token -Secret (Get-PodeConfig).Secret
}
catch{
return @{sub = 0}
}
}
# Fonction permettant de récupérer tous les lecteurs
Function get_all_drives {
$Reports = Get-GPO -All | Get-GPOReport -ReportType Xml
$DriveMappings = @()
ForEach ($Report In $Reports) {
$GPO = ([xml]$Report).GPO
ForEach ($ExtensionData In $GPO.User.ExtensionData) {
If ($ExtensionData.Name -eq "Drive Maps") {
$Mappings = $ExtensionData.Extension.DriveMapSettings.Drive
ForEach ($Mapping In $Mappings) {
$DriveMapping = New-Object PSObject -Property @{
letter = $Mapping.Properties.Letter;
label = $Mapping.Properties.label;
path = $Mapping.Properties.Path;
}
$DriveMappings += $DriveMapping
}
}
}
}
return $DriveMappings
}
# Fonction permettant de convertir les droits hérités en droit explicites
Function convertRight {
param($path)
Disable-NTFSAccessInheritance -Path $path -RemoveInheritedAccessRules
}
# Fonction permettant de récupérer tous les dossiers des lecteurs et leurs accès
Function get_all_folders_access {
# Récupération des groupes dans l'annuaire dans l'OU Futurmap DATA
$groupList = Get-ADGroup -Filter * -SearchBase "OU=Futurmap DATA,DC=server-ad,DC=map" | Select-Object Name, SamAccountName
$drives = get_all_drives
$toor = @()
foreach($d in $drives) {
$root = @()
foreach($group in $groupList){
$account = $group.SamAccountName
# Récupération des accès sur les dossiers
$access_eff = Get-ChildItem -Path $d.path | Get-NTFSEffectiveAccess -Account "SERVER-AD\$account" | Select-Object Account,Fullname,AccessRights
foreach ($doss in $access_eff){
convertRight($doss.FullName)
if ($root.Count -gt 0){
$pare = $true
foreach($r in $root){
if ($r.dossier -eq $doss.Fullname){
$r.Access = $r.Access + @{
account = $group.Name;
permission = $doss.AccessRights.ToString();
}
$pare = $false
break
}
}
if ($pare -eq $true){
$root = $root +
@{
Dossier = $doss.Fullname;
Access = @(
@{
account = $group.Name;
permission = $doss.AccessRights.ToString();
}
)
}
}
}
else{
$root = $root + @{
Dossier = $doss.Fullname;
Access = @(
@{
account = $group.Name;
permission = $doss.AccessRights.ToString();
}
)
}
}
}
}
$toor = $toor + @{
$d.label = $root
}
}
return $toor
}
Function get_all_group_access {
param($group)
$drives = get_all_drives
$toor = @()
foreach($d in $drives) {
$root = @()
# Récupération des accès sur les dossiers
$access_eff = Get-ChildItem -Path $d.path | Get-NTFSEffectiveAccess -Account "SERVER-AD\$group" | Select-Object Account,Fullname,AccessRights
foreach ($doss in $access_eff){
convertRight($doss.FullName)
if ($root.Count -gt 0){
$pare = $true
foreach($r in $root){
if ($r.dossier -eq $doss.Fullname){
$r.Access = $r.Access + @{
permission = $doss.AccessRights.ToString();
}
$pare = $false
break
}
}
if ($pare -eq $true){
$root = $root +
@{
dossier = $doss.Fullname;
permission = $doss.AccessRights.ToString();
}
}
}
else{
$root = $root + @{
dossier = $doss.Fullname;
permission = $doss.AccessRights.ToString();
}
}
}
$toor = $toor + @{
$d.label = $root
}
}
return $toor
}
# Fonction permettant de faire le rollback lors d'un echec de création d'un utilisateur
Function rollBackCreateUser {
param($user)
Remove-ADUser -Identity $user -Confirm:$false
}
# Activation session
Enable-PodeSessionMiddleware
# Création d'un endpoint pour accèder aux routes
Add-PodeEndpoint -Address $address -Port $port -Protocol $protocol -Name $endpointname
# Création des headers pour autoriser les accès
Add-PodeMiddleware -name "Headers" -ScriptBlock {
Add-PodeHeader -Name "Access-Control-Allow-Origin" -Value "*"
Add-PodeHeader -Name "Access-Control-Allow-Methods" -Value "*"
Add-PodeHeader -Name "Access-Control-Allow-Headers" -Value "*"
}
# Authentification sur l'active directory
New-PodeAuthScheme -Form | Add-PodeAuthWindowsAd -Name 'Login' -Users @('Administrateur') -Fqdn $domain -Domain $authAdDomain
# Authentification Bearer utilisant un token JWT
New-PodeAuthScheme -Bearer -AsJWT -Secret (Get-PodeConfig).Secret | Add-PodeAuth -Name 'Authenticate' -Sessionless -ScriptBlock {
param($payload)
if ($payload) {
return @{
User = @{
user = $payload
}
}
}
return $null
}
# Route permettant d'accepter les preflights
Add-PodeRoute -Method Options -Path * -ScriptBlock {
Set-PodeResponseStatus -Code 200
}
# Authentification sur l'active directory pour récupérer un token JWT
Add-PodeRoute -Method Post -Path '/api/login' -EndpointName $endpointname -Authentication 'Login' -ScriptBlock {
# Récupération du nom d'utilisateur lors de la connexion
$username = $WebEvent.Auth.User.Username
try {
# Création d'un token JWT à partir du nom d'utilisateur
$token = encodeToken($username)
Write-PodeJsonResponse -Value @{
token = $token
}
}
catch{
# En cas d'erreur
Write-Host $_
Write-PodeJsonResponse -Value @{
message = "Echec de l'authentification"
}
Set-PodeResponseStatus -Code 401 -ContentType 'application/json' -NoErrorPage
}
}
# Route principale du serveur
Add-PodeRoute -Method Get -Path "/api" -EndpointName $endpointname -Authentication 'Authenticate' -ScriptBlock {
Write-PodeJsonResponse -Value @{ Bienvenu = "Vous êtes sur un serveur active directory"}
}
# Création d'un utilisateur dans l'annuaire active directory et ajout de celui-ci dans un groupe
Add-PodeRoute -Method Post -Path '/api/create_user' -EndpointName $endpointname -Authentication 'Authenticate' -ScriptBlock {
try{
# Récupération des informations sur l'utilisateur à créer
$nom = (Get-Culture).TextInfo.ToTitleCase($WebEvent.Data.nom.ToLower())
$prenoms = $WebEvent.Data.prenoms
$name = "$nom $prenoms"
$matricule = $WebEvent.Data.matricule
$surnom = $WebEvent.Data.surnom
$surnomLower = $surnom.ToLower()
$UserPrincipalName = "$surnomLower@$using:domain"
$description = $WebEvent.Data.description
$poste = $WebEvent.Data.poste.replace(' ','')
# Création de l'utilisateur
New-ADUser `
-Name $name `
-GivenName $nom `
-Surname $surnom `
-SamAccountName "$surnom($matricule)" `
-Path "OU=$using:ou,DC=$using:domainName,DC=$using:domainExtension" `
-AccountPassword (ConvertTo-SecureString -AsPlainText "win10**10" -Force) `
-UserPrincipalName $UserPrincipalName `
-ChangePasswordAtLogon $False `
-Enabled $True `
-Description $description
# Ajouter l'utilisateur dans son groupe
Add-ADGroupMember -Identity $poste -Members "$surnom($matricule)"
Write-PodeJsonResponse -Value @{
message = "Utilisateur créé avec succès"
}
Set-PodeResponseStatus -Code 201 -ContentType 'application/json'
}
catch{
# En cas d'erreur
Write-Host $_
$currentUser = Get-ADUser -Identity "$surnom($matricule)"
if ($currentUser -ne $null) {
rollBackCreateUser("$surnom($matricule)")
}
Write-PodeJsonResponse -Value @{
message = "Echec de la création de l'utilisateur"
}
Set-PodeResponseStatus -Code 400 -ContentType 'application/json' -NoErrorPage
}
}
# Création d'un groupe dans l'annuaire active directory
Add-PodeRoute -Method Post -Path '/api/create_group' -EndpointName $endpointname -Authentication 'Authenticate' -ScriptBlock {
try{
# Récupération des informations sur le groupe à créer
$name = $WebEvent.Data.nom
$access = $WebEvent.Data.access
$description = $WebEvent.Data.commentaire
$account = $name.replace(' ','')
# Création du groupe
New-ADGroup `
-Name $name `
-SamAccountName $account `
-Path "OU=$using:ou,DC=$using:domainName,DC=$using:domainExtension" `
-GroupCategory Security `
-GroupScope Global `
-Description $description
$drives = get_all_drives
# Ajouter les permissions de groupe aux dossiers et permettre au groupe de voir et lire les tous les lecteurs
foreach ($ac in $access) {
Add-NTFSAccess -Path $ac.dossier -Account "SERVER-AD\$account" -AccessRights $ac.permissions -AppliesTo ThisFolderSubfoldersAndFiles
foreach ($dr in $drives) {
Add-NTFSAccess -Path $dr.path -Account "SERVER-AD\$account" -AccessRights "ReadAndExecute" -AppliesTo ThisFolderOnly
}
}
Write-PodeJsonResponse -Value @{
message = "Groupe créé avec succès"
}
Set-PodeResponseStatus -Code 201 -ContentType 'application/json'
}
catch{
# En cas d'erreur
Write-Host $_
Write-PodeJsonResponse -Value @{
response = "Echec de la création du groupe"
}
Set-PodeResponseStatus -Code 400 -ContentType 'application/json' -NoErrorPage
}
}
# Changement de groupe d'un utilisateur dans l'annuaire active directory
Add-PodeRoute -Method Put -Path '/api/change_user_group' -EndpointName $endpointname -Authentication 'Authenticate' -ScriptBlock {
try{
# Récupération des informations pour changer le groupe de l'utilisateur
$surnom = $WebEvent.Data.surnom
$matricule = $WebEvent.Data.matricule
$poste = $WebEvent.Data.poste
$poste = $poste.replace(' ', '')
# Récupération de l'ancien groupe de l'utilisateur
$oldGroupUser = (Get-ADuser -Identity "$surnom($matricule)" -Properties memberof).memberof | Get-ADGroup | Select-Object name | Sort-Object name
$oldGroupUser = $oldGroupUser.Name.replace(' ','')
# Supprimer l'utilisateur de son ancien groupe
Remove-ADGroupMember -Identity $oldGroupUser -Members "$surnom($matricule)" -confirm:$false
# Ajouter l'utilisateur dans son nouveau groupe
Add-ADGroupMember -Identity $poste -Members "$surnom($matricule)"
Write-PodeJsonResponse -Value @{
message = "Changement de groupe effectué avec succès"
}
Set-PodeResponseStatus -Code 204 -ContentType 'application/json' -NoErrorPage
}
catch{
# En cas d'erreur
Write-Host $_
Write-PodeJsonResponse -Value @{
response = "Echec de changement de groupe"
}
Set-PodeResponseStatus -Code 400 -ContentType 'application/json' -NoErrorPage
}
}
# Récupération des lecteurs
Add-PodeRoute -Method Get -Path "/api/get_all_drives" -EndpointName $endpointname -ScriptBlock {
try {
$drives = get_all_drives
Write-PodeJsonResponse -Value $drives
Set-PodeResponseStatus -Code 200 -ContentType 'application/json'
}
catch {
# En cas d'erreur
Write-Host $_
Write-PodeJsonResponse -Value @{
response = "Echec de récupération des lecteurs"
}
Set-PodeResponseStatus -Code 400 -ContentType 'application/json' -NoErrorPage
}
}
# Récupération des dossiers dans un lecteur (niveau 1)
Add-PodeRoute -Method Get -Path "/api/get_all_drive_folders/" -EndpointName $endpointname -Authentication 'Authenticate' -ScriptBlock {
try {
$folders = @()
if ($WebEvent.Query['drive']) {
$drives = get_all_drives
if ($drives.Where({$_.label -eq $WebEvent.Query['drive'] })) {
$drive = $drives.Where({$_.label -eq $WebEvent.Query['drive']})
$dossiers = Get-ChildItem -Path $drive.path
foreach ($doss in $dossiers) {
$folders = $folders + @{
# dossier = $doss.toString().split('\')[-1]
path = $doss.ToString()
}
}
}
}
Write-PodeJsonResponse -Value $folders
Set-PodeResponseStatus -Code 200 -ContentType 'application/json'
}
catch {
# En cas d'erreur
Write-Host $_
Write-PodeJsonResponse -Value @{
response = "Echec de récupération des dossiers du lecteur "
}
Set-PodeResponseStatus -Code 400 -ContentType 'application/json' -NoErrorPage
}
}
# Récupération de tous les dossiers avec leurs accès
Add-PodeRoute -Method Get -Path "/api/get_all_folders_access" -EndpointName $endpointname -Authentication 'Authenticate' -ScriptBlock {
try {
$folders_access = get_all_folders_access
Write-PodeJsonResponse -Value $folders_access
Set-PodeResponseStatus -Code 200 -ContentType 'application/json'
}
catch{
# En cas d'erreur
Write-Host $_
Write-PodeJsonResponse -Value @{
response = "Echec de la récupération des dossiers et des accès"
}
Set-PodeResponseStatus -Code 400 -ContentType 'application/json' -NoErrorPage
}
}
# Récupération de tous les accès d'un groupe
Add-PodeRoute -Method Get -Path "/api/get_all_group_access/" -EndpointName $endpointname -Authentication 'Authenticate' -ScriptBlock {
try {
if ($WebEvent.Query['group']) {
$group_access = get_all_group_access($WebEvent.Query['group'])
}
Write-PodeJsonResponse -Value $group_access
Set-PodeResponseStatus -Code 200 -ContentType 'application/json'
}
catch{
# En cas d'erreur
Write-Host $_
Write-PodeJsonResponse -Value @{
response = "Echec de la récupération des accès du dossier"
}
Set-PodeResponseStatus -Code 400 -ContentType 'application/json' -NoErrorPage
}
}
# Donner un ou plusieurs accès à un groupe
Add-PodeRoute -Method Post -Path "/api/grant_access" -EndpointName $endpointname -Authentication 'Authenticate' -ScriptBlock {
try {
$poste = $WebEvent.Data.poste
$poste = $poste.replace(' ', '')
$dossierPath = $WebEvent.Data.dossier
$droits = $WebEvent.Data.droits
# Supprimer les anciennes permissions
Remove-NTFSAccess -Path $dossierPath -Account "SERVER-AD\$poste" -AccessRights "FullControl,Modify,ReadAndExecute,Read,Write,ListDirectory" -AppliesTo ThisFolderSubfoldersAndFiles
# Ajouter les droits de poste sur le dossier et sous-dossiers et fichiers
Add-NTFSAccess -Path $dossierPath -Account "SERVER-AD\$poste" -AccessRights $droits -AppliesTo ThisFolderSubfoldersAndFiles
Set-PodeResponseStatus -Code 200 -ContentType 'application/json'
}
catch{
# En cas d'erreur
Write-Host $_
Write-PodeJsonResponse -Value @{
response = "Echec de changement des permissions"
}
Set-PodeResponseStatus -Code 400 -ContentType 'application/json' -NoErrorPage
}
}
}